This commit is contained in:
2023-12-18 16:51:47 +01:00
commit 88741b2303
36 changed files with 1490 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{{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}}