The bmannconsulting.com website
1--- 2layout: default 3--- 4 5<article> 6 <div> 7 <h1>{{ page.title }}</h1> 8 </div> 9 10 <div id="notes-entry-container"> 11 <content> 12 {{ content }} 13 </content> 14 15 <side style="font-size: 0.9em"> 16 <div class="date"> 17 {% if page.section == 'archive' %}<div style="font-size: 1em;">This is part of the long term <a href="{{ '/archive/' | relative_link }}" class="internal-link">Archive</a>, originally published on <time>{{ page.date | date: "%B %-d, %Y" }}</time></div>{% else %}<div style="font-size: 1em">Originally published <time>{{ page.date | date: "%B %-d, %Y" }}</time></div>{% endif %} 18 </div> 19 <div class="meta"> 20 <p>Categories: {% for cat in page.categories %}<a href="/notes/{{ cat }}" class="internal-link">{{ cat }}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}</p> 21 <p>Tags: {% for tag in page.tags %}<a href="/notes/{{ tag }}" class="internal-link">{{ tag }}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}</p> 22 </div> 23 {% if page.backlinks.size > 0 %} 24 <h3 style="margin-bottom: 1em">Notes mentioning this blog post</h3> 25 <div style="display: grid; grid-gap: 1em; grid-template-columns: repeat(1fr);"> 26 {% for backlink in page.backlinks %} 27 <div class="backlink-box"> 28 <a class="internal-link" href="{{ site.baseurl }}{{ backlink.url }}{%- if site.use_html_extension -%}.html{%- endif -%}">{{ backlink.title }}</a><br> 29 <div style="font-size: 0.9em">{{ backlink.excerpt | strip_html | truncatewords: 20 }}</div> 30 </div> 31 {% endfor %} 32 </div> 33 {% else %} 34 35 <div style="font-size: 0.9em"> 36 {% comment %} 37 <p> 38 There are no notes linking to this blog post. 39 </p> 40 {% endcomment %} 41 </div> 42 {% endif %} 43 </side> 44 </div> 45</article> 46 47<div style="font-size: 0.8em">Last modified at <time>{{ page.last_modified_at | date: "%B %-d, %Y" }}</time></div> 48 49<hr>