49 lines
1.6 KiB
HTML
49 lines
1.6 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 subnodes %}
|
|
<div class="message">
|
|
No node found at [[{{wikilink}}]].
|
|
<br /><br />
|
|
If you <a href="https://flancia.org/go/agora">contributed a subnode</a> named '{{wikilink}}' to the Agora, this node would exist :)
|
|
<br /><br />
|
|
Try listing <a href="/nodes">nodes</a> or perhaps <a href="/search">search</a>.
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if subnodes %}
|
|
<div class="node">
|
|
<span class="node-header"><strong>Node</strong> <a href="/node/{{wikilink}}">[[{{wikilink}}]]</a></span>
|
|
|
|
{% for subnode in subnodes %}
|
|
<div class="subnode">
|
|
<span class="subnode-header"><strong>Subnode</strong> <a href="{{subnode.url}}">{{subnode.uri}}</a> by <a href="/@{{subnode.user}}">@{{subnode.user}}</a></span>
|
|
{{ subnode.content|markdown|linkify|safe }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="backlinks">
|
|
<span class="backlinks-header"><strong>Backlinks</strong></span><br />
|
|
{% for subnode in backlinks %}
|
|
<a href="{{subnode.url}}">{{subnode.wikilink}}</a> by <a href="/@{{subnode.user}}">@{{subnode.user}}</a><br />
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|