-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle-case_study.php
More file actions
40 lines (33 loc) · 1.53 KB
/
single-case_study.php
File metadata and controls
40 lines (33 loc) · 1.53 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
<?php
/**
* The template for displaying all single posts.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Absolutte
*/
get_header(); ?>
<div id="content" class="site-content container-fluid" role="content">
<header class="page-header" style="padding-top:100px;">
<div class="row">
<div class="col-sm-8">
<h1 class="page-title" style="visibility: visible !important;"><?php the_field('study_name');?> </h1>
</div>
<div class="col-sm-4">
<h3 class="page-subtitle" style="text-align: right"><?php the_field('study_description');?> </h3>
</div>
</div>
</header><!-- .page-header -->
<div class="main">
<div class="container-fluid py-3">
<h2 class="mx-auto py-4" style="text-align: center; background: -webkit-linear-gradient(-45deg, #e66465 0%, #9198e5 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;"><?php the_field('study_name')?></h2>
<h6 class="mx-auto py-2" style="text-align: center;"><?php the_field('study_description')?></h6>
<div class="button container py-2" style="text-align: center;">
<a class="btn btn-success" href="/mySite/case_study">
back
</a>
</div>
</div>
</div>
</div><!-- #content -->
<?php get_footer(); ?>