Compare commits
2 Commits
15399ffa6f
...
8ad3f5d455
Author | SHA1 | Date |
---|---|---|
|
8ad3f5d455 | |
|
aeacfdbb45 |
|
@ -1,6 +1,6 @@
|
||||||
FROM docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:0.0.1
|
FROM docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:0.0.1
|
||||||
|
|
||||||
LABEL version="0.0.3"
|
LABEL version="0.0.4"
|
||||||
LABEL image.author.name="Kameron Kenny"
|
LABEL image.author.name="Kameron Kenny"
|
||||||
LABEL image.author.email="kameron@localhost"
|
LABEL image.author.email="kameron@localhost"
|
||||||
LABEL description="A Jekyll site for kameronkenny.com."
|
LABEL description="A Jekyll site for kameronkenny.com."
|
||||||
|
|
31
_config.yml
31
_config.yml
|
@ -17,9 +17,9 @@ author-avatar: 09.jpg
|
||||||
# Contact links
|
# Contact links
|
||||||
#facebook: https://facebook.com/ # Add your Facebook handle
|
#facebook: https://facebook.com/ # Add your Facebook handle
|
||||||
#twitter: https://twitter.com/ # Add your Facebook handle
|
#twitter: https://twitter.com/ # Add your Facebook handle
|
||||||
#instagram: https://www.instagram.com/ # Add your Facebook handle
|
instagram: kkenny379
|
||||||
#pinterest: https://www.pinterest.com/ # Add your Facebook handle
|
##pinterest: https://www.pinterest.com/ # Add your Facebook handle
|
||||||
#
|
|
||||||
strava:
|
strava:
|
||||||
latest-rides:
|
latest-rides:
|
||||||
url: https://www.strava.com/athletes/30509534/latest-rides/df309ed4d8ee2aef0cabb44d018f31d494f71462
|
url: https://www.strava.com/athletes/30509534/latest-rides/df309ed4d8ee2aef0cabb44d018f31d494f71462
|
||||||
|
@ -35,18 +35,39 @@ strava:
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# Instagram Feed
|
# Instagram Feed
|
||||||
instafeed: false # To enable the instafeed, use the value true. To turn off use the value false.
|
instafeed: true # To enable the instafeed, use the value true. To turn off use the value false.
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# Google Analytics
|
# Google Analytics
|
||||||
google-analytics: # Add your identifier. For example UA-99631805-1.
|
google-analytics: UA-118953072-1
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# Newsletter
|
# Newsletter
|
||||||
#mailchimp: # Add your MailChimp form identifier. For example - blogenjoyfreedom.us16.list-manage.com/subscribe/post?u=cd56155d76ddeeb4c0bc4d080&id=7a526cd13e
|
#mailchimp: # Add your MailChimp form identifier. For example - blogenjoyfreedom.us16.list-manage.com/subscribe/post?u=cd56155d76ddeeb4c0bc4d080&id=7a526cd13e
|
||||||
|
|
||||||
|
# Currently Reading
|
||||||
|
favorite_books:
|
||||||
|
|
||||||
|
- name: "Extreme Ownership"
|
||||||
|
subtitle: "How U.S. Navy SEALs Lead and Win"
|
||||||
|
url: 'https://books.google.com/books?id=tpspDwAAQBAJ'
|
||||||
|
author: "Jocko Willink, Leif Babin"
|
||||||
|
- name: "Multipliers"
|
||||||
|
url: 'https://books.google.com/books?id=kF26e_S6l_cC'
|
||||||
|
author: "Liz Wiseman, Greg McKeown"
|
||||||
|
- name: "The Phoenix Project"
|
||||||
|
url: 'https://books.google.com/books?id=_An-CAAAQBAJ'
|
||||||
|
author: "Gene Kim, Kevin Behr, George Spafford"
|
||||||
|
|
||||||
|
currently_reading:
|
||||||
|
- name: "Be Data Analytical"
|
||||||
|
subtitle: "How to Use Analytics to Turn Data Into Value"
|
||||||
|
url: 'https://www.amazon.com/Be-Data-Analytical-Analytics-Value/dp/1398609285'
|
||||||
|
author: "Jordan Morrow"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#-------------------------------
|
#-------------------------------
|
||||||
# Build settings
|
# Build settings
|
||||||
|
|
18
about.md
18
about.md
|
@ -4,5 +4,19 @@ title: About
|
||||||
permalink: /about/
|
permalink: /about/
|
||||||
---
|
---
|
||||||
|
|
||||||
# Hello World
|
# Hey there, I'm Kameron Kenny
|
||||||
## Hello.
|
I am passionate about many things. Most notably, learning something new. I'm a big fan of live music and exploring cultures through food. I enjoy basketball, baseball, cycling, cooking, videography, photography, and making things. Technology got me where I am today. I love hearing about other people's perspectives, especially when they are different than mine. I believe the opportunity to give back to the community is a special gift that I am grateful to partake in. The school of life has tought me a lot of lessons that I try to carry forward for others to learn from. One of these days I'll start a podcast, but for now... I'll stick to this blog.
|
||||||
|
|
||||||
|
# Favorite Books
|
||||||
|
{% for book in site.favorite_books %}
|
||||||
|
---
|
||||||
|
## [{{ book.name }}]({{ book.url }})
|
||||||
|
Author: {{ book.author }}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
# Currently Reading
|
||||||
|
{% for book in site.currently_reading %}
|
||||||
|
---
|
||||||
|
## [{{ book.name }}]({{ book.url }})
|
||||||
|
Author: {{ book.author }}
|
||||||
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in New Issue