-
Notifications
You must be signed in to change notification settings - Fork 0
/
general-template.php
38 lines (35 loc) · 957 Bytes
/
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
36
37
38
<?php
/* Template Name: General Template */
get_header();
?>
<!-- Page Header -->
<header class="masthead" style="background-image: url(<?php header_image(); ?>)">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-10 mx-auto">
<div class="site-heading">
<h1><?php the_title(); ?></h1>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_content();
endwhile;
?>
<?php else : ?>
<h2>Ops...nenhum conteúdo encontrado</h2>
<?php endif; ?>
</div>
</div>
</div>
<hr>
<?php get_footer(); ?>