change theme again :D

This commit is contained in:
naoufal zerai
2022-08-18 15:20:15 -04:00
parent dee5809c1a
commit 5dba10766d
287 changed files with 28330 additions and 1506 deletions

View File

@@ -0,0 +1,20 @@
{{- define "main" -}}
{{- $paginator := .Paginator -}}
{{- $title := T .Title -}}
{{- if not $title -}}
{{- $title = .Title -}}
{{- end -}}
<section class="article header"><h1>{{- $title -}}</h1></section>
{{- if .Content -}}
<article class="article markdown-body">
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
{{- .Content -}}
</article>
{{- end -}}
<!-- Ranges through content/posts/*.md -->
{{- partial "note-list.html" $paginator -}}
{{- partial "pagination.html" $paginator -}}
{{- end -}}