mirror of
https://github.com/ItsDrike/itsdrike.com.git
synced 2024-11-10 05:59:41 +00:00
15 lines
277 B
HTML
15 lines
277 B
HTML
<h1>{{ .Title }}</h1>
|
|
{{ if .IsPage }}
|
|
<p>{{ partial "content-details.html" . }}</p>
|
|
{{ end }}
|
|
<hr>
|
|
|
|
<div class="content">
|
|
{{ if .TableOfContents }}
|
|
<div class="content">
|
|
{{ .TableOfContents }}
|
|
</div>
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</div>
|