/me
This commit is contained in:
parent
d13ff4b3c6
commit
d17384cfe9
42
_data/socials.json
Normal file
42
_data/socials.json
Normal 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"
|
||||
}
|
||||
]
|
@ -170,3 +170,7 @@ blockquote p {
|
||||
transition: background 0s;
|
||||
|
||||
}
|
||||
|
||||
.social_front{
|
||||
width:25px;
|
||||
}
|
23
me.html
Normal file
23
me.html
Normal 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> {{social.username}}</h5>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
|
||||
|
||||
</div>
|
Loading…
x
Reference in New Issue
Block a user