layout and things
This commit is contained in:
parent
cd6b80224f
commit
65f34e020d
13
_config.yml
13
_config.yml
|
@ -19,16 +19,25 @@ linkedin_username: kameronkenny
|
||||||
google_analytics: "UA-118953072-1"
|
google_analytics: "UA-118953072-1"
|
||||||
|
|
||||||
favorite_books:
|
favorite_books:
|
||||||
- name: "Extreme Ownership: How U.S. Navy SEALs Lead and Win"
|
- name: "Extreme Ownership"
|
||||||
|
subtitle: "How U.S. Navy SEALs Lead and Win"
|
||||||
url: 'https://books.google.com/books?id=tpspDwAAQBAJ'
|
url: 'https://books.google.com/books?id=tpspDwAAQBAJ'
|
||||||
|
author: "Jocko Willink, Leif Babin"
|
||||||
- name: "Multipliers"
|
- name: "Multipliers"
|
||||||
url: 'https://books.google.com/books?id=kF26e_S6l_cC'
|
url: 'https://books.google.com/books?id=kF26e_S6l_cC'
|
||||||
|
author: "Liz Wiseman, Greg McKeown"
|
||||||
- name: "The Phoenix Project"
|
- name: "The Phoenix Project"
|
||||||
url: 'https://books.google.com/books?id=_An-CAAAQBAJ'
|
url: 'https://books.google.com/books?id=_An-CAAAQBAJ'
|
||||||
|
author: "Gene Kim, Kevin Behr, George Spafford"
|
||||||
|
|
||||||
currently_reading:
|
currently_reading:
|
||||||
- name: "The Captain Class: A New Theory on Leadership"
|
- name: "The Captain Class"
|
||||||
|
subtitle: "A New Theory on Leadership"
|
||||||
url: 'https://books.google.com/books?id=pKD4DAAAQBAJ'
|
url: 'https://books.google.com/books?id=pKD4DAAAQBAJ'
|
||||||
|
author: "Sam Walker"
|
||||||
|
|
||||||
|
work_disclaimer: "This site contains my thoughts and opinions, and doesn't reflect those of the company I work for."
|
||||||
|
copyright: "Copyright 2019, Kameron Kenny"
|
||||||
|
|
||||||
# Build settings
|
# Build settings
|
||||||
markdown: kramdown
|
markdown: kramdown
|
||||||
|
|
|
@ -1,30 +1,34 @@
|
||||||
|
<footer>
|
||||||
<div class="site-footer">
|
<div class="site-footer">
|
||||||
<div class="wrapper">
|
<div class="footer-content">
|
||||||
<span class="footer-heading">{{ site.title }}</span><br />
|
<span class="footer-heading">{{ site.title }}</span><br />
|
||||||
|
|
||||||
<a href="{{site.github.owner_url }}">Github</a><br />
|
<a href="{{site.github.owner_url }}"><img width="25px" src="/assets/images/octocat.jpg"> Github</a><br />
|
||||||
{% if site.twitter_username %}
|
{% if site.twitter_username %}
|
||||||
<a href="https://twitter.com/{{ site.twitter_username }}">Twitter</a><br />
|
<a href="https://twitter.com/{{ site.twitter_username }}"><img width="25px" src="/assets/images/twitter.png"> Twitter</a><br />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if site.linkedin_username %}
|
{% if site.linkedin_username %}
|
||||||
<a href="https://linkedin.com/in/{{ site.linkedin_username }}">LinkedIn</a><br />
|
<a href="https://linkedin.com/in/{{ site.linkedin_username }}"><img width="25px" src="/assets/images/linkedin.png"> LinkedIn</a><br />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
<div class="wrapper">
|
|
||||||
<!---
|
|
||||||
<p>{{ site.description | default: site.github.project_tagline }}</p>
|
|
||||||
-->
|
|
||||||
<p>
|
|
||||||
|
|
||||||
</p>
|
<p></p>
|
||||||
<span class="credits left">Project maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></span><br />
|
|
||||||
<span class="credits right">Hosted on GitHub Pages</span>
|
{% if site.copyright %}
|
||||||
|
<div class="copyright">
|
||||||
|
{{ site.copyright }}
|
||||||
</div>
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if site.work_disclaimer %}
|
||||||
|
<div class="disclaimer">
|
||||||
|
{{ site.work_disclaimer }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
{% if site.google_analytics %}
|
{% if site.google_analytics %}
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<body>
|
||||||
<div id="header">
|
<div id="header">
|
||||||
<div id="title" class="topnav">
|
<div id="title" class="topnav">
|
||||||
<a href="{{ site.url }}">{{ site.title | default: site.github.repository_name }}</a>
|
<a href="{{ site.url }}">{{ site.title | default: site.github.repository_name }}</a>
|
||||||
|
@ -9,6 +10,3 @@
|
||||||
</div>
|
</div>
|
||||||
</div><!-- end header -->
|
</div><!-- end header -->
|
||||||
|
|
||||||
<div class="wrapper">
|
|
||||||
<section>
|
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
{% include head.html %}
|
{% include head.html %}
|
||||||
<body>
|
|
||||||
{% include header.html %}
|
{% include header.html %}
|
||||||
|
<div class="wrapper">
|
||||||
|
<section>
|
||||||
{{ content }}
|
{{ content }}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% include footer.html %}
|
{% include footer.html %}
|
||||||
|
|
|
@ -1,10 +1,4 @@
|
||||||
{% include head.html %}
|
---
|
||||||
<body>
|
layout: default
|
||||||
{% include header.html %}
|
---
|
||||||
{{ content }}
|
{{ content }}
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% include footer.html %}
|
|
||||||
|
|
14
about.md
14
about.md
|
@ -15,13 +15,19 @@ My current focus is leading a large distributed team on a journey into Infrastru
|
||||||
|
|
||||||
## Favorite Books
|
## Favorite Books
|
||||||
{% for book in site.favorite_books %}
|
{% for book in site.favorite_books %}
|
||||||
- _[{{ book.name }}]({{ book.url }})_
|
<div class="book">
|
||||||
|
[{{ book.name }}]({{ book.url }}) <br />
|
||||||
|
_[{{ book.subtitle }}]({{ book.url }})_ <br />
|
||||||
|
By: {{ book.author }}
|
||||||
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
## Currently Reading
|
## Currently Reading
|
||||||
{% for book in site.currently_reading %}
|
{% for book in site.currently_reading %}
|
||||||
- _[{{ book.name }}]({{ book.url }})_
|
<div class="book">
|
||||||
|
[{{ book.name }}]({{ book.url }}) <br />
|
||||||
|
_[{{ book.subtitle }}]({{ book.url }})_ <br />
|
||||||
|
By: {{ book.author }}
|
||||||
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
#### Disclaimer
|
|
||||||
_I work for a large company. This site contains my thoughts and opinions, and doesn't necessarily reflect the company I work for._
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
.topnav {
|
.topnav {
|
||||||
background-color: #333;
|
background-color: #333;
|
||||||
|
max-width: 750px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Style the links inside the navigation bar */
|
/* Style the links inside the navigation bar */
|
||||||
|
@ -29,16 +30,54 @@
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
max-width: 650px;
|
||||||
|
margin: 0 auto;
|
||||||
|
position: relative;
|
||||||
|
padding: 0 20px;
|
||||||
|
padding-bottom: 10.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
.site-footer {
|
.site-footer {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-top: 1px solid gray;
|
border-top: 1px solid gray;
|
||||||
padding: 3px 0;
|
padding: 3px 0;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
background: url(../images/nav-bg.gif) #353535;
|
bottom: 0;
|
||||||
|
height: 10.5rem;
|
||||||
|
background: #353535;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-content {
|
||||||
|
max-width: 750px; margin: 0 auto; position: relative; padding: 0 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-heading {
|
.footer-heading {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disclaimer, .copyright {
|
||||||
|
padding: 3px;
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.book {
|
||||||
|
border: 3px;
|
||||||
|
padding: 2px;
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dumb {
|
||||||
|
width: 100px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 2.5rem;
|
||||||
|
background: #353535;
|
||||||
|
}
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 3.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Loading…
Reference in New Issue