-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneral-template.php
35 lines (35 loc) · 1.32 KB
/
general-template.php
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
<?php
/*
Template Name: General Template
*/
?>
<?php get_header(); ?>
<div class="header-image">
<?php get_template_part( 'parts/content', 'header-image' ); ?>
</div>
<div id="content" class="site-content">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<div class="container">
<div class="general-template">
<?php
if( have_posts() ):
while( have_posts() ) : the_post();
?>
<article>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
</article>
<?php
endwhile;
else:
?>
<p><?php esc_html_e( 'Nothing yet to be displayed!', 'template-default' ); ?></p>
<?php
endif; ?><!-- #Loop the Posts -->
</div>
</div>
</main>
</div>
</div>
<?php get_footer(); ?>