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.
49 lines
1.2 KiB
HTML
49 lines
1.2 KiB
HTML
{{template "base" .}}
|
|
|
|
{{define "title"}}PHC • phc.dm.xxxxx.xx{{end}}
|
|
|
|
{{define "body"}}
|
|
<section>
|
|
<h2>
|
|
<i class="far fa-newspaper"></i>
|
|
Notizie Importanti
|
|
</h2>
|
|
<div class="card-list">
|
|
{{ range .Articles }}
|
|
{{ if .Important }}
|
|
<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>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>
|
|
<i class="fas fa-history"></i>
|
|
Archivio notizie
|
|
</h2>
|
|
<div class="card-list">
|
|
{{ range .Articles }}
|
|
{{ if not .Important }}
|
|
<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>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
{{end}} |