git push wip

This commit is contained in:
2023-03-27 21:49:34 -05:00
commit 630fd021b3
49 changed files with 1146 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ partial "seo_schema.html" . }}
<title>{{ block "title" . }} {{ .Site.Title }} {{ end }}</title>
{{ partial "head.html" . }}
</head>
<body>
<div class="flexWrapper">
{{ partial "header.html" . }}
<div class="content">
<main class="main">{{ block "main" . }} {{ end }}</main>
</div>
{{ partial "footer.html" . }}
</div>
</body>
</html>

View File

@ -0,0 +1,39 @@
{{ define "title"}}
{{ .Title }} | {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<div>
<div class="listHeader">
<h1>{{ .Title }}</h1>
</div>
{{ with .Content }}
<div class="listContent">
{{- . -}}
</div>
{{ end }}
<div>
{{ range .Pages }}
<a href="{{ .Permalink }}">
<!-- [html-validate-disable-next prefer-native-element] -->
<div class="postListItem" role="listitem">
<div class="postHeader">
<span class="postTitle">{{ .Title }}</span>
<span class="postDate">{{ .Date.Format "January 2, 2006" }}</span>
</div>
<div class="postExcerpt">
<p>{{ .Summary }}</p>
</div>
</div>
</a>
{{end}}
</div>
</div>
{{ end }}

View File

@ -0,0 +1,13 @@
{{ define "title"}}
{{ .Title }} | {{ .Site.Title }}
{{ end }}
{{ define "main" }}
<div class="postWrapper">
<h1>{{ .Title }}</h1>
<div>
{{ .Content }}
</div>
</div>
{{ end }}