Add instagram to socials
This commit is contained in:
parent
8dead98e0b
commit
6265aea51c
@ -17,6 +17,7 @@ ga_analytics: UA-74118570-2
|
|||||||
|
|
||||||
# Social
|
# Social
|
||||||
twitter_username: ewpratten
|
twitter_username: ewpratten
|
||||||
|
insta_username: evanpratten
|
||||||
github_username: ewpratten
|
github_username: ewpratten
|
||||||
devrant_username: ewpratten
|
devrant_username: ewpratten
|
||||||
gitlab_username: ewpratten
|
gitlab_username: ewpratten
|
||||||
@ -42,6 +43,9 @@ collections:
|
|||||||
|
|
||||||
highlighter: rouge
|
highlighter: rouge
|
||||||
|
|
||||||
|
sass:
|
||||||
|
sass_dir: _sass
|
||||||
|
|
||||||
plugins:
|
plugins:
|
||||||
- jekyll-feed
|
- jekyll-feed
|
||||||
- jekyll-redirect-from # https://github.com/jekyll/jekyll-redirect-from
|
- jekyll-redirect-from # https://github.com/jekyll/jekyll-redirect-from
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
|
||||||
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||||
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/main.css">
|
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/main.css">
|
||||||
|
<!-- <link rel="stylesheet" href="{{site.baseurl}}/assets/css/dark.css"> -->
|
||||||
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/github-syntax.css">
|
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/github-syntax.css">
|
||||||
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/fontawesome.css">
|
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/fontawesome.css">
|
||||||
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,400i|IBM+Plex+Sans:100,100i,400,400i,700,700i" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,400i|IBM+Plex+Sans:100,100i,400,400i,700,700i" rel="stylesheet">
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<div class="list-group" id="posts">
|
<div class="list-group" id="posts">
|
||||||
<a href="#posts" class="list-group-item list-group-item-action list-group-item-dark">Featured
|
<a href="#posts" class="feature list-group-item list-group-item-action list-group-item-dark ">Featured
|
||||||
Post</a>
|
Post</a>
|
||||||
|
|
||||||
{% assign i = 0 %}
|
{% assign i = 0 %}
|
||||||
|
4
about.md
4
about.md
@ -38,12 +38,12 @@ The following is my key history:
|
|||||||
I exist in various places around the internet. Mainly:
|
I exist in various places around the internet. Mainly:
|
||||||
|
|
||||||
- [Twitter](https://twitter.com/{{site.twitter_username}})
|
- [Twitter](https://twitter.com/{{site.twitter_username}})
|
||||||
|
- [Instagram](https://www.instagram.com/((site.insta_username)))
|
||||||
|
- <a data-toggle="modal" data-target="#snapcode" href="">Snapchat</a>
|
||||||
- <a data-toggle="modal" data-target="#devrant-disclaimer" href="">devRant</a>
|
- <a data-toggle="modal" data-target="#devrant-disclaimer" href="">devRant</a>
|
||||||
- [GitHub](https://github.com/{{site.github_username}})
|
- [GitHub](https://github.com/{{site.github_username}})
|
||||||
- [GitLab](https://gitlab.com/{{site.gitlab_username}})
|
- [GitLab](https://gitlab.com/{{site.gitlab_username}})
|
||||||
- [RetryLife Git](https://git.retrylife.ca/{{site.rtlgit_username}})
|
|
||||||
- [Keybase](https://keybase.com/{{site.keybase_username}})
|
- [Keybase](https://keybase.com/{{site.keybase_username}})
|
||||||
- <a data-toggle="modal" data-target="#snapcode" href="">Snapchat</a>
|
|
||||||
|
|
||||||
## My gear
|
## My gear
|
||||||
Currently, I use the following hardware:
|
Currently, I use the following hardware:
|
||||||
|
57
assets/css/dark.css
Normal file
57
assets/css/dark.css
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
/* Colors */
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--bg-color: rgb(29, 33, 48);
|
||||||
|
--content-bg: rgb(35, 41, 55);
|
||||||
|
--panel-bg: rgb(46, 53, 74);
|
||||||
|
--highlight-clr: rgb(39, 232, 167);
|
||||||
|
--text-clr: rgb(228, 240, 252);
|
||||||
|
--heading-clr: rgb(81, 99, 119);
|
||||||
|
--link-clr: rgb(49, 174, 132);
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: var(--bg-color);
|
||||||
|
color: var(--text-clr);
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
color: var(--heading-clr);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container, .navbar-dark {
|
||||||
|
background-color: var(--content-bg) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profile {
|
||||||
|
border-color: var(--content-bg) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.site-info {
|
||||||
|
background-color: var(--content-bg) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-group, .list-group-item {
|
||||||
|
background-color: var(--panel-bg) !important;
|
||||||
|
color: var(--text-clr) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-group, .list-group-item h5{
|
||||||
|
color: var(--link-clr) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feature{
|
||||||
|
background-color: var(--heading-clr) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
color: var(--highlight-clr) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: var(--link-clr);
|
||||||
|
}
|
||||||
|
|
||||||
|
a::hover {
|
||||||
|
color: var(--highlight-clr) !important;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user