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.
18 lines
433 B
HTML
18 lines
433 B
HTML
{{template "base" .}}
|
|
|
|
{{define "title"}}{{ .Article.Title }} • News • 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}} |