-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive-case_study.php
More file actions
49 lines (31 loc) · 1.35 KB
/
archive-case_study.php
File metadata and controls
49 lines (31 loc) · 1.35 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
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/**
* The template for displaying archive pages.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Absolutte
*/
get_header(); ?>
<div id="content" class="container-fluid">
<?php if ( have_posts() ): ?>
<header class="page-header pt-5" style="top:50px;">
<h1 class="page-title" style="visibility: visible !important">Case Studies</h1>
</header><!-- .page-header -->
<div class="container-fluid" >
<div class="row pt-3">
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ): the_post(); ?>
<div class="col-sm-12 col-md-3 col-lg-2 border border-primary rounded m-2">
<!-- <a href="--><?php //the_permalink()?><!--"-->
<h3 class="pt-2 pb-2 pr-2" style="background: -webkit-linear-gradient(-45deg, #42A5F5 0%, #1236e3 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;">
<a href="<?php the_permalink()?>"> <?php the_field('study_name') ?></a></h3>
<p><?php the_field('study_description') ?></p>
<!-- </a>-->
</div>
<?php endwhile; ?>
</div>
</div><!-- /absolutte-post-wrapper -->
<?php endif; ?>
</div><!-- /content -->
<?php get_footer(); ?>