Login
4 branches 0 tags
Ben (Desktop/Arch) Improved blob display 1ea4698 1 month ago 153 Commits
rubhub / templates / content_page.html
<!DOCTYPE html>
<html>
  <head>
    <title>{{ page_title }} - RubHub</title>
  </head>

  <body>
    {% include "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>