25 lines
731 B
Cheetah
25 lines
731 B
Cheetah
<!doctype html>
|
|
<html lang="{{.Lang}}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<link rel="stylesheet" href="../styles.css">
|
|
<title>{{.BlogTitle}}</title>
|
|
</head>
|
|
<h1 class="blogtitle"><a href="/proxy/8080/">{{.BlogTitle}}</a></h1>
|
|
<body>
|
|
<article class="post">
|
|
<header class="postheader">
|
|
<h2 class="posttitle">{{.Title}}</h2>
|
|
<p class="postdate"><time datetime="{{.Date}}">{{.Date}}</Time></p>
|
|
</header>
|
|
<div class="postcontent">
|
|
{{ if .HTML }}
|
|
{{.HTML}}
|
|
{{ else }}
|
|
{{.Text}}
|
|
{{ end }}
|
|
</div>
|
|
</article>
|
|
</body>
|
|
</html> |