2020-11-07 14:34:48 +00:00
|
|
|
<!--
|
|
|
|
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 %}
|
2020-12-27 20:07:46 +00:00
|
|
|
|
|
|
|
{% if not node.subnodes %}
|
2020-12-21 12:04:00 +00:00
|
|
|
<div class="not-found">
|
2020-12-27 20:07:46 +00:00
|
|
|
No node found at [[{{node.uri}}]].
|
2020-11-07 14:34:48 +00:00
|
|
|
<br /><br />
|
2020-12-27 20:07:46 +00:00
|
|
|
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 :)
|
2020-11-07 14:34:48 +00:00
|
|
|
<br /><br />
|
2020-12-27 19:41:59 +00:00
|
|
|
Try listing all <a href="/nodes">nodes</a> or perhaps <a href="/search">search</a>.
|
2020-11-16 20:15:02 +00:00
|
|
|
</div>
|
2020-11-07 14:34:48 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2020-12-28 11:41:57 +00:00
|
|
|
{% if node.subnodes %}
|
2020-11-16 19:13:04 +00:00
|
|
|
<div class="node">
|
2020-12-27 19:41:59 +00:00
|
|
|
<span class="node-header"><strong>Node</strong> <a href="/node/{{node.uri}}">[[{{node.uri}}]]</a></span>
|
2020-11-16 19:13:04 +00:00
|
|
|
|
2020-12-27 19:41:59 +00:00
|
|
|
{% for subnode in node.subnodes %}
|
2020-11-16 18:45:31 +00:00
|
|
|
<div class="subnode">
|
2021-01-09 16:38:01 +00:00
|
|
|
<div class="subnode-header">
|
2021-01-09 17:26:13 +00:00
|
|
|
<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>
|
2021-01-09 16:38:01 +00:00
|
|
|
</div>
|
2021-01-09 17:26:13 +00:00
|
|
|
<br />
|
2021-01-09 16:38:01 +00:00
|
|
|
{{ subnode.render()|linkify|safe }}
|
2020-11-16 18:45:31 +00:00
|
|
|
</div>
|
2020-11-07 14:34:48 +00:00
|
|
|
{% endfor %}
|
2020-11-16 19:13:04 +00:00
|
|
|
</div>
|
2020-12-21 12:04:00 +00:00
|
|
|
{% endif %}
|
2020-11-10 21:48:20 +00:00
|
|
|
|
2020-12-27 19:08:01 +00:00
|
|
|
{% 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">
|
2021-01-09 17:12:12 +00:00
|
|
|
<div class="subnode-header">
|
2021-01-09 17:26:13 +00:00
|
|
|
<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>
|
2021-01-09 17:12:12 +00:00
|
|
|
</div>
|
2021-01-09 17:51:02 +00:00
|
|
|
<br />
|
2021-01-09 16:38:01 +00:00
|
|
|
{{ subnode.render()|linkify|safe }}
|
2020-12-27 19:08:01 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
2020-12-21 13:38:50 +00:00
|
|
|
{% include "links.html" %}
|
2020-12-20 21:06:37 +00:00
|
|
|
|
2021-01-02 19:29:07 +00:00
|
|
|
{% include "node_search.html" %}
|
|
|
|
|
2020-11-07 14:34:48 +00:00
|
|
|
{% endblock %}
|