Add comment system

This commit is contained in:
rubenwardy
2018-06-11 22:49:25 +01:00
parent 40aac38d43
commit b1c349cc35
10 changed files with 344 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}
Threads
{% endblock %}
{% block content %}
<h1>Threads</h1>
{% from "macros/threads.html" import render_threadlist %}
{{ render_threadlist(threads) }}
{% endblock %}