Files
njump/wiki_event.templ
2024-07-25 17:05:42 +02:00

23 lines
612 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
templ wikiEventTemplate(params WikiPageParams) {
<!DOCTYPE html>
@eventPageTemplate(
"Wiki - " + params.WikiEvent.Title,
params.OpenGraphParams,
params.HeadParams,
params.Clients,
params.Details,
params.Event,
) {
<h1 class="flex text-2xl items-center">
<div class="inline-block px-2 mr-2 text-base bg-strongpink text-white rounded-md">Wiki <span class="text-base"></span></div> <div class="inline-block">{ params.WikiEvent.Title }</div>
</h1>
<!-- main content -->
<div dir="auto" class="leading-5" itemprop="articleBody">
@templ.Raw(params.Content)
</div>
}
}