mondart.com/mondarth-com/themes/mondarth/layouts/tables/single.html

24 lines
946 B
HTML
Raw Normal View History

2024-07-13 11:25:02 +01:00
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
<div class="flex-l mt2 mw8 center">
<article class="flex-l flex-wrap justify-between mw8 center ph3">
<header class="mt4 w-100">
<h1 class="f1">
{{ .Title }}
</h1>
<div class="relative w-100 mb4 bg-white nested-copy-line-height">
<div class="bg-white mb3 pa4 gray overflow-hidden">
<div class="nested-links f5 lh-copy nested-copy-line-height">
{{ partial "session-details.html" . }}
</div>
</div>
</div>
</header>
<div class="nested-copy-line-height lh-copy {{ $.Param "post_content_classes" | default "serif"}} f4 nested-links {{ $.Param "text_color" | default "mid-gray" }} {{ cond (eq $.Site.Language.LanguageDirection "rtl") "pl4-l" "pr4-l" }} w-two-thirds-l">
{{ .Content }}
</div>
</article>
</div>
{{ end }}