blob: bec5b92c4a74d708dad2231cf456fd1eec275734 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
/**
* View General
*
* @package Astra
* @author Astra
* @copyright Copyright (c) 2020, Astra
* @link https://wpastra.com/
* @since Astra 1.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<div class="ast-container ast-welcome">
<div id="poststuff">
<div id="post-body" class="columns-2">
<div id="post-body-content">
<!-- All WordPress Notices below header -->
<h1 class="screen-reader-text"> <?php esc_html_e( 'Astra', 'astra' ); ?> </h1>
<?php do_action( 'astra_welcome_page_content_before' ); ?>
<?php do_action( 'astra_welcome_page_content' ); ?>
<?php do_action( 'astra_welcome_page_content_after' ); ?>
</div>
<div class="postbox-container ast-sidebar" id="postbox-container-1">
<div id="side-sortables">
<?php do_action( 'astra_welcome_page_right_sidebar_before' ); ?>
<?php do_action( 'astra_welcome_page_right_sidebar_content' ); ?>
<?php do_action( 'astra_welcome_page_right_sidebar_after' ); ?>
</div>
</div>
</div>
<!-- /post-body -->
<br class="clear">
</div>
</div>
|