2020-06-11 11:46:16 +00:00
|
|
|
{{- define "main" -}}
|
|
|
|
|
|
|
|
<article class="article">
|
|
|
|
|
|
|
|
{{ partial "page_header" . }}
|
|
|
|
|
|
|
|
<div class="article-container">
|
|
|
|
|
|
|
|
<div class="article-style">
|
|
|
|
{{ .Content }}
|
2021-09-23 22:45:26 +00:00
|
|
|
|
|
|
|
{{ if eq .Params.layout "evento" }}
|
|
|
|
<h3>Informação do evento</h3>
|
|
|
|
|
2023-03-31 16:46:28 +00:00
|
|
|
<p>
|
|
|
|
<strong>Data:</strong>
|
|
|
|
{{ partial "event-date" . }}
|
|
|
|
</p>
|
2021-09-23 22:45:26 +00:00
|
|
|
|
|
|
|
{{ with .Params.metadata.event.site }}
|
|
|
|
<p><strong>Website:</strong> <a href="{{ .url }}">{{ .title | or .url }}</a></p>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Params.metadata.event.location }}
|
|
|
|
<p><strong>Local:</strong> {{ . }}</p>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2020-06-11 11:46:16 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ partial "page_footer" . }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{{- end -}}
|