project.html 642 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. layout: default
  3. ---
  4. <article class="post">
  5. <header class="post-header">
  6. <h1 class="post-title">{{ page.title | escape }}</h1>
  7. </header>
  8. <div class="post-content">
  9. {{ content }}
  10. {% if site.tags contains page.slug %}
  11. <h2>Posts</h2>
  12. <ul>
  13. {% for post in site.tags[page.slug] %}
  14. {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
  15. <li>
  16. <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a> / <span class="post-meta">{{ post.date | date: date_format }}</span> - {{ post.summary }}
  17. </li>
  18. {% endfor %}
  19. </ul>
  20. {% endif %}
  21. </div>
  22. </article>