forked from hacklabr/portal-timtec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-about.php
32 lines (29 loc) · 895 Bytes
/
page-about.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
<?php
/**
* Template Name: Sobre
*/
?>
<?php
//do_action('get_header');
//get_template_part('templates/header');
$header_text = trim(get_post_meta(get_the_ID(), 'header_text', true ));
?>
<div id="page-default-template" class="page-about base-content">
<?php while ( have_posts() ) : the_post(); ?>
<div class="banner <?php if(!$header_text) echo "no-text"; ?>">
<div class="container">
<h2 class="title"><?php _e("Sobre"); ?> <span class="subtitle">[<?php the_title(); ?>]</span></h2>
<?php if($header_text): ?>
<div class="info">
<?php echo nl2br($header_text) ?>
</div>
<?php endif; ?>
</div>
</div>
<section class="page-content">
<div class="container">
<?php the_content(); ?>
</div>
</section>
<?php endwhile; // end of the loop. ?>
</div>