29 lines
469 B
HTML
29 lines
469 B
HTML
|
{{- /*
|
||
|
Displays main content for an item
|
||
|
|
||
|
@params pc Page context
|
||
|
@params sc Site context
|
||
|
*/
|
||
|
-}}
|
||
|
|
||
|
|
||
|
<!-- Validation -->
|
||
|
|
||
|
{{- if ( not ( isset . "sc" ) ) -}}
|
||
|
{{- errorf "No site context received" -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- if ( not ( isset . "pc" ) ) -}}
|
||
|
{{- errorf "No page context received (%q)" .sc.Page.File.Dir -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
|
||
|
<!-- Rendering -->
|
||
|
|
||
|
<section
|
||
|
class="e-content article-body__content"
|
||
|
itemprop="articleBody"
|
||
|
>
|
||
|
{{ .pc.Content }}
|
||
|
</section>
|