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.
19 lines
435 B
HTML
19 lines
435 B
HTML
2 years ago
|
{{template "base" .}}
|
||
|
|
||
|
{{define "title"}}{{ .Article.Title }} • Guide • PHC{{end}}
|
||
|
|
||
|
{{define "body"}}
|
||
|
<section class="news-content">
|
||
|
<h1>{{ .Article.Title }}</h1>
|
||
|
<div class="date">
|
||
|
{{ .Article.PublishDate.Format "2006/01/02" }}
|
||
|
</div>
|
||
|
<div class="tags">
|
||
|
{{ range .Article.Tags }}
|
||
|
<span class="tag">{{ . }}</span>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
{{ .ContentHTML }}
|
||
|
</section>
|
||
|
{{end}}
|