All checks were successful
Deploy Jekyll site to Cloudflare Pages / build (push) Successful in 2m54s
27 lines
558 B
HTML
27 lines
558 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% unless page.hide_title %}
|
|
<h1>{{ page.title }}</h1>
|
|
{% endunless %}
|
|
|
|
{{ content }}
|
|
|
|
<br />
|
|
|
|
{% if page.backlinks.size > 0 %}
|
|
<div class="backlink-box">
|
|
<h3>Notes mentioning this note</h3>
|
|
<ul class="no-bullets">
|
|
{% for backlink in page.backlinks %}
|
|
<li class="backlinks">
|
|
<a class="internal-link" href="{{ site.baseurl }}{{ backlink.url }}{%- if site.use_html_extension -%}.html{%- endif -%}">{{ backlink.title }}</a><br>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<br />
|