blob: b4564753d5fc94de2979609e9d40a04d5b45ba20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{#include base.html}
{#title}{page.title} — Benki Wiki{/title}
{#siteSection}Wiki{/siteSection}
{#wikiClass}this-page{/wikiClass}
{#nav}{#navbar siteSection="Wiki" /}
{#head}
<script type="module" src="/lib.js" defer></script>
<style type="text/css">
#warning-panel {
background-color: lightcoral;
font-style: italic;
}
</style>
{/head}
{#body}
<article id="wiki-page" data-page-title="{page.title}">
<header>
<div data-editable data-name="wiki-title">
<h1>{page.title}</h1>
</div>
<elix-expandable-panel id="warning-panel" role="alert"><div id="warning-text"></div></elix-expandable-panel>
</header>
<section id="wiki-page-content">
<div data-editable data-name="wiki-content" id="wiki-content">
{page.enrichedContent.raw}
</div>
</section>
<hr>
<footer>
<a href="/wiki/{page.title}/revisions">Page revisions</a>
</footer>
</article>
{/body}
{/include}
|