diff --git a/_config.yml b/_config.yml index 7e79316..6aa6288 100644 --- a/_config.yml +++ b/_config.yml @@ -1,11 +1,11 @@ # Site settings -title: My Blog -email: coolwebconfs@gmail.com -description: My simple blog. -baseurl: "" -url: "" -twitter_username: -avatar: "" # Set footer avatar +title: jason-lite +email: lowgrav@icloud.com +description: jason only lighter and crisper +baseurl: "/jason-lite" + +twitter_username: mellowgnomebeer +avatar: "https://pbs.twimg.com/profile_images/449655782833782785/OrDnwCQ8.png" # Set footer avatar paginate: 3 # Build settings @@ -19,8 +19,8 @@ defaults: path: "" type: "posts" values: - author: "My Author" # Set default author name - categories: "cats" + author: "jason" # Set default author name + categories: "personal" layout: "post" comments: true - diff --git a/_includes/disqus.html b/_includes/disqus.html index d87dfdc..10503c7 100644 --- a/_includes/disqus.html +++ b/_includes/disqus.html @@ -2,7 +2,7 @@
-{% endif %} \ No newline at end of file +{% endif %} diff --git a/_posts/2015-05-15-first-post.md b/_posts/2015-05-15-first-post.md index 3169ea3..c575860 100644 --- a/_posts/2015-05-15-first-post.md +++ b/_posts/2015-05-15-first-post.md @@ -1,13 +1,6 @@ --- -title: "My First Post" -categories: sample -image: feat-img.jpg +title: "hello there" +image: face.png --- -Hi there. This will be your first blog post—I hope you're excited! To get started, give this post a new title by replacing "My First Post" with your post's title. - -You can change the post's author name in the `_config.yml` file, or add an `author` variable in the front matter block. - -To change the post image, replace the image name with your new image. If you don't want to use an image in this post, delete the image variable in the front matter. - -Have fun blogging! +Hello everyone! I am trying out jekyll and github pages hosting without having a copy of ruby or jekyll on my local computer. The only issue I have found thus far into it is the ability to change images is a bit of a pain. Once I find a plce to store my images for free, this may be a fun little experiment. diff --git a/_posts/2016-09-15-weight-loss.md b/_posts/2016-09-15-weight-loss.md new file mode 100644 index 0000000..698ade8 --- /dev/null +++ b/_posts/2016-09-15-weight-loss.md @@ -0,0 +1,15 @@ +--- +layout: post +title: "weight loss" +--- + +I have lost 45 pounds in the last year. + +I thought i would share how I did it. +First, I brew my own beer. So, I started making ultra low alcohol beer. I also do not partake in as much of the libations as i once did. + +I changed my diet. Breakfast is 2 servings of muesli. It gives me my fiber and some energy items like nuts, seeds and berries. + +Lunch is a lean protein like a chicken breast with a really large salad. I try to keep my carbs low but I also have to feel full. + +Dinner was harder to figure out. I didn't want to inconvenience my family. I decided that my only rule for dinner was that I didn't want fried food. I just adjust my portions and I drink a very large glass of water before eating. diff --git a/_posts/2016-09-25-oktoberfest.md b/_posts/2016-09-25-oktoberfest.md new file mode 100644 index 0000000..7734b0b --- /dev/null +++ b/_posts/2016-09-25-oktoberfest.md @@ -0,0 +1,8 @@ +--- +layout: post +title: "Oktoberfest " +tags: +--- +Last night, we had friends over for a little Oktoberfest celebration. + +Brats, saurkraut, pretzels, beer, mustard, German potato salad and more. Auburn beat LSU in a thriller and most importantly, I got to see my friends. We don't see each other that often anymore. \ No newline at end of file diff --git a/_sass/layout/_header.scss b/_sass/layout/_header.scss index 5bb43cd..ec715f5 100644 --- a/_sass/layout/_header.scss +++ b/_sass/layout/_header.scss @@ -6,6 +6,6 @@ @extend %clearfix; @include mq(medium) { height: 48px; - background: palette(grey, lightest); + background: palette(grey, lighter); } -} \ No newline at end of file +} diff --git a/_sass/modules/_hero.scss b/_sass/modules/_hero.scss index bb641c7..7726016 100644 --- a/_sass/modules/_hero.scss +++ b/_sass/modules/_hero.scss @@ -4,10 +4,8 @@ .hero { height: 335px; - background: url('#{$path--rel}/bg-main.jpg'), - linear-gradient(#75da8f, #77cae9); - background-blend-mode: multiply; + background: url('http://i.imgur.com/0ADLk3Z.png'); background-repeat: no-repeat; background-size: cover; margin-bottom: em(50px); -} \ No newline at end of file +} diff --git a/_sass/modules/_logo.scss b/_sass/modules/_logo.scss index 7f2f5c3..cd82ff5 100644 --- a/_sass/modules/_logo.scss +++ b/_sass/modules/_logo.scss @@ -3,7 +3,7 @@ // ========================================================================== .site-logo { - text-transform: uppercase; + text-transform: lowercase; font-weight: $font-weight--bold; font-size: em(20px); display: block; @@ -17,4 +17,4 @@ float: left; margin-top: 11px; } -} \ No newline at end of file +} diff --git a/about.md b/about.md index ee8acf6..be6c1c3 100644 --- a/about.md +++ b/about.md @@ -1,6 +1,23 @@ --- -title: About +title: about permalink: /about/ --- -This is the about page to this simple blog theme. +I am a middle aged dad of 2 beautiful girls. +I live in the Nashville area and work in the IT field. +I have ADD. +I have lots of hobbies. + + +## Hobby List +--- +- Homebrewer +- Pythonista +- Food Science(My wife was not happy when I started popping grains. Hint: They don't all pop.) +- A wide range of musical instruments from 6 string guitar to the mountain dulcimer +- Gaming +- Kayaking - admittedly, I have not done this in quite a while + + + +This blog is a reflection of my life, my hobbies and the people I love. diff --git a/contact.md b/contact.md deleted file mode 100644 index 743cb98..0000000 --- a/contact.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Contact -permalink: /contact/ ---- - -Hey there! To get in touch, [send me an email](mailto:{{ site.email }}). \ No newline at end of file diff --git a/img/face.png b/img/face.png new file mode 100644 index 0000000..9fc350c Binary files /dev/null and b/img/face.png differ diff --git a/other_sites.md b/other_sites.md new file mode 100644 index 0000000..45fca6c --- /dev/null +++ b/other_sites.md @@ -0,0 +1,11 @@ +--- +title: other sites +permalink: /other_sites/ +--- + +This is a list of my other places on the web: + + +family blog: [nelms family](http://www.nelmsfamily.org) +beer blog: [low grav](http://www.lowgrav.me) + diff --git a/resources.md b/resources.md deleted file mode 100644 index 5f11a6f..0000000 --- a/resources.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: Resources -permalink: /resources/ ---- - -This is a list of resources related to this blog! \ No newline at end of file