66 lines
2.2 KiB
HTML
66 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 subnode and not node.subnodes %}
|
|
<div class="not-found">
|
|
No subnodes matching your query.
|
|
<br /><br />
|
|
Try going up to node <a href="/node/{{node.uri}}">[[{{node.uri}}]]</a> or perhaps <a href="/search">search</a>.
|
|
</div>
|
|
{% endif %}
|
|
|
|
<!-- the new subnode route uses this, actually receiving a node whose subnodes are partial -->
|
|
{% if node %}
|
|
{% for subnode in node.subnodes %}
|
|
<div class="subnode">
|
|
<div class="subnode-header">
|
|
<span><strong>Subnode</strong> <a href="/@{{subnode.user}}/{{node.uri}}">[[{{node.uri}}@{{subnode.user}}]]</a></span> in <a href="/node/{{subnode.wikilink}}">[[{{subnode.wikilink}}]]</a></span>
|
|
<span class="subnode-links">by <a href="/@{{subnode.user}}">@{{subnode.user}}</a></span>
|
|
<br />
|
|
</div>
|
|
{{ subnode.render()|linkify|safe }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="links">
|
|
<div class="backlinks">
|
|
<span class="backlinks-header">To see links, go up to node <a href="/node/{{node.uri}}">[[{{node.uri}}]]</a>.</span>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<!-- end new subnode route -->
|
|
|
|
<!-- old_subnode uses this -->
|
|
{% if subnode %}
|
|
<div class="subnode">
|
|
<span class="subnode-header"><strong>Subnode</strong> <a href="/{{subnode.uri}}">[[{{subnode.uri}}]]</a> by <a href="/@{{subnode.user}}">@{{subnode.user}}</a> in node <a href="/node/{{subnode.wikilink}}">[[{{subnode.wikilink}}]]</a></span>
|
|
{{ subnode.render()|linkify|safe }}
|
|
</div>
|
|
<div class="links">
|
|
<div class="backlinks">
|
|
<span class="backlinks-header">To see links, go up to node <a href="/node/{{subnode.wikilink}}">[[{{subnode.wikilink}}]]</a>.</span>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endif %}
|
|
<!-- end: old_subnode uses this -->
|
|
|
|
{% endblock %}
|