forked from cutterkom/Bootstrap-WordPress-Starter-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
16 lines (16 loc) · 722 Bytes
/
single.php
File metadata and controls
16 lines (16 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-9 col-12">
<div class="content">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; else: ?>
<p><?php _e('Diese Seite gibt es nicht :('); ?></p>
<?php endif; ?>
</div> <!-- /.content -->
</div> <!-- /.col-lg-9 /.col-md-9 /.col-sm-9 /.col-9 -->
<div class="col-lg-3 col-md-3 col-sm-9 col-9"> <h2>Sidebar</h2> <!-- Hier ist Platz für deine Sidebar--></div><!-- /.col-lg-3 /.col-md-3 /.col-sm-3 /.col-3 -->
</div> <!-- /.row -->
</div> <!-- /.container -->
<?php get_footer(); ?>