68 lines
2.2 KiB
HTML
68 lines
2.2 KiB
HTML
<!--
|
|
Copyright 2020 Google LLC
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
{% if not node.subnodes %}
|
|
<div class="not-found">
|
|
No node found at [[{{node.uri}}]].
|
|
<br /><br />
|
|
If you <a href="https://flancia.org/go/agora">contributed a subnode</a> that mapped to '{{node.uri}}' in the Agora, this node would exist :)
|
|
<br /><br />
|
|
Try listing all <a href="/nodes">nodes</a> or perhaps <a href="/search">search</a>.
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if node.subnodes %}
|
|
<div class="node">
|
|
<span class="node-header"><strong>Node</strong> <a href="/node/{{node.uri}}">[[{{node.uri}}]]</a></span>
|
|
|
|
{% for subnode in node.subnodes %}
|
|
<div class="subnode">
|
|
<div class="subnode-header">
|
|
<span class="subnode-id"><strong>Subnode</strong> <a href="/@{{subnode.user}}/{{node.uri}}">[[{{node.uri}}@{{subnode.user}}]]</a></span>
|
|
<span class="subnode-links">by <a href="/@{{subnode.user}}">@{{subnode.user}}</a></span>
|
|
</div>
|
|
<br />
|
|
{{ subnode.render()|linkify|safe }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% for node in pull_nodes %}
|
|
<div class="node">
|
|
<span class="node-header"><strong>Pulled node</strong> <a href="/node/{{node.uri}}">[[{{node.uri}}]]</a></span>
|
|
|
|
{% for subnode in node.subnodes %}
|
|
<div class="subnode">
|
|
<div class="subnode-header">
|
|
<span class="subnode-id"><strong>Subnode</strong> <a href="/@{{subnode.user}}/{{node.uri}}">[[{{node.uri}}@{{subnode.user}}]]</a></span>
|
|
<span class="subnode-links">by <a href="/@{{subnode.user}}">@{{subnode.user}}</a></span>
|
|
</div>
|
|
<br />
|
|
{{ subnode.render()|linkify|safe }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% include "links.html" %}
|
|
|
|
{% include "node_search.html" %}
|
|
|
|
{% endblock %}
|