-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfront-page.php
More file actions
executable file
·29 lines (26 loc) · 959 Bytes
/
Copy pathfront-page.php
File metadata and controls
executable file
·29 lines (26 loc) · 959 Bytes
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
<?php
get_header();
?>
<div class="container <?php echo esc_attr(get_theme_mod("superware_page_title_area_show_settings") ? "" : "mt-4"); ?>" id="content">
<?php
if(get_theme_mod("superware_page_title_area_show_settings", 1)) :
?>
<div class="mainheading">
<h1 class="sitetitle">
<?php
esc_html_e(get_theme_mod('superware__page_title_settings', 'SuperWare'));
?>
</h1>
<p class="lead">
<?php
esc_html_e(get_theme_mod('superware__page_desc_settings', 'SuperWare is a simple wordpress blog theme with clean layout.'));
?>
</p>
</div>
<?php
endif;
get_template_part( '/template-parts/superware-featured', 'post' );
get_template_part( '/template-parts/superware-all', 'post' );
?>
<?php
get_footer();