The bmannconsulting.com website
1---
2layout: default
3---
4
5<article>
6 <div>
7 <h1 style="text-transform:capitalize;">{{ page.title }}</h1>
8 {% if page.link %}
9 <strong><a href="{{ page.link }}">{{ page.link | remove: "https://" | truncate: 42 }}</a></strong>{% if page.author %}, by {{ page.author }}{% endif %}{% if page.published %}, {{ page.published | date: "%B %-d, %Y" }}{% endif %}<br />
10 {% elsif page.wikipedia %}
11 <strong>wikipedia:</strong> <a href="{{ page.wikipedia }}">{{ page.wikipedia | remove: "https://" | truncate: 42 }}</a><br />
12 {% endif %}
13
14 {% unless page.published %}
15 <time datetime="{{ page.last_modified_at | date_to_xmlschema }}">
16 Last updated on {{ page.last_modified_at | date: "%B %-d, %Y" }}
17 </time>
18 {% endunless %}
19
20 <ul>
21 {% if page.github %}<li><strong>github:</strong> <a href="{{ page.github }}">@{{ page.github | remove: "https://github.com/" }}</a></li>{% endif %}
22 {% if page.git %}<li><strong>git:</strong> <a href="{{ page.git }}">{{ page.git | remove: "https://" }}</a></li>{% endif %}
23 {% if page.ATProtocol %}<li><strong>🦋</strong><a href="{{ page.ATProtocol }}">{{ page.ATProtocol | remove: "https://bsky.app/profile/" | prepend: "@" }}</a></li>{% endif %}
24 {% if page.ActivityPub %}<li><strong>🐘</strong><a href="{{ page.ActivityPub }}">{{ page.ActivityPub | remove: "https://" }}</a></li>{% endif %}
25 {% if page.twitter %}<li><strong>𝕏</strong> <a href="{{ page.twitter }}">{{ page.twitter | remove: "https://twitter.com/" | prepend: "@" }}</a></li>{% endif %}
26 {% if page.linkedin %}<li><strong>👤</strong><a href="{{ page.linkedin }}">{{ page.linkedin | remove: "https://" }}</a></li>{% endif %}
27
28 </ul>
29
30 </div>
31
32 <div id="notes-entry-container">
33 <content>
34 {{ content }}
35 </content>
36
37 <side style="font-size: 0.9em">
38 <h3 style="margin-bottom: 1em">Notes mentioning this note</h3>
39 {% if page.backlinks.size > 0 %}
40 <div style="display: grid; grid-gap: 1em; grid-template-columns: repeat(1fr);">
41 {% for backlink in page.backlinks %}
42 <div class="backlink-box">
43 <a class="internal-link" href="{{ site.baseurl }}{{ backlink.url }}{%- if site.use_html_extension -%}.html{%- endif -%}">{{ backlink.title }}</a><br>
44 <div style="font-size: 0.9em">{{ backlink.excerpt | strip_html | truncatewords: 20 }}</div>
45 </div>
46 {% endfor %}
47 {% if page.seed %}
48 <div class="backlink-box" style="background-color: #fff;">
49 Original article <a href="{{ page.link }}">{{ page.title }}</a>, by {{ page.author }}. <a href="{{ page.noteslink }}" class="noteslink" target="_notes">{{ page.title }}</a>
50 </div>
51 {% endif %}
52 </div>
53 {% else %}
54
55 <div style="display: grid; grid-gap: 1em; grid-template-columns: repeat(1fr);">
56 <div class="backlink-box" style="background-color: #fff;">
57 View related content on notes.bmannconsulting.com/<a href="{{ site.tags_url }}/{{ page.title }}" target="_notes">{{ page.title }}</a>
58 </div>
59 <div class="backlink-box" style="background-color: #fff;">
60 Browse the <a href="{{ site.baseurl }}/notes/" class="internal-link">Local Notes Graph »</a>
61 </div>
62 </div>
63 {% endif %}
64 </side>
65 </div>
66</article>