index.php 7.0 KB

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