{% extends "base.html" %} {% block content %} {% if not node.subnodes %}
No node found at [[{{node.uri}}]].

If you contributed a subnode that mapped to '{{node.uri}}' in the Agora, this node would exist :)

Try listing all nodes or perhaps search.
{% endif %} {% if node.subnodes %}
Node [[{{node.uri}}]] {% for subnode in node.subnodes %}
Subnode {{subnode.uri}} by @{{subnode.user}} {{ subnode.content|markdown|linkify|safe }}
{% endfor %}
{% endif %} {% for node in pull_nodes %}
Pulled node [[{{node.uri}}]] {% for subnode in node.subnodes %}
Subnode {{subnode.uri}} by @{{subnode.user}} {{ subnode.content|markdown|linkify|safe }}
{% endfor %}
{% endfor %} {% include "links.html" %} {% include "node_search.html" %} {% endblock %}