Login
4 branches 0 tags
Ben (T14/NixOS) Improved flake 41eb128 11 days ago 252 Commits
rubhub / templates / content_page.html
<html>
  <head>
    <title>{{ page_title }} - RubHub</title>
  </head>

  <body>
    {% include "partials/sidebar.html" %}
    <main>
      <section>
        <div>
          <h1>{{ page_title }}</h1>
          <div class="card-grid">
            <div class="card">
              <div class="markdown">{{- content_html|safe -}}</div>
            </div>
          </div>
        </div>
      </section>
    </main>
  </body>

</html>