single.php 987 B

12345678910111213141516171819202122232425262728293031
  1. <?php get_header(); ?>
  2. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  3. <div id="single" class="content-wrapper">
  4. <div class="beam">
  5. <div class="container clearfix">
  6. <div class="row">
  7. <?php if(!in_category('Startseite')) { ?>
  8. <div class="col-lg-1">
  9. <span class="tag tag-pill"><?php the_time("M"); ?><br><?php the_time("y"); ?></span>
  10. </div>
  11. <?php } ?>
  12. <div class="<?php echo (in_category('Startseite') ? "col-lg-12" : "col-lg-11")?>">
  13. <h1><?php the_title(); ?></h1>
  14. </div>
  15. </div>
  16. </div>
  17. </div>
  18. <div class="container text-muted">
  19. <div class="row">
  20. <div class="<?php echo (in_category('Startseite') ? "col-lg-12" : "col-lg-11 offset-lg-1")?>">
  21. <?php the_content(); ?>
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26. <?php endwhile; endif; ?>
  27. <?php get_footer(); ?>