page-desk.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /*
  3. Template Name: Desk
  4. */
  5. get_header(); ?>
  6. <?php get_template_part( 'underscore' ); ?>
  7. <div class="container leader">
  8. <div class="row">
  9. <div class="col-sm-12">
  10. <h1 class="super-duper cm-sans wow fadeInLeft">Desk</h1>
  11. </div>
  12. </div>
  13. <div class="row">
  14. <div class="col-sm-8">
  15. <div class="entry-content">
  16. <h4 class="georgia spread"><em><span class="firstcharacter">T</span>he internet is awash with nonsense and people that really want to be heard</em>. That's not exactly the case for me and I'm not planning on adding to the nonsense. I've spent too much time working on websites for other folks to really concern myself with my own. However, I've grown really tired of communicating using third party websites and I wanted to use this as a way to archive any notes, ideas, or anything I want to share. Right now, this site is clogged up with lots of old posts about mostly computer related ramblings, but I'll clean that up over time.</h4>
  17. </div>
  18. </div>
  19. <div class="col-sm-4">
  20. <div class="col-xs-6 studio-tools">
  21. <ul>
  22. <?php wp_list_categories('orderby=name&exclude=1,7,44'); ?>
  23. </ul>
  24. </div>
  25. <div class="col-xs-6 studio-tools">
  26. <ul>
  27. <li>Year</li>
  28. <?php wp_get_archives( array( 'type' => 'yearly') ); ?>
  29. </ul>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="container">
  35. <div id="content" role="main">
  36. <main id="main" class="site-main" role="main">
  37. <?php query_posts('showposts=10'); ?>
  38. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  39. <article id="content" class="single" role="main">
  40. <div itemscope="" itemtype="http://schema.org/BlogPosting" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  41. <div class="entry-content">
  42. <div class="date">
  43. <time datetime="<?php the_time('c');?>" itemprop="datePublished"><?php the_date('n/j/Y'); ?></time>
  44. </div>
  45. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'daw' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  46. <?php the_content(); ?>
  47. <div class="clear">&nbsp;</div>
  48. </div>
  49. </div>
  50. </article>
  51. <?php endwhile; ?>
  52. </main>
  53. </div>
  54. </div>
  55. <?php get_footer('studio'); ?>