40 lines
1.3 KiB
HTML
40 lines
1.3 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 %}
|
|
<div class="message">
|
|
No subnode found matching '{{subnode}}'.
|
|
<br /><br />
|
|
Try listing <a href="/subnodes">subnodes</a> or perhaps <a href="/search">search</a>.
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if subnode %}
|
|
<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> in node <a href="/node/{{subnode.wikilink}}">[[{{subnode.wikilink}}]]</a></span>
|
|
{{ subnode.content|markdown|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 %}
|
|
|
|
{% endblock %}
|