The bmannconsulting.com website
1--- 2layout: page 3title: Code Repositories 💾 4permalink: /code/ 5--- 6 7<p style="padding: 1.5em 1em; background: #f5f7ff; border-radius: 25px;"> 8 Notes on the site with a link to a code repository. Usually refers to apps and other open source code. 9</p> 10 <main> 11 {% assign codenotes = site.notes %} 12 <ul> 13 {% for post in site.notes %} 14 {% if post.github %} 15 <li><a href="{{ post.url }}">{{ post.title }}</a> - <a href="{{ post.github }}">@{{ post.github | remove: "https://github.com/" }}</a> 16 </li> 17 {% elsif post.git %} 18 <li><a href="{{ post.url }}">{{ post.title }}</a> - <a href="{{ post.git }}">{{ post.git | remove: "https://" }}</a> 19 </li> 20 {% endif %} 21 {% endfor %} 22 </ul> 23 <br/> 24 <br/> 25 </main>