This repository has been archived on 2025-05-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hack13-blog/layouts/post/single.html

20 lines
640 B
HTML

<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{- partial "header.html" . -}}
<br>
<main role="main">
<div class="container">
{{- block "main" . }}{{- end }}
<h1>{{ .Params.title }}</h1>
<strong>Author:</strong> {{ .Params.author }} | <strong>Published:</strong> {{ .Date.Format "Jan 2, 2006" }} <hr/>
{{ .Content }}
<button class="btn btn-secondary" onclick="window.history.go(-1)">&#8701; Go Back</button>
<br/>
</div>
</main>
{{- partial "footer.html" . -}}
</body>
</html>