-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.php
More file actions
41 lines (41 loc) · 1.2 KB
/
faq.php
File metadata and controls
41 lines (41 loc) · 1.2 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
<?php
/* Template Name: Sıkça Sorulan Sorular */
get_header();
?>
<div class="site-content">
<?php while ( have_posts() ) : the_post(); ?>
<div class="section main-content">
<div class="wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<div class="inner-page-header">
<h1 class="page-header"><?php the_title(); ?></h1>
<?php
if( function_exists('bootstrap_breadcrumb') )
bootstrap_breadcrumb('<i class="fa fa-home"></i>');
?>
</div>
</div>
</div>
<?php if ( has_post_thumbnail() ) : ?>
<div class="row">
<div class="col-xs-12">
<div class="featured-image" style="background-image: url(<?php echo get_image_url_by_id( get_post_thumbnail_id( get_the_id() ), 'featured' ); ?>);"></div>
</div>
</div>
<?php endif; ?>
<div class="row">
<div class="col-xs-12">
<div class="panel-group" id="faqAccordion">
<?php the_content(); ?>
</div>
</div>
</div>
</div>
</div>
</div><!-- main-content -->
<?php endwhile; ?>
<?php get_template_part( 'partials/section', 'cntlinks' ); ?>
</div><!-- site-content -->
<?php get_footer(); ?>