-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-case-studies.php
More file actions
44 lines (31 loc) · 915 Bytes
/
template-case-studies.php
File metadata and controls
44 lines (31 loc) · 915 Bytes
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
<?php
/*
Template Name: Case Studies
*/
?>
<?php
/**
* The template for Case Studies
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Absolutte
*/
get_header(); ?>
<div id="content" class="<?php echo esc_attr( absolutte_content_css_class() ); ?>">
<?php if ( have_posts() ): ?>
<div class="container">
<div class="row">
<?php while ( have_posts() ): the_post(); ?>
<a href="<?php the_permalink()?>"
<div class="col-sm">
<h3><?php the_field('study_name') ?></h3>
<h5><?php the_field('study_description') ?></h5>
</div>
</a>
<?php endwhile; ?>
</div>
</div><!-- /absolutte-post-wrapper -->
<?php endif; ?>
</div><!-- /content -->
<?php get_footer(); ?>