aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/generic_gn_docs.html
blob: 57723f0b4d9a05dfa1fb0bcf53342f0d8e5872ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}
{% block title %}{{ file_title|capitalize }}{% endblock %}
{% block css %}<link rel="stylesheet" type="text/css" href="/static/new/css/markdown.css" />{% endblock %}
{% block content %}
    <div class="github-btn-container">
        <div class="github-btn">
            <a href="/editor/edit?file-path={{ file_path }}">
                Edit Text
                <img src="/static/images/edit.png">
            </a>
        </div>
    </div>
    <div id="markdown" class="container">{{ rendered_markdown|safe }}</div>
{% endblock %}