summaryrefslogtreecommitdiff
path: root/templates/wiki_page.html
blob: 87de1e43b7bbed48537d99e568dbbebf1614814d (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
<!DOCTYPE>
<html>
  <head>
    <link rel="stylesheet" type="text/css" href="/static/style.css">
    <link rel="stylesheet" type="text/css" href="/static/styles/wiki-sidebar.css">
    <link rel="stylesheet" type="text/css" href="/static/styles/wiki-content.css">
  </head>
  <body>
    <div class="min-h-screen w-full flex items-center flex-col">
      <div class="lg:w-1/2 w-full flex items-center flex-col">
        {{> header.html }}

        <!-- Header -->
        <div class="w-full p-2 mt-4 bg-gradient-to-t from-green-400 to-green-200">
          <h1 class="mx-4 text-xl font-zilla font-semibold">
            <i class="fa-solid fa-book"></i> Wiki
          </h1>
        </div>

        <!-- Wiki page -->
        <div class="w-full min-h-screen flex flex-col-reverse lg:flex-row">
          <!-- Sidebar -->
          <div class="wiki-sidebar flex flex-col lg:sticky lg:top-0 overflow-y-scroll px-6 lg:max-h-screen bg-gray-50">
            {{{ summary }}}
          </div>
          <!-- Content -->
          <div class="wiki-content">
            {{{ content }}}
          </div>
        </div>
    </div>

    {{> footer.html }}
  </body>
</html>