index.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <?php get_header('home'); ?>
  2. <div class="container-full leader">
  3. <div class="container">
  4. <div class="row">
  5. <div class="col-xs-5">
  6. <h1 class="didot">David A. Windham</h1>
  7. <svg class="logo" width="250px" height="0px">
  8. </svg>
  9. </div>
  10. <div class="col-xs-4">
  11. <img src="<?php echo get_bloginfo('template_directory');?>/img/daw.png" width="100" class="logo" alt="David Windham"/>
  12. </div>
  13. <div class="col-xs-3 front-nav">
  14. <div class="col-sm-6">
  15. <ul>
  16. <li><a href="notebook">Notebook</a></li>
  17. <li><a href="studio">Studio</a></li>
  18. <li><a href="bio">Bio</a></li>
  19. </ul>
  20. </div>
  21. <div class="col-sm-6">
  22. <ul>
  23. <li><a href="contact">Contact</a></li>
  24. <li><a href="archives">Archives</a></li>
  25. <li><a href="essays">Essays</a></li>
  26. <li></li>
  27. <li></li>
  28. </ul>
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. <video id="tv" class="sat" preload="auto" autoplay="true" loop="loop" muted="muted" volume="0">
  35. <source src="<?php echo get_bloginfo('template_directory');?>/img/tv.mp4" type="video/mp4">
  36. <source src="<?php echo get_bloginfo('template_directory');?>/img/tv.webm" type="video/webm">
  37. </video>
  38. <div class="container-full">
  39. <div id="carousel" class="carousel slide carousel-fade" data-ride="carousel">
  40. <div class="carousel-inner">
  41. <div class="item active">
  42. <div class="container">
  43. <h1 class="light super cm-sans">Computer Modern Sans 1</h1>
  44. <h3 class="light cm-concrete">The First tagline about that article</h3>
  45. </div>
  46. <div class="carousel-caption">
  47. <p>Some sort of captions</p>
  48. </div>
  49. </div>
  50. <div class="item">
  51. <div class="container">
  52. <h1 class="light super cm-sans wow fadeIn" data-wow-duration="4s">This Is Another Title - 2</h1>
  53. <h3 class="light cm-concrete">Another line about that Essay</h3>
  54. </div>
  55. <div class="carousel-caption">
  56. <p>Some sort of captions</p>
  57. </div>
  58. </div>
  59. <div class="item bg1">
  60. <div class="container">
  61. <h1 class="light super cm-sans">And A Third Title - 3</h1>
  62. <h3 class="light cm-concrete">A Third byline about an Artwork</h3>
  63. </div>
  64. <div class="carousel-caption">
  65. <p>Some sort of captions</p>
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. <div class="container-fluid posts">
  72. <div class="container">
  73. <div class="row">
  74. <div class="col-sm-4 wow fadeInLeft">
  75. <article id="main" class="home">
  76. <?php query_posts('showposts=1'); ?>
  77. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  78. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  79. <div class="entry-content">
  80. <div class="date">
  81. <?php the_time('n/j/Y'); ?>
  82. </div>
  83. <h3 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></h3>
  84. <?php the_excerpt(); ?>
  85. </div>
  86. </div>
  87. <?php endwhile; ?>
  88. </article>
  89. </div>
  90. <div class="col-sm-4 wow fadeInUp" data-wow-duration="1s">
  91. <article id="main" class="home">
  92. <?php query_posts('showposts=1&offset=1'); ?>
  93. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  94. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  95. <div class="entry-content">
  96. <div class="date">
  97. <?php the_time('n/j/Y'); ?>
  98. </div>
  99. <h3 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></h3>
  100. <?php the_excerpt(); ?>
  101. </div>
  102. </div>
  103. <?php endwhile; ?>
  104. </article>
  105. </div>
  106. <div class="col-sm-4 wow fadeInRight">
  107. <article id="main" class="home">
  108. <?php query_posts('showposts=1&offset=2'); ?>
  109. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  110. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  111. <div class="entry-content">
  112. <div class="date">
  113. <?php the_time('n/j/Y'); ?>
  114. </div>
  115. <h3 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></h3>
  116. <?php the_excerpt(); ?>
  117. </div>
  118. </div>
  119. <?php endwhile; ?>
  120. </article>
  121. </div>
  122. </div>
  123. </div>
  124. </div>
  125. <div class="container-full dark">
  126. <div class="container">
  127. <div class="row">
  128. <div class="col-xs-5">
  129. </div>
  130. <div class="col-xs-4">
  131. </div>
  132. <div class="col-xs-3 front-nav">
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. <div class="container-full dark">
  138. <div class="container">
  139. <div class="row">
  140. <div class="col-sm-8">
  141. <h3 class="light">Subscribe / Contact</h3>
  142. <p class="dim">Subscribe to be notified of new post or contact me and I'll get back with you.</p>
  143. <form action="//davidawindham.us1.list-manage.com/subscribe/post?u=f581cb29340364ff0a4421d5c&amp;id=d7b8f624d3" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
  144. <div class="form-row texts">
  145. <label class='text-field'>
  146. <input type="text" value="" name="FNAME" class="required" id="mce-FNAME" placeholder='David' required>
  147. <strong>First name <span class='req'>*</span></strong>
  148. </label>
  149. <label class='text-field'>
  150. <input type="text" value="" name="LNAME" class="required" id="mce-LNAME" placeholder='Windham' required>
  151. <strong>Last name <span class='req'>*</span></strong>
  152. </label>
  153. </div>
  154. <div class="form-row texts">
  155. <label class='text-field'>
  156. <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL" placeholder='you@gmail.com' required>
  157. <strong>Email address <span class='req'>*</span></strong>
  158. </label>
  159. <label class='text-field'>
  160. <input type="text" value="" name="COMPANY" class="" placeholder='Your Place'>
  161. <strong>Company <i>or</i> School</strong>
  162. </label>
  163. </div>
  164. <div class="contact-form-message">
  165. <label class='text-field'>
  166. <input type="text" size="100" value="" name="MMERGE3" class="" placeholder='Your Message'>
  167. <strong>Message</strong>
  168. </label>
  169. </div>
  170. <input type="hidden" value="8" name="group[9585][8]">
  171. <div style="position: absolute; left: -5000px;">
  172. <input type="text" name="b_f581cb29340364ff0a4421d5c_d7b8f624d3" tabindex="-1" value="">
  173. </div>
  174. <div class="clear"></div>
  175. <div class="actions">
  176. <button type="submit" class="submit btn default" value="Subscribe" name="subscribe" id="mc-embedded-subscribe">Subscribe</button>
  177. <span> ~ or ~ </span>
  178. <button type="submit" class="submit btn default" value="Conctact" name="contact" id="contact">Contact Me</button>
  179. </div>
  180. </form>
  181. </div>
  182. <div class="col-sm-4">
  183. <div class="calendar"></div>
  184. </div>
  185. </div>
  186. </div>
  187. </div>
  188. <?php get_footer('home'); ?>