20 lines
395 B
HTML
20 lines
395 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{ partial "header.html" . }}
|
|
<body>
|
|
<div class="container wrapper post">
|
|
{{ partial "head.html" . }}
|
|
|
|
<div class="post-header">
|
|
<h1 class="title">{{ .Title }}</h1>
|
|
<div class="meta">Posted at — {{ dateFormat "Jan 2, 2006" .Date }}</div>
|
|
</div>
|
|
|
|
<div class="markdown">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html> |