page.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php get_header(); ?>
  2. <!--
  3. <div id="content">
  4. <div id="inner-content" class="wrap cf">
  5. <main id="main" class="m-all t-2of3 d-5of7 cf" role="main" itemscope itemprop="mainContentOfPage" itemtype="">
  6. -->
  7. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  8. <div id="post-<?php the_ID(); ?>" <?php post_class('cf'); ?> role="article" class="section-padding background-gray">
  9. <div class="container">
  10. <!--
  11. <div class="row">
  12. <div class="col-md-12">
  13. <h2 class="section-title wow fadeInDown animated" data-wow-delay="0.3s">Unsere Kunden</h2>
  14. </div>
  15. </div> -->
  16. <div class="row">
  17. <div class="col-sm-8">
  18. <header class="article-header">
  19. <h2 class="sub-title"><?php the_title(); ?></h2>
  20. <p class="byline vcard">
  21. <?php printf(__('Posted', 'bonestheme').' <time class="updated" datetime="%1$s" itemprop="datePublished">%2$s</time> '.__('by', 'bonestheme').' <span class="author">%3$s</span>', get_the_time('Y-m-j'), get_the_time(get_option('date_format')), get_the_author_link(get_the_author_meta('ID'))); ?>
  22. </p>
  23. </header> <?php // end article header?>
  24. <p>
  25. <?php
  26. // the content (pretty self explanatory huh)
  27. the_content();
  28. /*
  29. * Link Pages is used in case you have posts that are set to break into
  30. * multiple pages. You can remove this if you don't plan on doing that.
  31. *
  32. * Also, breaking content up into multiple pages is a horrible experience,
  33. * so don't do it. While there are SOME edge cases where this is useful, it's
  34. * mostly used for people to get more ad views. It's up to you but if you want
  35. * to do it, you're wrong and I hate you. (Ok, I still love you but just not as much)
  36. *
  37. * http://gizmodo.com/5841121/google-wants-to-help-you-avoid-stupid-annoying-multiple-page-articles
  38. *
  39. */
  40. wp_link_pages(array(
  41. 'before' => '<div class="page-links"><span class="page-links-title">' . __('Pages:', 'bonestheme') . '</span>',
  42. 'after' => '</div>',
  43. 'link_before' => '<span>',
  44. 'link_after' => '</span>',
  45. ));
  46. ?>
  47. </p>
  48. </div>
  49. <div class="col-sm-4">
  50. <h2 class="sub-title">&nbsp;</h2>
  51. <p>
  52. &nbsp;.
  53. </p>
  54. </div>
  55. <div class="col-sm-12">&nbsp;</div>
  56. </div>
  57. </div>
  58. </div>
  59. <?php endwhile; endif; ?>
  60. <!-- </main> -->
  61. <?php /* get_sidebar(); */ ?>
  62. <!-- </div>
  63. </div> -->
  64. <?php get_footer(); ?>