-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage-about.php
39 lines (36 loc) · 1.11 KB
/
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
33
34
35
36
37
38
39
<?php
/**
* Template Name: About
*/
get_header();
?>
<main id="main">
<div id="content" role="main">
<div class="container-fluid about-wrapper" style="background-image: url('<?php the_post_thumbnail_url('full'); ?>')">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>
<?php the_title(); ?> <!-- Page Title -->
</h1>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<?php while ( have_posts() ) : the_post(); ?> <!-- loop -->
<div class="about-content">
<?php the_content(); ?> <!-- page content -->
</div>
<?php
endwhile; //end loop
wp_reset_query(); //resetting the page query
?>
</div>
</div>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</main>
</div>
<?php get_footer(); ?>