add event single base page WIP

* this is just a beginning to work on further
__WORK IN PROGRESS__

Signed-off-by: Toshaan Bharvani <toshaan@vantosh.com>
jamesk-patch-1
Toshaan Bharvani 2 years ago
parent 602628c969
commit 4085a36db0

@ -0,0 +1,20 @@
{{ partial "header.html" . }}
{{ partial "navbar.html" . }}

{{ $eventdate := time (.Param "eventdate") }}
{{ $eventdate = $eventdate.Format "Monday, January 2, 2006" }}

<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">{{ $eventdate }} @ {{ .Param "eventplace" }}</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12 content wow fadeInBottom">{{ .Content }}</div>
</div>
</section>
</main>
{{ partial "footer.html" . }}
Loading…
Cancel
Save