The bmannconsulting.com website
1---
2layout: page
3title: Authors 👤
4permalink: /authors/
5---
6
7<p style="padding: 1.5em 1em; background: #f5f7ff; border-radius: 25px;">
8 Authors and their <a href="/articles/" class="internal-link">articles</a>.
9</p>
10 <main>
11 {% assign postsByAuthor = site.notes | group_by_exp:"post", "post.author" %}
12
13 {% for author in postsByAuthor %}
14 {% if author.name %}
15 <h3 id="{{ author.name }}">{{ author.name }}</h3>
16 <ul>
17 {% for post in author.items %}
18 <li id="date-content" style="padding-bottom: 0.6em; list-style: none;"><a href="{{ post.link }}">{{ post.title }}</a>{% if post.published %}, published {{ post.published | date: "%B %Y"}}{% endif %} <a title="Local Permalink" href="{{ post.url }}" class="internal-link">#</a></li>
19 {% endfor %}
20 </ul>
21 {% endif %}
22 {% endfor %}
23
24 <br/>
25 <br/>
26 </main>