1
This commit is contained in:
Evan Pratten 2021-01-04 10:01:04 -05:00
parent d13ff4b3c6
commit d17384cfe9
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3
3 changed files with 69 additions and 0 deletions

42
_data/socials.json Normal file
View File

@ -0,0 +1,42 @@
[
{
"name": "website",
"username": "retrylife.ca",
"icon": "fas fa-book-open",
"url": "https://retrylife.ca"
},
{
"name": "GitHub",
"username": "ewpratten",
"icon": "fab fa-github",
"url": "https://github.com/ewpratten"
},
{
"name": "Instagram",
"username": "evanpratten",
"icon": "fab fa-instagram",
"url": "https://www.instagram.com/evanpratten/"
},
{
"name": "Twitter",
"username": "ewpratten",
"icon": "fab fa-twitter",
"url": "https://twitter.com/ewpratten"
},
{
"name": "DeviantArt",
"username": "evanpratten",
"icon": "fab fa-deviantart",
"url": "https://www.deviantart.com/evanpratten"
},{
"name": "Snapchat",
"username": "slabs5225",
"icon": "fab fa-snapchat-ghost",
"url": "https://www.snapchat.com/add/slabs5225"
},{
"name": "QRZ",
"username": "va3zza",
"icon": "fas fa-broadcast-tower",
"url": "https://www.qrz.com/db/VA3ZZA"
}
]

View File

@ -169,4 +169,8 @@ blockquote p {
// box-shadow: 0 4px 2px rgba(0, 0, 0, 0.19); // box-shadow: 0 4px 2px rgba(0, 0, 0, 0.19);
transition: background 0s; transition: background 0s;
}
.social_front{
width:25px;
} }

23
me.html Normal file
View File

@ -0,0 +1,23 @@
---
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>&nbsp;&nbsp;&nbsp;{{social.username}}</h5>
</div>
</a>
{% endfor %}
</div>