-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsingle-proje.php
32 lines (32 loc) · 1.03 KB
/
single-proje.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
<?php get_header(); ?>
<section class="section">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1">
<?php while (have_posts()): the_post(); ?>
<div class="row mb-3">
<div class="col-12">
<?php get_template_part('template-parts/breadcrumbs/breadcrumb', 'project'); ?>
</div>
</div>
<div class="row">
<div class="col-12">
<?php get_template_part('template-parts/contents/content', 'single'); ?>
</div>
</div>
<div class="row mt-5">
<div class="col-12">
<?php get_template_part('template-parts/navigations/post_nav', 'project'); ?>
</div>
</div>
<div class="row mt-5">
<div class="col-12">
<?php get_template_part('template-parts/columns/column', 'other_projects'); ?>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>