My ham website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.4 KiB

6 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <% include ../partials/head %>
  5. </head>
  6. <body class="home type-page">
  7. <div class="container">
  8. <% include ../partials/header %>
  9. <main class="main" id="main">
  10. <article class="entry">
  11. <header class="header-container">
  12. <div class="header entry-header">
  13. <div class="header-info">
  14. <h1 class="title">
  15. <a href="<%= permalink %>"><%= post_title %></a>
  16. </h1>
  17. </div>
  18. <div class="meta">
  19. <span class="posted-on">
  20. <time class="date" datetime="<%= created_at %>"><%= created_at_short %></time>
  21. </span>
  22. </div>
  23. </div>
  24. </header>
  25. <div class="entry-content" style="padding-top: 50px;">
  26. <%- content %>
  27. </div>
  28. <footer class="entry-footer-container" style="padding-top:100px;">
  29. <div class="entry-footer">
  30. <p>- until next time.</p>
  31. </div>
  32. </footer>
  33. </article>
  34. </main>
  35. <% include ../partials/footer %>
  36. </div>
  37. </body>
  38. </html>