Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

Cleanup and improvements #24

Open
wants to merge 41 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
b62f1f8
Add .sass_cache to .gitignore.
willkoehler Aug 16, 2014
07c1de3
Always include _google-analytics.html partial - leave partial empty i…
willkoehler Aug 17, 2014
02ed4fb
Rename 'inc' config block to 'info'.
willkoehler Aug 17, 2014
9cffd60
Add blank lines required by the kramdown markdown processor.
willkoehler Aug 17, 2014
29466c9
Don't generate pretty permalinks (permalinks now have an .html extens…
willkoehler Aug 17, 2014
f7ea940
Clean up _config.yml
willkoehler Aug 18, 2014
b797474
Remove unused maruku gem.
willkoehler Aug 18, 2014
1aa854c
Fix feed.xml
willkoehler Aug 18, 2014
61d7b87
Remove _animate.css. File is not used anywhere.
willkoehler Aug 18, 2014
460ca42
Remove Twitter Bootstrap CSS and add a standard normalize.
willkoehler Aug 18, 2014
34326d9
Rename config info.url to info.company_url
willkoehler Aug 18, 2014
378be51
Move site.url config param to site.info.url
willkoehler Aug 18, 2014
f461bd5
Add github logo (based on work by @vdragsic)
willkoehler Aug 19, 2014
9604230
Tweak styling of social icons.
willkoehler Aug 19, 2014
64b86a5
Fix responsive social icon margins in blog-cover.
willkoehler Aug 19, 2014
198b31e
Improve source code highlighting.
willkoehler Aug 19, 2014
fff3ea2
Remove blog-cover background gradient.
willkoehler Aug 19, 2014
00ff93d
Remove css classes that aren't being used.
willkoehler Aug 19, 2014
6681e9b
Clean up responsive css for max-width: 1000px.
willkoehler Aug 19, 2014
86e17a5
Remove unused rules from responsive.scss and add comments.
willkoehler Aug 19, 2014
3b05f52
Size article cover image responsively.
willkoehler Aug 20, 2014
9c630ed
Clean up 404 page.
willkoehler Aug 20, 2014
ac8d572
Tighten hr spacing.
willkoehler Aug 20, 2014
0304179
Improve responsive layout for small devices, such as the iPhone 5.
willkoehler Aug 20, 2014
8790190
Widen content area for desktop/iPad layout.
willkoehler Aug 20, 2014
2e77b2e
Refine source code formatting.
willkoehler Aug 20, 2014
9239dca
Add lorem text to sample blog entry.
willkoehler Aug 20, 2014
4be464a
Fix blockquotes margins.
willkoehler Aug 21, 2014
3fa23eb
Move social links into a partial.
willkoehler Aug 21, 2014
5c122b2
Fix Hacker News share button.
willkoehler Aug 21, 2014
374aca6
Fix alignment of social share buttons.
willkoehler Aug 21, 2014
ff41a92
Vertically center article-cover background image.
willkoehler Aug 21, 2014
4980cae
Fix .btn color and refine to match style of .btn-outline
willkoehler Aug 22, 2014
3e7159f
Refactor .btn and .btn-outline css class structure.
willkoehler Aug 22, 2014
ee7e266
Delay hiding tagline until viewport is smaller.
willkoehler Aug 22, 2014
a98e859
Remove right margin from last social icon in footer.
willkoehler Aug 22, 2014
1cbfd75
Add left/right padding to footer so text doesn't sit right on edge of…
willkoehler Aug 22, 2014
0f6fa8b
Lighten link hover color.
willkoehler Aug 22, 2014
b42c28f
Clean up margins and make them more uniform.
willkoehler Aug 22, 2014
d8122b3
Share margins between the index and post pages.
willkoehler Aug 22, 2014
19fba28
RSS feed fixes.
willkoehler Aug 29, 2014
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
_site/
.DS_Store
/.sass-cache
/_site

# Ignore OSX files like:
.DS_Store
6 changes: 4 additions & 2 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
layout: base
---

<h1>404</h1>
<p>Get back to blog</p>
<div style='text-align:center;margin:50px 0'>
<h1>404 - Sorry, nothing here.</h1>
<p><a href='/'>Get back to the blog</a></p>
</div>
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ source 'https://rubygems.org'

gem 'jekyll'
gem 'jekyll-assets'
gem 'maruku'
gem 'rake'
gem 'sass'
gem 'uglifier'
Expand Down
Loading