{{ define "title" }}{{ .Data.event.Title }}{{ end }} {{ define "content" }} {{ with .Data.event }}

{{ .Title }}

{{ TrustedMarkdown .Description }}
{{ if .Location }}

Location

{{ .Location }}
{{ end }}

Time

{{ .StartTime.Format "January 2 @ 3:04 PM" }} {{ if not .EndTime.IsZero }} to
{{ if .AllDay }} {{ .EndTime.Format "January 2" }} {{ else }} {{ .EndTime.Format "January 2 @ 3:04 PM" }} {{ end }} {{ end }}

Invited

{{ end }} {{ if and .LoggedIn .CurrentUser.Admin }}
edit event invite people
{{ end }}

Comments

{{ $idStr := printf "%d" .Data.event.ID }} {{ RenderComments .Request .Data.event.Title "event" $idStr }} {{ end }}