123456789101112131415161718192021222324252627 |
- <script type="text/html" id="content-template">
- <article id="content" class="single" role="main">
- <div itemscope="" itemtype="http://schema.org/BlogPosting" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
- <div class="entry-content">
- <header class="entry-header">
- <div class="entry-meta">
- <% postDate = new Date( post.date ); %>
- <time class="date">
- <time class="updated" datetime="<?php the_time('c');?>" itemprop="datePublished"><% print( ( postDate.getMonth() + 1 ) + '/' + postDate.getDate() + '/' + postDate.getFullYear() ); %></time>
- </time>
- <span class="author vcard"><span class="fn">David A. Windham</span></span>
- </div>
- <h1 class="entry-title"><a href="<%= post.link %>" rel="bookmark"><%= post.title.rendered %></a></h1>
- <% if ( 'post' === post.type ) { %>
- <% } %>
- </header>
- <%= post.content.rendered %>
- <div class="clear"> </div>
- </div>
- </article>
- </script>
- <script type="text/html" id="more-button-template">
- <div class="more-posts">
- <a class="more-button button btn-lg btn btn-dark" href="#"><?php esc_html_e( 'Load More ↵', 'dw' ); ?></a>
- </div>
- </script>
|