13 lines
352 B
HTML
13 lines
352 B
HTML
|
{{ define "main" -}}
|
||
|
<div class="post">
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ with .Content }}
|
||
|
<div class="index_content">
|
||
|
{{- . -}}
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
{{ if .Params.role }}
|
||
|
{{ partial "whole-page-fragments/team/team-section" (dict "team" (where .Site.Data.lide.lide "roles" "intersect" (slice .Params.role) )) }}
|
||
|
{{ end }}
|
||
|
{{- end }}
|