forked from enterthecrucible/materialized_jekyll_theme
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsistemidiriferimento.html
67 lines (64 loc) · 2.34 KB
/
sistemidiriferimento.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
layout: page
title:
redirect_from:
- /sistemidiriferimento.html
---
<!-- <div class="row"><div class="col s12 aisf darken-2 white-text" style="border-radius: 4px;"><p>Stiamo importando i post dalla vecchia piattaforma. Al momento i post più vecchi non sono ancora accessibili, ci scusiamo per il disagio.</p></div></div> -->
<!--<ul class="post-list">
{% for post in site.articolicls %}
<li>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
{% if post.date %}<div class="chip"><span class="post-meta">{{ post.date | date: "%-d %b %Y" }}</span></div>{% endif %}
{% if post.author %}<div class="chip"><span class="post-meta">{{ post.author }}</span></div>{% endif %}
{% if post.categories %}{% for category in post.categories %}{% if category == 'articolicl' %}{% else %}<div class="chip"><span class="post-meta">{{ category }}</span></div>{% endif %}{% endfor %}{% endif %}
</h2>
<div class="entry-content">{{ post.excerpt | strip_html }}</div>
</li>
<div class="divider"></div>
{% endfor %}
</ul> -->
<ul class="post-list">
{% for post in site.categories.sistemidiriferimento %}
{% if post.hidden != true %}
<li>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
{% if post.date %}
<div class="chip">
<span class="post-meta">
{{ post.date | date: "%-d %b %Y" }}
</span>
</div>
{% endif %}
{% if post.author %}
<div class="chip">
<span class="post-meta">
{{ post.author }}
</span>
</div>
{% endif %}
{% if post.categories %}
{% for category in post.categories %}
{% if category == 'sistemidiriferimento' %}
{% else %}
<div class="chip">
<span class="post-meta">
{{ category }}
</span>
</div>
{% endif %}
{% endfor %}
{% endif %}
</h2>
<div class="entry-content">
{{ post.excerpt | strip_html }}
</div>
</li>
<div class="divider"></div>
{% endif %}
{% endfor %}
</ul>