You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
website/views/news.html

59 lines
1.5 KiB
HTML

3 years ago
{{template "base" .}}
{{define "title"}}PHC • phc.dm.xxxxx.xx{{end}}
{{define "body"}}
<section>
<h2>
<i class="far fa-newspaper"></i>
Notizie Importanti
</h2>
3 years ago
<div class="card-list">
{{ range .Articles }}
{{ if .HasTag "important" }}
3 years ago
<div class="card">
<div class="title">
<a href="/news/{{ .Id }}">
{{ .Title }}
</a>
</div>
<div class="date">{{ .PublishDate.Format "2006/01/02" }}</div>
<div class="description">{{ .Description }}</div>
<div class="tags">
{{ range .Tags }}
<span class="tag">{{ . }}</span>
{{ end }}
</div>
3 years ago
</div>
{{ end }}
{{ end }}
3 years ago
</div>
</section>
<section>
<h2>
<i class="fas fa-history"></i>
Archivio notizie
</h2>
3 years ago
<div class="card-list">
{{ range .Articles }}
{{ if not (.HasTag "important") }}
3 years ago
<div class="card">
<div class="title">
<a href="/news/{{ .Id }}">
{{ .Title }}
</a>
3 years ago
</div>
<div class="date">{{ .PublishDate.Format "2006/01/02" }}</div>
<div class="description">{{ .Description }}</div>
<div class="tags">
{{ range .Tags }}
<span class="tag">{{ . }}</span>
{{ end }}
</div>
3 years ago
</div>
{{ end }}
{{ end }}
3 years ago
</div>
</section>
{{end}}