My personal website https://leviolson.com
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.

59 lines
2.3 KiB

6 years ago
6 years ago
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. <div id="disqus_thread"></div>
  33. <script>
  34. var disqus_config = function () {
  35. this.page.url = "https://leviolson.com<%= permalink %>";
  36. this.page.identifier = "<%= content_file %>";
  37. };
  38. (function() { // DON'T EDIT BELOW THIS LINE
  39. var d = document, s = d.createElement('script');
  40. s.src = 'https://leviolson.disqus.com/embed.js';
  41. s.setAttribute('data-timestamp', +new Date());
  42. (d.head || d.body).appendChild(s);
  43. })();
  44. </script>
  45. <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
  46. </footer>
  47. </article>
  48. </main>
  49. <% include ../partials/footer %>
  50. </div>
  51. </body>
  52. </html>