-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-my-story.php
34 lines (33 loc) · 912 Bytes
/
page-my-story.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
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package VersaTech Marketing Base Theme
*/
get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="page-title">
<h2 class="container">
<?php the_title(); ?>
</h2>
</div>
<?php if ( function_exists('yoast_breadcrumb') )
{yoast_breadcrumb('<div id="breadcrumbs"><div class="container"','</div></div>');} ?>
<div id="content-main">
<div class="container">
<div class="row">
<div class="col-md-8">
<?php the_field('my_biography'); ?>
</div>
<div class="col-md-4">
<?php the_field('proficiencies'); ?>
</div>
</div>
</div>
<?php endwhile; endif ?>
<?php get_footer(); ?>