Skip to content

Commit bba838c

Browse files
author
Derek Greer
committed
Initial revision.
0 parents  commit bba838c

File tree

3,091 files changed

+265311
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,091 files changed

+265311
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.jekyll-metadata
2+
_site

.htaccess

Lines changed: 2337 additions & 0 deletions
Large diffs are not rendered by default.

.redirects

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# redirect 301 /blogs/chad_myers/archive/2008/01/04/joining-the-donkey-side.aspx http://lostechies.com/chadmyers/2008/01/04/joining-the-donkey-side/
2+
# redirect 301 /members/chadmyers/default.aspx http://lostechies.com/chadmyers/

.redirects.bk

Lines changed: 2273 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

404.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: default
3+
---
4+
<style type="text/css" media="screen">
5+
.notfound {
6+
margin: 10px auto;
7+
max-width: 600px;
8+
text-align: center;
9+
}
10+
h1 {
11+
margin: 30px 0;
12+
font-size: 4em;
13+
line-height: 1;
14+
letter-spacing: -1px;
15+
}
16+
</style>
17+
18+
<div class="notfound">
19+
<h1>404</h1>
20+
21+
<p><strong>Page not found :(</strong></p>
22+
<p>The requested page could not be found.</p>
23+
</div>

Gemfile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
gem "jekyll", "~> 3.7.0"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
gem "minima", "~> 2.0"
15+
16+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
17+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
18+
# gem "github-pages", group: :jekyll_plugins
19+
20+
# If you have any plugins, put them here!
21+
group :jekyll_plugins do
22+
gem "jekyll-feed", "~> 0.6"
23+
end
24+
25+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
26+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
27+
28+
gem "jekyll-redirect-from", "~> 0.12.1"
29+

0 commit comments

Comments
 (0)