stub graph

This commit is contained in:
Garry Ing
2021-03-15 15:49:03 -04:00
parent 4b4e09d5f9
commit ce40b32bec
23 changed files with 113 additions and 29 deletions

View File

@ -12,18 +12,18 @@ layout: default
</div>
<div id="notes-entry-container">
<div class="note-contents">
<div class="note-contents lh-copy">
{{ content }}
</div>
<side style="font-size: 0.9em">
<h3 style="margin-bottom: 1em">Notes mentioning this note</h3>
<side>
<h3>Notes mentioning this note</h3>
{% if page.backlinks.size > 0 %}
<div style="display: grid; grid-gap: 1em; grid-template-columns: repeat(1fr);">
<div>
{% for backlink in page.backlinks %}
<div class="backlink-box">
<a class="internal-link" href="{{ backlink.url | relative_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>
<a class="internal-link b" href="{{ backlink.url | relative_url }}{%- if site.use_html_extension -%}.html{%- endif -%}">{{ backlink.title }}</a><br>
<div class="lh-copy">{{ backlink.excerpt | strip_html | truncatewords: 20 }}</div>
</div>
{% endfor %}
</div>