1
Fork 0
theorangeone.net-legacy/layouts/partials/content.html

16 lines
449 B
HTML
Raw Normal View History

2017-10-27 22:56:44 +01:00
{{ if .Params.image }}
2017-11-12 12:49:50 +00:00
<div class="mb-3 image header-image" data-image="{{ .Params.image }}"></div>
2017-10-27 22:56:44 +01:00
{{ end }}
<h1 class="display-5">{{ .Title }}</h1>
2017-11-10 23:08:50 +00:00
<h5 class="my-3">{{ partial "subtitle.html" . }}</h5>
<p>{{ partial "content-details.html" . }}</p>
2017-10-27 22:56:44 +01:00
<hr />
<div class="content mt-3">
2017-11-12 14:42:21 +00:00
{{ if .TableOfContents }}
2017-12-22 16:32:01 +00:00
<div class="float-lg-right ml-lg-3 mb-2 bg-light p-3">
2017-11-12 14:42:21 +00:00
{{ .TableOfContents }}
</div>
{{ end }}
2017-10-27 22:56:44 +01:00
{{ .Content }}
</div>