-
Notifications
You must be signed in to change notification settings - Fork 0
/
single-portfolio.php
42 lines (30 loc) · 1.05 KB
/
single-portfolio.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
<?php
/**
* Template Name: Single Portfolio
*
* This is the template that displays all pages by default.
*
* @package delighted_calligraphy
*/
get_header(); ?>
<main id="main" class="no-pad" role="main">
<section class="primary">
<?php while ( have_posts() ) : the_post(); ?>
<div class="details">
<div class="details__border--double">
<h2><?php the_field('category'); ?></h2>
<h1><?php the_title(); ?></h1>
<p><?php the_field('description'); ?></p>
</div>
<div class="details__pagination">
<div class="details__pagination__links"><?php previous_post_link(); ?></div>
<div class="details__pagination__links"><?php next_post_link(); ?></div>
</div>
</div>
<?php endwhile; // end of the loop. ?>
</section>
<section class="secondary">
<p><?php the_field('images'); ?></p>
</section>
</main><!-- #primary -->
<?php get_footer(); ?>