Skip to content

Commit ca1e382

Browse files
committed
initial commit
0 parents  commit ca1e382

25 files changed

+1160
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
_site
2+
.DS_Store
3+
.jekyll
4+
.bundle
5+
.sass-cache
6+
Gemfile
7+
Gemfile.lock
8+
node_modules
9+
package.json

404.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: page
3+
title: 404 - Page not found
4+
---
5+
6+
<h1>404</h1>
7+
8+
Not found. Try going [back to the homepage](/).

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 rusty-objects
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Rendering
2+
3+
Rendered via **Jekyll** ([GitHub](https://github.com/jekyll/jekyll) | [website](https://jekyllrb.com/))
4+
5+
## Credits
6+
7+
- [Jekyll](https://github.com/jekyll/jekyll)
8+
- [SVG icons](https://github.com/neilorangepeel/Free-Social-Icons)
9+
- [Solarized Light Pygments](https://gist.github.com/edwardhotchkiss/2005058)
10+
- [Joel Glovier](http://joelglovier.com/writing/) - Great Jekyll articles. I used Joel's feed.xml in this repository.
11+

_config.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#
2+
# This file contains configuration flags to customize your site
3+
#
4+
5+
# Name of your site (displayed in the header)
6+
name: rusty-objects
7+
title: rusty-objects' blog
8+
9+
# Short bio or description (displayed in the header/title)
10+
description: doin' stuff
11+
12+
# articles per page when viewing index.html
13+
paginate: 1
14+
15+
# Used for Sitemap.xml and your RSS feed
16+
url: https://rusty-objects.github.io
17+
18+
#
19+
# !! You don't need to change any of the configuration flags below !!
20+
#
21+
22+
markdown: redcarpet
23+
highlighter: pygments
24+
# permalink: /:title/ # supposedly permalink and paginate don't work well together (http://jekyllrb.com/docs/pagination/)
25+
26+
# Set the Sass partials directory, as we're using @imports
27+
sass:
28+
style: :expanded # You might prefer to minify using :compressed
29+
30+
# Use the following plug-ins
31+
gems:
32+
- jekyll-sitemap # Create a sitemap using the official Jekyll sitemap gem
33+
34+
# Exclude these files from your production _site
35+
exclude:
36+
- Gemfile
37+
- Gemfile.lock
38+
- LICENSE
39+
- README.md

_data/.gitkeep

Whitespace-only changes.

_includes/.gitkeep

Whitespace-only changes.

_layouts/default.html

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.title }} – {{ site.description }}</title>
5+
6+
<meta charset="utf-8" />
7+
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
8+
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
9+
10+
<link rel="stylesheet" type="text/css" href="/assets/css/styles.css" />
11+
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="/feed.xml" />
12+
13+
<!-- Created with Jekyll -->
14+
</head>
15+
16+
<body>
17+
<div class="wrapper-masthead">
18+
<div class="container">
19+
<header class="masthead clearfix">
20+
<div class="site-info">
21+
<h1 class="site-name"><a href="/">{{ site.title }}</a></h1>
22+
<p class="site-description">{{ site.description }}</p>
23+
</div>
24+
25+
<nav>
26+
<a href="/">Blog</a>
27+
<a href="/archive">Archive</a>
28+
<a href="/about">About</a>
29+
</nav>
30+
</header>
31+
</div>
32+
</div>
33+
34+
<div id="main" role="main" class="container">
35+
{{ content }}
36+
</div>
37+
38+
<div class="wrapper-footer">
39+
<div class="container">
40+
<footer class="footer">
41+
<a href="/feed.xml"><i class="feed-icon"></i> Feed</a><br/>
42+
All opinions expressed are my own.<br/>
43+
Except where otherwise noted, this work is licensed under <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">cc by 4.0</a>.</a><br/><br/>
44+
</footer>
45+
</div>
46+
</div>
47+
48+
</body>
49+
</html>

_layouts/page.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
---
4+
5+
<article class="page">
6+
7+
<h1>{{ page.title }}</h1>
8+
9+
<div class="entry">
10+
{{ content }}
11+
</div>
12+
</article>

0 commit comments

Comments
 (0)