24 lines
946 B
HTML
24 lines
946 B
HTML
{{ 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 }}
|