diff --git a/app/templates/user.html b/app/templates/user.html new file mode 100644 index 0000000..1f556d4 --- /dev/null +++ b/app/templates/user.html @@ -0,0 +1,41 @@ + + +{% extends "base.html" %} +{% block content %} +{% if readmes %} +
+{% for subnode in readmes %} + README by @{{user}} +{{ subnode.content|markdown|linkify|safe }} +{% endfor %} +
+{% endif %} + +
+

Subnodes by @{{user}}

+{% if not subnodes %} +No subnodes found for the given term or path. +

+Go back to /nodes? +{% endif %} + +{% for subnode in subnodes %} +{{subnode.wikilink}}
+{% endfor %} +
+ +{% endblock %}