23 lines
586 B
HTML
23 lines
586 B
HTML
---
|
|
title: Social Links
|
|
description: This page contains links to places I can be found around the web
|
|
layout: page
|
|
backing_img: /assets/images/pr_monochromatic.svg
|
|
backing_scalar: "height:90%;"
|
|
---
|
|
|
|
<div class="list-group" id="posts">
|
|
|
|
{% for social in site.data.socials %}
|
|
|
|
<a href="{{social.url}}" class="list-group-item list-group-item-action" title="{{social.name}}">
|
|
<div class="d-flex w-100 justify-content-between">
|
|
<h5 class="mb-1"><i class="{{social.icon}} social_front"></i> {{social.username}}</h5>
|
|
</div>
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div> |