archivio.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <h1>{{ page.title }}</h1>
  20. <p>Documentazione pubblica dell'associazione.</p>
  21. <h2>Bilanci</h2>
  22. <p>Lista dei bilanci finali dei vari anni.</p>
  23. <ul class="post-list">
  24. {% for post in site.categories.bilanci %}
  25. <li class="post-meta">
  26. <a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
  27. <span class="post-date">{{ post.date | date: "%d/%m/%Y" }}</span>
  28. </li>
  29. {% endfor %}
  30. </ul>
  31. <h2>Storie legali</h2>
  32. <p>Lista di tutti i precedenti legali dell'associazione.</p>
  33. <ul class="post-list">
  34. {% for post in site.categories.legali %}
  35. <li class="post-meta">
  36. <a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
  37. <span class="post-date">{{ post.date | date: "%d/%m/%Y" }}</span>
  38. </li>
  39. {% endfor %}
  40. </ul>
  41. </div>