The bmannconsulting.com website
1<!DOCTYPE html>
2<html lang="en">
3 {% include head.html %}
4 <body>
5 <nav>{% include nav.html %}</nav>
6 <div class="wrapper">
7 <main>{{ content }}</main>
8 {% if page.comments %}
9 <BlueskyComments
10 uri="https://bsky.app/profile/bmann.ca/post/3lmbir26qnc2k"
11 author="bmann.ca"
12 commentFilters={[
13 BlueskyFilters.NoPins, // Hide pinned comments
14 BlueskyFilters.MinCharacterCountFilter(3), // Hide comments with less than 10 characters
15 ]}
16 onEmpty={
17 (details) => {
18 console.error('Failed to load comments:', details);
19 document.getElementById('bluesky-comments').innerHTML =
20 'No comments on this post yet. Details: ' + details.message;
21 }
22 }
23 }); />
24 {% endif %}
25
26 <footer>{% include footer.html %}</footer>
27 </div>
28
29 {% include link-previews.html wrapperQuerySelector="content" %}
30 {% include littlefoot.html %}{%comment %} Littlefoot footnotes {% endcomment %}
31 </body>
32</html>