forked from kushinauwu/OBF-Homepage-New
-
Notifications
You must be signed in to change notification settings - Fork 10
/
meeting-minutes.php
47 lines (40 loc) · 1.45 KB
/
meeting-minutes.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
<?php
/*
Template Name: meeting minutes
*/
?>
<?php get_header(); ?>
<div class="showcase-wrapper">
<div class="container-fluid">
<?php custom_breadcrumbs(); ?>
<article>
<div>
<p>
Starting in July 2019, OBF Board public meeting minutes can be found in
<a href="https://github.com/OBF/obf-docs/tree/master/minutes">our GitHub repository</a>.
</p>
</div>
<?php $query2 = new WP_Query( array( 'category_name' => 'meeting-minutes' ) ); ?>
<?php if($query2->have_posts()) : ?>
<?php while($query2->have_posts()) : $query2->the_post(); ?>
<div class="row">
<div class="col-xs-12">
<div class="meeting-minutes-heading">
<h2><a href="<?php the_permalink(); ?>" target="_blank">
<?php the_title(); ?></a></h2>
</div>
<div class="meeting-minutes-excerpt">
<p>
<?php echo get_the_excerpt(); ?>
<a href="<?php the_permalink(); ?>" target="_blank">Read more»</a>
</p>
</div>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
<?php wp_reset_postdata(); ?>
</article>
</div>
</div>
<?php get_footer(); ?>