7
1
mirror of https://gitlab.com/ansol/web-ansol.org.git synced 2024-10-18 14:03:08 +00:00
web-ansol.org/themes/academic/layouts/eventos/single.html

36 lines
862 B
HTML
Raw Normal View History

{{- define "main" -}}
{{ $image := (.Resources.ByType "image").GetMatch "*cover*" }}
<article class="article">
<h1>{{ .Title }}</h1>
2021-11-06 16:05:38 +00:00
{{ if and $image (not (eq .Params.showcover false)) }}
<img src="{{ $image.RelPermalink }}" alt="" class="featured-image" style="max-width: 100px;">
{{ end }}
<div class="article-container">
<div class="article-style">
{{ .Content }}
2021-11-06 16:05:38 +00:00
<h3>Informação do evento</h3>
2023-03-31 16:46:28 +00:00
<p>
<strong>Data:</strong>
{{ partial "event-date" . }}
</p>
2021-11-06 16:05:38 +00:00
{{ with .Params.metadata.event.site }}
<p><strong>Website:</strong> <a href="{{ .url }}">{{ .title | or .url }}</a></p>
{{ end }}
2021-11-06 16:05:38 +00:00
{{ with .Params.metadata.event.location }}
<p><strong>Local:</strong> {{ . }}</p>
{{ end }}
</div>
{{ partial "page_footer" . }}
</div>
</article>
{{- end -}}