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-11-10 21:48:20 +00:00
|
|
|
{% if not subnodes %}
|
|
|
|
No node found for '{{wikilink}}'.
|
2020-11-07 14:34:48 +00:00
|
|
|
<br /><br />
|
2020-11-10 21:48:20 +00:00
|
|
|
If you <a href="https://flancia.org/go/agora">contributed a subnode</a> named '{{wikilink}}' to the Agora, this node would not be empty :)
|
2020-11-07 14:34:48 +00:00
|
|
|
<br /><br />
|
|
|
|
Go back to <a href="/nodes">/nodes</a>?
|
|
|
|
{% endif %}
|
|
|
|
|
2020-11-10 21:48:20 +00:00
|
|
|
{% for subnode in subnodes %}
|
2020-11-14 21:00:08 +00:00
|
|
|
From <a href="/@{{subnode.user}}">@{{subnode.user}}</a>: <a href="{{subnode.url}}">{{subnode.uri}}</a><br />
|
2020-11-10 21:48:20 +00:00
|
|
|
{{ subnode.content|markdown|linkify|safe }}
|
2020-11-07 14:34:48 +00:00
|
|
|
<hr />
|
|
|
|
{% endfor %}
|
2020-11-10 21:48:20 +00:00
|
|
|
|
|
|
|
<br />
|
2020-11-07 14:34:48 +00:00
|
|
|
<em>Backlinks:</em><br />
|
2020-11-10 21:48:20 +00:00
|
|
|
{% for subnode in backlinks %}
|
|
|
|
{{ subnode.uri }}: <a href="{{subnode.url}}">{{subnode.wikilink}}</a><br />
|
2020-11-07 14:34:48 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endblock %}
|