The bmannconsulting.com website
1--- 2layout: page 3title: Blog 🖊 4permalink: /blog/ 5--- 6 7<p style="padding: 1.5em 1em; background: #f5f7ff; border-radius: 25px;"> 8 Blog posts from 2023 to present day. The <a href="https://blog.bmannconsulting.com">personal blog</a> has more frequent micro posts, and the full archive is at <a href="https://2023.bmannconsulting.com">2023.bmannconsulting.com</a>. 9</p> 10 11 12 13 <main> 14 {% assign postsByYear = 15 site.posts | group_by_exp:"post", "post.date | date: '%Y'" %} 16 17 {% for year in postsByYear %} 18 <h3 id="{{ year.name }}">{{ year.name }}</h3> 19 <ul> 20 {% for post in year.items %} 21 {% if post.title == 'Migration' %} 22 {% break %} 23 {% endif %} 24 {% unless post.section == 'journal' %} 25 <li id="date-content" style="padding-bottom: 0.6em; list-style: none;"><a href="{{ post.url }}" class="internal-link">{{ post.title }}</a></li> 26 {% endunless %} 27 {% endfor %} 28 </ul> 29 {% if year.name == '2012' %} 30 {% break %} 31 {% endif %} 32 {% endfor %} 33 34 <br/> 35 <br/> 36 </main>