diff options
| author | Jean-Pierre Appel <jeanpierre.appel01@gmail.com> | 2023-12-25 17:17:21 -0500 |
|---|---|---|
| committer | Jean-Pierre Appel <jeanpierre.appel01@gmail.com> | 2023-12-25 17:17:21 -0500 |
| commit | cc1220bfd794dff1fc28bd39cafb63c4b1093cf8 (patch) | |
| tree | 8d51983970fc62457ed97599d784cfa150b5c766 /layouts/utilities/single.html | |
| parent | a181759e4a108c35fcf6898abbf17f2a424d85dc (diff) | |
rewrite layouts
Diffstat (limited to 'layouts/utilities/single.html')
| -rw-r--r-- | layouts/utilities/single.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layouts/utilities/single.html b/layouts/utilities/single.html new file mode 100644 index 0000000..7c377f5 --- /dev/null +++ b/layouts/utilities/single.html @@ -0,0 +1,18 @@ +{{ define "header" }} + <h1>{{ .Title }}</h1> + <div class="links-container"> + {{ with .Params.github }} + {{ partial "links/github.html" . }} + {{ end }} + {{ with .Params.link }} + {{ partial "links/link.html" . }} + {{ end }} + {{ with .Params.site }} + {{ partial "links/site.html" . }} + {{ end }} + </div> +{{ end }} + +{{ define "footer" }} + {{ partial "meta-tag_nav.html" . }} +{{ end }} |
