-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-experts.php
73 lines (52 loc) · 2.05 KB
/
single-experts.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php get_header(); ?>
<!-- BANNER
================================================== -->
<div id="banner_attributes" class="banner_marketabuse">
<div class="container">
<div class="row">
</div>
</div><!-- /.container -->
</div><!-- /.banner_attributes -->
<!-- BODY CONTENT
================================================== -->
<article>
<div class="container section_spacer">
<div class="row">
<div class="col-xs-2"></div>
<div class="col-xs-8">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2 class="text-center"><?php the_title( ); ?></h2>
<p><?php the_content(); ?></p>
<?php endwhile; else: ?>
<p><?php _e('Sorry, this page does not exist.'); ?></p>
<?php endif; ?>
</div>
<div class="col-xs-2"></div>
</div><!-- /.row -->
</div><!-- /.container -->
</article>
<!-- RETURN
================================================== -->
<hr>
<div class="container section_spacer text-center">
<div class="row">
<div class="col-xs-4"></div>
<div class="col-xs-4"><a class="btn btn-default" href="/our-experts/" role="button"><i class="fa fa-reply"></i> Return to experts page</a></div>
<div class="col-xs-4"></div>
</div><!-- /.row -->
</div><!-- /.container -->
<!-- CALLOUT CONTENT
================================================== -->
<hr>
<div class="callout">
<div class="container section_spacer text-center">
<div class="row">
<div class="center-block centering_box">
<h3>Want to find out more?
Speak with us <strong>+(44) 020 7953 8686</strong> or</h3>
<a class="btn btn-mod" href="/about-us/#contact" role="button"><i class="fa fa-envelope-o"></i> Email</a>
</div><!-- /.col-xs-6 -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.callout -->
<?php get_footer(); ?>