2023-01-30 17:03:30 -05:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
<article>
|
|
|
|
<div>
|
|
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
<time datetime="{{ page.last_modified_at | date_to_xmlschema }}">{% if page.type != 'pages' %}
|
|
|
|
Last updated on {{ page.last_modified_at | date: "%B %-d, %Y" }}
|
|
|
|
{% endif %}
|
|
|
|
</time>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="notes-entry-container">
|
|
|
|
<content>
|
|
|
|
{{ content }}
|
|
|
|
</content>
|
|
|
|
|
|
|
|
<side style="font-size: 0.9em">
|
2023-01-30 17:44:58 -05:00
|
|
|
<h3 style="margin-bottom: 1em">Pages mentioning this page</h3>
|
2023-01-30 17:03:30 -05:00
|
|
|
{% if page.backlinks.size > 0 %}
|
|
|
|
<div style="display: grid; grid-gap: 1em; grid-template-columns: repeat(1fr);">
|
|
|
|
{% for backlink in page.backlinks %}
|
|
|
|
<div class="backlink-box">
|
|
|
|
<a class="internal-link" href="{{ site.baseurl }}{{ backlink.url }}{%- if site.use_html_extension -%}.html{%- endif -%}">{{ backlink.title }}</a><br>
|
|
|
|
<div style="font-size: 0.9em">{{ backlink.excerpt | strip_html | truncatewords: 20 }}</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
|
|
|
|
<div style="font-size: 0.9em">
|
|
|
|
<p>
|
2023-01-30 17:44:58 -05:00
|
|
|
There are no pages linking to this page.
|
2023-01-30 17:03:30 -05:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</side>
|
|
|
|
</div>
|
2023-01-30 17:39:46 -05:00
|
|
|
</article>
|