This repository has been archived on 2024-07-02. You can view files and clone it, but cannot push or open issues or pull requests.
theme/layouts/doc/single.html

13 lines
307 B
HTML
Raw Normal View History

2019-02-02 17:17:50 +01:00
{{ partial "header.html" . }}
2022-01-29 17:29:24 +01:00
<div class="max-w-screen-xl flex mx-auto lg:pt-8 flex-col lg:flex-row">
<div class="w-full lg:w-1/4">
2022-01-29 17:25:39 +01:00
{{ partial "menu" . }}
</div>
2022-01-29 17:29:24 +01:00
<article class="w-full lg:w-3/4 p-4 pt-6 lg:pt-2">
2022-01-29 17:25:39 +01:00
{{ partial "prose.html" .Content }}
2022-01-29 17:28:06 +01:00
</article>
2019-02-02 17:17:50 +01:00
</div>
{{ partial "footer.html" . }}