12 lines
268 B
HTML
12 lines
268 B
HTML
|
|
{{define "singleArticleHTML"}}
|
||
|
|
{{with .article }}
|
||
|
|
<div class="article_content">
|
||
|
|
<h1 id="title">{{.Title}}</h1>
|
||
|
|
<div class="single_timestamp">{{.SourceName}} - {{ .FormatedCreatedAt }}</div>
|
||
|
|
<div class="article_body">
|
||
|
|
{{.Content}}
|
||
|
|
</div>
|
||
|
|
<br><br>
|
||
|
|
{{end}}
|
||
|
|
{{end}}
|