archivio.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. layout: default
  3. title: Archivio Comunicati
  4. permalink: /archivio/
  5. ---
  6. <div class="archive">
  7. <h1>{{ page.title }}</h1>
  8. Ufficio stampa <em>{{ site.name }}</em><br/>
  9. e-mail: <strong>{{ site.email }}</strong><br/>
  10. <h2>Ultimi comunicati:</h2>
  11. <ul class="post-list">
  12. {% for post in site.categories.comunicati %}
  13. <li class="post-meta">
  14. <a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
  15. <span class="post-date">{{ post.date | date: "%d/%m/%Y" }}</span>
  16. </li>
  17. {% endfor %}
  18. </ul>
  19. <h2>Bilanci</h2>
  20. <p>Lista dei bilanci finali dei vari anni.</p>
  21. <ul class="post-list">
  22. {% for post in site.categories.bilanci %}
  23. <li class="post-meta">
  24. <a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
  25. <span class="post-date">{{ post.date | date: "%d/%m/%Y" }}</span>
  26. </li>
  27. {% endfor %}
  28. </ul>
  29. <h2>Storie legali</h2>
  30. <p>Lista di tutti i precedenti legali dell'associazione.</p>
  31. <ul class="post-list">
  32. {% for post in site.categories.legali %}
  33. <li class="post-meta">
  34. <a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
  35. <span class="post-date">{{ post.date | date: "%d/%m/%Y" }}</span>
  36. </li>
  37. {% endfor %}
  38. </ul>
  39. </div>