You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openpower.foundation/themes/openpowerfoundation/layouts/events/single.html

24 lines
788 B
HTML

{{ partial "header.html" . }}
{{ partial "navbar.html" . }}
<main id="main">
<div class="container-fluid">
<div class="section-header">
<div class="col-lg-12 content wow text-center">
<h1 class="section-title">{{ .Title }}</h1>
<h3 class="section-description">
{{ $eventdates := .Param "eventdates" }}
{{ if $eventdates.till }}
From {{ (time $eventdates.from).Format "Monday, January 2, 2006" }} till {{ (time $eventdates.till).Format "Monday, January 2, 2006" }}
{{ else }}
{{ (time $eventdates.from).Format "Monday, January 2, 2006" }}
{{ end }}
&nbsp;@&nbsp;{{ .Param "eventplace" }}</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12 content wow fadeInBottom">{{ .Content }}</div>
</div>
</section>
</main>
{{ partial "footer.html" . }}