Nouvelle mouture du site web de Dylan
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.
 
 
 
 
 
 

55 lines
1.7 KiB

  1. <!DOCTYPE html>
  2. <html lang="{{ page.lang | default: site.lang | default: "en" }}">
  3. {%- include head.html -%}
  4. <body>
  5. {%- include header.html -%}
  6. <main class="page-content" aria-label="Content">
  7. <video id="demo" src="/assets/demoreel2020.webm" type="video/webm" autoplay="true" muted="true">
  8. </video>
  9. <div class="wrapper">
  10. <div class="home">
  11. {%- if page.title -%}
  12. <h1 class="page-heading">{{ page.title }}</h1>
  13. {%- endif -%}
  14. {{ content }}
  15. {%- if site.posts.size > 0 -%}
  16. <!-- <h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2> -->
  17. <ul class="post-list row">
  18. {%- for post in site.posts -%}
  19. <li class="col-xl-4 col-lg-4 post-card d-none" data-category="{{post.category}}">
  20. {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
  21. <!-- <span class="post-meta">{{ post.date | date: date_format }}</span> -->
  22. <a class="post-link" href="{{ post.url | relative_url }}"><img src="{{post.image}}"/></a>
  23. <h3>
  24. {{ post.title | escape }}
  25. <span class="home-tags">{{post.hometext}}</span>
  26. </h3>
  27. {%- if site.show_excerpts -%}
  28. {{ post.excerpt }}
  29. {%- endif -%}
  30. </li>
  31. {%- endfor -%}
  32. </ul>
  33. <!--
  34. <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
  35. -->
  36. {%- endif -%}
  37. </div>
  38. </div>
  39. </main>
  40. {%- include contact.html -%}
  41. {%- include footer.html -%}
  42. </body>
  43. </html>