list almost done

This commit is contained in:
2020-01-07 14:05:49 +08:00
parent b6bd7ece4d
commit 04ce6eb512
4 changed files with 54 additions and 28 deletions

View File

@@ -1,10 +1,11 @@
{{ define "main" }}
<article itemscope itemtype="http://schema.org/Article" class="max-w-3xl mx-auto leading-relaxed">
{{ if .IsPage }}
<section class="flex flex-col meta">
<h1 class="text-center text-4xl my-8 md:my-12">{{ .Title }}</h1>
<header class="flex flex-col meta">
{{- partial "meta.html" . -}}
<h1 itemprop="name" class="text-center text-3xl my-4 md:my-6">{{ .Title }}</h1>
{{ if not .Params.disableMeta }}
<h3 class="text-center text-2xl">
<h3 class="text-center text-xl">
{{ with $.Site.Params.AuthorName }}
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">{{ . }}</span>
@@ -15,31 +16,14 @@
content="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</span>
{{ end }}
</h3>
<h3 class="md:order-first text-xl text-right mt-4 md:mt-0">
{{ with .Params.categories }}
<span itemprop="articleSection" class="category">
{{ range . }}
<a href="{{ . | printf "categories/%s" | relURL }}" rel="category">{{ . }}</a>
{{ end }}
</span>
{{ end }}
{{ if .Params.categories }} / {{ end }}
{{ with .Params.tags }}
<span itemprop="keywords" class="tags text-base font-mono">
{{ range . }}
<a href="{{ . | printf "tags/%s" | relURL }}" class="m-1" rel="tag">#{{ . }}</a>
{{ end }}
</span>
{{ end }}
</h3>
{{ end }}
</section>
</header>
{{ end }}
{{ if not .IsHome }}
<hr class="block my-10 mx-auto max-w-xs h-px border-t border-black">
{{ end }}
<section itemprop="articleBody" class="content markdown">
<div itemprop="articleBody" class="content markdown">
{{ .Content }}
</section>
</div>
</article>
{{ end }}