-
Notifications
You must be signed in to change notification settings - Fork 1
/
page_full.php
45 lines (33 loc) · 1.04 KB
/
page_full.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
43
44
45
<?php /* Template Name: Volle Inhaltsbreite */ ?>
<?php get_header(); ?>
<?php
if ((get_theme_mod('dav_breadcrumb') != false) && (get_theme_mod('dav_breadcrumb') == 1)) {
if (function_exists('nav_breadcrumb')) nav_breadcrumb();
}
?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="container">
<div class="container-content">
<div class="row">
<div class="col-xs-12 col-sm-8">
<h1><?php the_title(); ?></h1>
</div>
</div>
<div class="row">
<div class="col-12" id="content">
<?php the_content(); ?>
</div>
</div>
</div>
</div>
<?php endwhile; else : ?>
<div class="container">
<div class="row">
<div class="col-12">
<h1>Entschuldigung!</h1>
<p>Leider gibt es hier nicht den gewünschten Inhalt.</p>
</div>
</div>
</div>
<?php endif; ?>
<?php get_footer(); ?>