Remove the simple layout; and remove the resume single template

This commit is contained in:
Eryn Wells 2022-11-15 17:19:18 -08:00
parent 5dbec4ec08
commit f078614848
2 changed files with 0 additions and 38 deletions

View file

@ -1,17 +0,0 @@
{{ define "header" }}
{{ partial "header.html" . }}
{{ end }}
{{ define "main" }}
<header class="post-title">
<h1>{{ .Title }}</h1>
</header>
<section class="post-content">
{{ .Content }}
</section>
{{ end }}
{{ define "footer" }}
{{ partial "footer.html" . }}
{{ end }}

View file

@ -1,21 +0,0 @@
{{ define "header" }}
{{ partial "header.html" . }}
{{ end }}
{{ define "main" }}
<article class="post-single">
<header>
{{ partial "development/draft_tag.html" . }}
<div class="post-title">
<h1>{{ .Title }}</h1>
</div>
</header>
<section class="post-content">
{{ .Content }}
</section>
</article>
{{ end }}
{{ define "footer" }}
{{ partial "footer.html" . }}
{{ end }}