Something went wrong. Try again.
The bmannconsulting.com website
Something went wrong. Try again.
792 B · 25 lines
HTML
at commit 94de6376
1234567891011121314151617181920212223242526---layout: pagetitle: Code Repositories 💾permalink: /code/---
<p style="padding: 1.5em 1em; background: #f5f7ff; border-radius: 25px;"> Notes on the site with a link to a code repository. Usually refers to apps and other open source code.</p> <main> {% assign codenotes = site.notes %} <ul> {% for post in site.notes %} {% if post.github %} <li><a href="{{ post.url }}">{{ post.title }}</a> - <a href="{{ post.github }}">@{{ post.github | remove: "https://github.com/" }}</a> </li> {% elsif post.git %} <li><a href="{{ post.url }}">{{ post.title }}</a> - <a href="{{ post.git }}">{{ post.git | remove: "https://" }}</a> </li> {% endif %} {% endfor %} </ul> <br/> <br/> </main>