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.
38 lines
918 B
HTML
38 lines
918 B
HTML
{{template "base" .}}
|
|
|
|
{{define "title"}}Guide • PHC{{end}}
|
|
|
|
{{define "body"}}
|
|
<section>
|
|
<h2>
|
|
Feed RSS
|
|
<a href="/guide/feed"> <i class="fa-solid fa-rss"></i></a>
|
|
</h2>
|
|
<h1>
|
|
<i class="fa-solid fa-person-chalkboard"></i>
|
|
Articoli
|
|
</h1>
|
|
<div class="card-list">
|
|
{{ range .Articles }}
|
|
<div class="card">
|
|
<div class="title">
|
|
<a href="/guide/{{ .Id }}">
|
|
{{ .Title }}
|
|
</a>
|
|
</div>
|
|
<div class="date">{{ .PublishDate.Format "2006/01/02" }}</div>
|
|
<div class="description">
|
|
<p>{{ .Description }}</p>
|
|
</div>
|
|
<div class="tags">
|
|
{{ range .Tags }}
|
|
<span class="tag">{{ . }}</span>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
|
|
{{end}}
|