-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
37 lines (29 loc) · 1.01 KB
/
single.php
File metadata and controls
37 lines (29 loc) · 1.01 KB
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
<?php get_header(); ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="page-header">
<div class="container">
<div class="row">
<div class="col-12">
<h1><?php the_title( ); ?></h1>
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .page-header -->
<div class="highlighted-cause">
<div class="container">
<div class="row">
<div class="col-12 col-lg-7 order-2 order-lg-1">
<div class="entry-content mt-5">
<p><?php the_excerpt()?></p>
</div><!-- .entry-content -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- .highlighted-cause -->
<div class="short-content-wrap">
<div class="container">
<?php the_content();?>
</div>
</div>
<?php endwhile; ?>
<?php get_footer(); ?>