imported theme and posts from WP

This commit is contained in:
Timothy Rogers 2021-06-27 03:03:18 -04:00
parent 2266e3ddc5
commit c5892a5972
60 changed files with 1095 additions and 21 deletions

18
layouts/post/single.html Normal file
View file

@ -0,0 +1,18 @@
<!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 }}
</div>
</main>
{{- partial "footer.html" . -}}
</body>
</html>

View file

@ -0,0 +1,2 @@
<!-- raw html -->
{{.Inner}}