Skip to content

Commit f968635

Browse files
committedJul 7, 2015
switch to lanyon
0 parents  commit f968635

23 files changed

+1608
-0
lines changed
 

‎.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.py]
14+
indent_style = space
15+
indent_size = 4

‎.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Ignore docs files
2+
_gh_pages
3+
_site
4+
.ruby-version
5+
6+
# Numerous always-ignore extensions
7+
*.diff
8+
*.err
9+
*.orig
10+
*.log
11+
*.rej
12+
*.swo
13+
*.swp
14+
*.zip
15+
*.vi
16+
*~
17+
18+
# OS or Editor folders
19+
.DS_Store
20+
._*
21+
Thumbs.db
22+
.cache
23+
.project
24+
.settings
25+
.tmproj
26+
*.esproj
27+
nbproject
28+
*.sublime-project
29+
*.sublime-workspace
30+
.idea
31+
32+
# Komodo
33+
*.komodoproject
34+
.komodotools
35+
36+
# grunt-html-validation
37+
validation-status.json
38+
validation-report.json
39+
40+
# Folders to ignore
41+
node_modules
42+
bower_components

‎404.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
layout: default
3+
title: "404: Page not found"
4+
---
5+
6+
<div class="page">
7+
<h1 class="page-title">404: Page not found</h1>
8+
<p class="lead">Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="/">Head back home</a> to try finding it again.</p>
9+
</div>

‎CNAME

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

‎LICENSE.md

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

‎README.md

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# Lanyon
2+
3+
Lanyon is an unassuming [Jekyll](http://jekyllrb.com) theme that places content first by tucking away navigation in a hidden drawer. It's based on [Poole](http://getpoole.com), the Jekyll butler.
4+
5+
![Lanyon](https://f.cloud.github.com/assets/98681/1825266/be03f014-71b0-11e3-9539-876e61530e24.png)
6+
![Lanyon with open sidebar](https://f.cloud.github.com/assets/98681/1825267/be04a914-71b0-11e3-966f-8afe9894c729.png)
7+
8+
9+
## Contents
10+
11+
- [Usage](#usage)
12+
- [Options](#options)
13+
- [Sidebar menu](#sidebar-menu)
14+
- [Themes](#themes)
15+
- [Reverse layout](#reverse-layout)
16+
- [Development](#development)
17+
- [Author](#author)
18+
- [License](#license)
19+
20+
21+
## Usage
22+
23+
Lanyon is a theme built on top of [Poole](https://github.com/poole/poole), which provides a fully furnished Jekyll setup—just download and start the Jekyll server. See [the Poole usage guidelines](https://github.com/poole/poole#usage) for how to install and use Jekyll.
24+
25+
26+
## Options
27+
28+
Lanyon includes some customizable options, typically applied via classes on the `<body>` element.
29+
30+
31+
### Sidebar menu
32+
33+
Create a list of nav links in the sidebar by assigning each Jekyll page the correct layout in the page's [front-matter](http://jekyllrb.com/docs/frontmatter/).
34+
35+
```
36+
---
37+
layout: page
38+
title: About
39+
---
40+
```
41+
42+
**Why require a specific layout?** Jekyll will return *all* pages, including the `atom.xml`, and with an alphabetical sort order. To ensure the first link is *Home*, we exclude the `index.html` page from this list by specifying the `page` layout.
43+
44+
45+
### Themes
46+
47+
Lanyon ships with eight optional themes based on the [base16 color scheme](https://github.com/chriskempson/base16). Apply a theme to change the color scheme (mostly applies to sidebar and links).
48+
49+
![Lanyon with red theme](https://f.cloud.github.com/assets/98681/1825270/be065110-71b0-11e3-9ed8-9b8de753a4af.png)
50+
![Lanyon with red theme and open sidebar](https://f.cloud.github.com/assets/98681/1825269/be05ec20-71b0-11e3-91ea-a9138ef07186.png)
51+
52+
There are eight themes available at this time.
53+
54+
![Available theme classes](https://f.cloud.github.com/assets/98681/1817044/e5b0ec06-6f68-11e3-83d7-acd1942797a1.png)
55+
56+
To use a theme, add any one of the available theme classes to the `<body>` element in the `default.html` layout, like so:
57+
58+
```html
59+
<body class="theme-base-08">
60+
...
61+
</body>
62+
```
63+
64+
To create your own theme, look to the Themes section of [included CSS file](https://github.com/poole/lanyon/blob/master/public/css/lanyon.css). Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors.
65+
66+
67+
### Reverse layout
68+
69+
![Lanyon with reverse layout](https://f.cloud.github.com/assets/98681/1825265/be03f2e4-71b0-11e3-89f1-360705524495.png)
70+
![Lanyon with reverse layout and open sidebar](https://f.cloud.github.com/assets/98681/1825268/be056174-71b0-11e3-88c8-5055bca4307f.png)
71+
72+
Reverse the page orientation with a single class.
73+
74+
```html
75+
<body class="layout-reverse">
76+
...
77+
</body>
78+
```
79+
80+
81+
## Development
82+
83+
Lanyon has two branches, but only one is used for active development.
84+
85+
- `master` for development. **All pull requests should be to submitted against `master`.**
86+
- `gh-pages` for our hosted site, which includes our analytics tracking code. **Please avoid using this branch.**
87+
88+
89+
## Author
90+
91+
**Mark Otto**
92+
- <https://github.com/mdo>
93+
- <https://twitter.com/mdo>
94+
95+
96+
## License
97+
98+
Open sourced under the [MIT license](LICENSE.md).
99+
100+
<3

‎_config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Dependencies
2+
markdown: redcarpet
3+
pygments: true
4+
5+
# Permalinks
6+
permalink: pretty
7+
8+
# Setup
9+
title: Fortran FOSS Programmers
10+
tagline: 'A community homepage for F/OSS Fortran programmers on Github'
11+
description: 'A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.'
12+
url: http://Fortran-FOSS-Programmers.github.io
13+
14+
author:
15+
name: 'Izaak Beekman'
16+
url: https://twitter.com/zbeekman
17+
18+
paginate: 5
19+
20+
# Custom vars
21+
version: 2.0.0
22+
23+
github:
24+
repo: https://github.com/Fortran-FOSS-Programmers/Fortran-FOSS-Programmers.github.io

‎_includes/head.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<head>
2+
<link href="http://gmpg.org/xfn/11" rel="profile">
3+
<meta http-equiv="content-type" content="text/html; charset=utf-8">
4+
5+
<!-- Enable responsiveness on mobile devices-->
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
7+
8+
<title>
9+
{% if page.title %}
10+
{{ page.title }} &middot; {{ site.title }}
11+
{% else %}
12+
{{ site.title }} &middot; {{ site.tagline }}
13+
{% endif %}
14+
</title>
15+
16+
<!-- CSS -->
17+
<link rel="stylesheet" href="/public/css/poole.css">
18+
<link rel="stylesheet" href="/public/css/syntax.css">
19+
<link rel="stylesheet" href="/public/css/lanyon.css">
20+
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700|PT+Sans:400">
21+
22+
<!-- Icons -->
23+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/public/apple-touch-icon-144-precomposed.png">
24+
<link rel="shortcut icon" href="/public/favicon.ico">
25+
26+
<!-- RSS -->
27+
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
28+
</head>

‎_includes/sidebar.html

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
2+
styles, `#sidebar-checkbox` for behavior. -->
3+
<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
4+
5+
<!-- Toggleable sidebar -->
6+
<div class="sidebar" id="sidebar">
7+
<div class="sidebar-item">
8+
<p>{{ site.description }}</p>
9+
</div>
10+
11+
<nav class="sidebar-nav">
12+
<a class="sidebar-nav-item{% if page.title == "Home" %} active{% endif %}" href="/">Home</a>
13+
14+
{% comment %}
15+
The code below dynamically generates a sidebar nav of pages with
16+
`layout: page` in the front-matter. See readme for usage.
17+
{% endcomment %}
18+
19+
{% assign pages_list = site.pages %}
20+
{% for node in pages_list %}
21+
{% if node.title != null %}
22+
{% if node.layout == "page" %}
23+
<a class="sidebar-nav-item{% if page.url == node.url %} active{% endif %}" href="{{ node.url }}">{{ node.title }}</a>
24+
{% endif %}
25+
{% endif %}
26+
{% endfor %}
27+
28+
<a class="sidebar-nav-item" href="{{ site.github.repo }}/archive/v{{ site.version }}.zip">Download</a>
29+
<a class="sidebar-nav-item" href="{{ site.github.repo }}">GitHub project</a>
30+
<span class="sidebar-nav-item">Currently v{{ site.version }}</span>
31+
</nav>
32+
33+
<div class="sidebar-item">
34+
<p>
35+
&copy; {{ site.time | date: '%Y' }}. All rights reserved.
36+
</p>
37+
</div>
38+
</div>

‎_layouts/default.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
3+
4+
{% include head.html %}
5+
6+
<body>
7+
8+
{% include sidebar.html %}
9+
10+
<!-- Wrap is the content to shift when toggling the sidebar. We wrap the
11+
content to avoid any CSS collisions with our real content. -->
12+
<div class="wrap">
13+
<div class="masthead">
14+
<div class="container">
15+
<label for="sidebar-checkbox" class="sidebar-toggle"></label>
16+
17+
<h3 class="masthead-title">
18+
<a href="/" title="Home">{{ site.title }}</a>
19+
<small>{{ site.tagline }}</small>
20+
</h3>
21+
</div>
22+
</div>
23+
24+
<div class="container content">
25+
{{ content }}
26+
</div>
27+
</div>
28+
29+
</body>
30+
</html>

‎_layouts/page.html

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

‎_layouts/post.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="post">
6+
<h1 class="post-title">{{ page.title }}</h1>
7+
<span class="post-date">{{ page.date | date_to_string }}</span>
8+
{{ content }}
9+
</div>
10+
11+
<div class="related">
12+
<h2>Related Posts</h2>
13+
<ul class="related-posts">
14+
{% for post in site.related_posts limit:3 %}
15+
<li>
16+
<h3>
17+
<a href="{{ post.url }}">
18+
{{ post.title }}
19+
<small>{{ post.date | date_to_string }}</small>
20+
</a>
21+
</h3>
22+
</li>
23+
{% endfor %}
24+
</ul>
25+
</div>

‎_posts/2013-12-31-whats-jekyll.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: post
3+
title: What's Jekyll?
4+
---
5+
6+
[Jekyll](http://jekyllrb.com) is a static site generator, an open-source tool for creating simple yet powerful websites of all shapes and sizes. From [the project's readme](https://github.com/mojombo/jekyll/blob/master/README.markdown):
7+
8+
> Jekyll is a simple, blog aware, static site generator. It takes a template directory [...] and spits out a complete, static website suitable for serving with Apache or your favorite web server. This is also the engine behind GitHub Pages, which you can use to host your project’s page or blog right here from GitHub.
9+
10+
It's an immensely useful tool and one we encourage you to use here with Hyde.
11+
12+
Find out more by [visiting the project on GitHub](https://github.com/mojombo/jekyll).

‎_posts/2014-01-01-example-content.md

Lines changed: 122 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
---
2+
layout: post
3+
title: Example content
4+
---
5+
6+
7+
<div class="message">
8+
Howdy! This is an example blog post that shows several types of HTML content supported in this theme.
9+
</div>
10+
11+
Cum sociis natoque penatibus et magnis <a href="#">dis parturient montes</a>, nascetur ridiculus mus. *Aenean eu leo quam.* Pellentesque ornare sem lacinia quam venenatis vestibulum. Sed posuere consectetur est at lobortis. Cras mattis consectetur purus sit amet fermentum.
12+
13+
> Curabitur blandit tempus porttitor. Nullam quis risus eget urna mollis ornare vel eu leo. Nullam id dolor id nibh ultricies vehicula ut id elit.
14+
15+
Etiam porta **sem malesuada magna** mollis euismod. Cras mattis consectetur purus sit amet fermentum. Aenean lacinia bibendum nulla sed consectetur.
16+
17+
## Inline HTML elements
18+
19+
HTML defines a long list of available inline tags, a complete list of which can be found on the [Mozilla Developer Network](https://developer.mozilla.org/en-US/docs/Web/HTML/Element).
20+
21+
- **To bold text**, use `<strong>`.
22+
- *To italicize text*, use `<em>`.
23+
- Abbreviations, like <abbr title="HyperText Markup Langage">HTML</abbr> should use `<abbr>`, with an optional `title` attribute for the full phrase.
24+
- Citations, like <cite>&mdash; Mark otto</cite>, should use `<cite>`.
25+
- <del>Deleted</del> text should use `<del>` and <ins>inserted</ins> text should use `<ins>`.
26+
- Superscript <sup>text</sup> uses `<sup>` and subscript <sub>text</sub> uses `<sub>`.
27+
28+
Most of these elements are styled by browsers with few modifications on our part.
29+
30+
## Heading
31+
32+
Vivamus sagittis lacus vel augue rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.
33+
34+
### Code
35+
36+
Cum sociis natoque penatibus et magnis dis `code element` montes, nascetur ridiculus mus.
37+
38+
{% highlight js %}
39+
// Example can be run directly in your JavaScript console
40+
41+
// Create a function that takes two arguments and returns the sum of those arguments
42+
var adder = new Function("a", "b", "return a + b");
43+
44+
// Call the function
45+
adder(2, 6);
46+
// > 8
47+
{% endhighlight %}
48+
49+
Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa.
50+
51+
### Lists
52+
53+
Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aenean lacinia bibendum nulla sed consectetur. Etiam porta sem malesuada magna mollis euismod. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
54+
55+
* Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
56+
* Donec id elit non mi porta gravida at eget metus.
57+
* Nulla vitae elit libero, a pharetra augue.
58+
59+
Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.
60+
61+
1. Vestibulum id ligula porta felis euismod semper.
62+
2. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
63+
3. Maecenas sed diam eget risus varius blandit sit amet non magna.
64+
65+
Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis.
66+
67+
<dl>
68+
<dt>HyperText Markup Language (HTML)</dt>
69+
<dd>The language used to describe and define the content of a Web page</dd>
70+
71+
<dt>Cascading Style Sheets (CSS)</dt>
72+
<dd>Used to describe the appearance of Web content</dd>
73+
74+
<dt>JavaScript (JS)</dt>
75+
<dd>The programming language used to build advanced Web sites and applications</dd>
76+
</dl>
77+
78+
Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Nullam quis risus eget urna mollis ornare vel eu leo.
79+
80+
### Tables
81+
82+
Aenean lacinia bibendum nulla sed consectetur. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
83+
84+
<table>
85+
<thead>
86+
<tr>
87+
<th>Name</th>
88+
<th>Upvotes</th>
89+
<th>Downvotes</th>
90+
</tr>
91+
</thead>
92+
<tfoot>
93+
<tr>
94+
<td>Totals</td>
95+
<td>21</td>
96+
<td>23</td>
97+
</tr>
98+
</tfoot>
99+
<tbody>
100+
<tr>
101+
<td>Alice</td>
102+
<td>10</td>
103+
<td>11</td>
104+
</tr>
105+
<tr>
106+
<td>Bob</td>
107+
<td>4</td>
108+
<td>3</td>
109+
</tr>
110+
<tr>
111+
<td>Charlie</td>
112+
<td>7</td>
113+
<td>9</td>
114+
</tr>
115+
</tbody>
116+
</table>
117+
118+
Nullam id dolor id nibh ultricies vehicula ut id elit. Sed posuere consectetur est at lobortis. Nullam quis risus eget urna mollis ornare vel eu leo.
119+
120+
-----
121+
122+
Want to see something else added? <a href="https://github.com/poole/poole/issues/new">Open an issue.</a>
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
layout: post
3+
title: Introducing Lanyon
4+
---
5+
6+
Lanyon is an unassuming [Jekyll](http://jekyllrb.com) theme that places content first by tucking away navigation in a hidden drawer. It's based on [Poole](http://getpoole.com), the Jekyll butler.
7+
8+
### Built on Poole
9+
10+
Poole is the Jekyll Butler, serving as an upstanding and effective foundation for Jekyll themes by [@mdo](https://twitter.com/mdo). Poole, and every theme built on it (like Lanyon here) includes the following:
11+
12+
* Complete Jekyll setup included (layouts, config, [404](/404), [RSS feed](/atom.xml), posts, and [example page](/about))
13+
* Mobile friendly design and development
14+
* Easily scalable text and component sizing with `rem` units in the CSS
15+
* Support for a wide gamut of HTML elements
16+
* Related posts (time-based, because Jekyll) below each post
17+
* Syntax highlighting, courtesy Pygments (the Python-based code snippet highlighter)
18+
19+
### Lanyon features
20+
21+
In addition to the features of Poole, Lanyon adds the following:
22+
23+
* Toggleable sliding sidebar (built with only CSS) via **** link in top corner
24+
* Sidebar includes support for textual modules and a dynamically generated navigation with active link support
25+
* Two orientations for content and sidebar, default (left sidebar) and [reverse](https://github.com/poole/lanyon#reverse-layout) (right sidebar), available via `<body>` classes
26+
* [Eight optional color schemes](https://github.com/poole/lanyon#themes), available via `<body>` classes
27+
28+
[Head to the readme](https://github.com/poole/lanyon#readme) to learn more.
29+
30+
### Browser support
31+
32+
Lanyon is by preference a forward-thinking project. In addition to the latest versions of Chrome, Safari (mobile and desktop), and Firefox, it is only compatible with Internet Explorer 9 and above.
33+
34+
### Download
35+
36+
Lanyon is developed on and hosted with GitHub. Head to the <a href="https://github.com/poole/lanyon">GitHub repository</a> for downloads, bug reports, and features requests.
37+
38+
Thanks!

‎about.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
layout: page
3+
title: About
4+
---
5+
6+
<p class="message">
7+
Hey there! This page is included as an example. Feel free to customize it for your own use upon downloading. Carry on!
8+
</p>
9+
10+
In the novel, *The Strange Case of Dr. Jeykll and Mr. Hyde*, Mr. Poole is Dr. Jekyll's virtuous and loyal butler. Similarly, Poole is an upstanding and effective butler that helps you build Jekyll themes. It's made by [@mdo](https://twitter.com/mdo).
11+
12+
There are currently two themes built on Poole:
13+
14+
* [Hyde](http://hyde.getpoole.com)
15+
* [Lanyon](http://lanyon.getpoole.com)
16+
17+
Learn more and contribute on [GitHub](https://github.com/poole).
18+
19+
## Setup
20+
21+
Some fun facts about the setup of this project include:
22+
23+
* Built for [Jekyll](http://jekyllrb.com)
24+
* Developed on GitHub and hosted for free on [GitHub Pages](https://pages.github.com)
25+
* Coded with [Sublime Text 2](http://sublimetext.org), an amazing code editor
26+
* Designed and developed while listening to music like [Blood Bros Trilogy](https://soundcloud.com/maddecent/sets/blood-bros-series)
27+
28+
Have questions or suggestions? Feel free to [open an issue on GitHub](https://github.com/poole/issues/new) or [ask me on Twitter](https://twitter.com/mdo).
29+
30+
Thanks for reading!

‎atom.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: nil
3+
---
4+
5+
<?xml version="1.0" encoding="utf-8"?>
6+
<feed xmlns="http://www.w3.org/2005/Atom">
7+
8+
<title>{{ site.title }}</title>
9+
<link href="{{ site.url }}/atom.xml" rel="self"/>
10+
<link href="{{ site.url }}/"/>
11+
<updated>{{ site.time | date_to_xmlschema }}</updated>
12+
<id>{{ site.url }}</id>
13+
<author>
14+
<name>{{ site.author.name }}</name>
15+
<email>{{ site.author.email }}</email>
16+
</author>
17+
18+
{% for post in site.posts %}
19+
<entry>
20+
<title>{{ post.title }}</title>
21+
<link href="{{ site.url }}{{ post.url }}"/>
22+
<updated>{{ post.date | date_to_xmlschema }}</updated>
23+
<id>{{ site.url }}{{ post.id }}</id>
24+
<content type="html">{{ post.content | xml_escape }}</content>
25+
</entry>
26+
{% endfor %}
27+
28+
</feed>

‎index.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="posts">
6+
{% for post in paginator.posts %}
7+
<div class="post">
8+
<h1 class="post-title">
9+
<a href="{{ post.url }}">
10+
{{ post.title }}
11+
</a>
12+
</h1>
13+
14+
<span class="post-date">{{ post.date | date_to_string }}</span>
15+
16+
{{ post.content }}
17+
</div>
18+
{% endfor %}
19+
</div>
20+
21+
<div class="pagination">
22+
{% if paginator.next_page %}
23+
<a class="pagination-item older" href="/page{{paginator.next_page}}">Older</a>
24+
{% else %}
25+
<span class="pagination-item older">Older</span>
26+
{% endif %}
27+
{% if paginator.previous_page %}
28+
{% if paginator.page == 2 %}
29+
<a class="pagination-item newer" href="/">Newer</a>
30+
{% else %}
31+
<a class="pagination-item newer" href="/page{{paginator.previous_page}}">Newer</a>
32+
{% endif %}
33+
{% else %}
34+
<span class="pagination-item newer">Newer</span>
35+
{% endif %}
36+
</div>
2.3 KB
Loading

‎public/css/lanyon.css

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

‎public/css/poole.css

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

‎public/css/syntax.css

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
.hll { background-color: #ffffcc }
2+
/*{ background: #f0f3f3; }*/
3+
.c { color: #999; } /* Comment */
4+
.err { color: #AA0000; background-color: #FFAAAA } /* Error */
5+
.k { color: #006699; } /* Keyword */
6+
.o { color: #555555 } /* Operator */
7+
.cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
8+
.cp { color: #009999 } /* Comment.Preproc */
9+
.c1 { color: #999; } /* Comment.Single */
10+
.cs { color: #999; } /* Comment.Special */
11+
.gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
12+
.ge { font-style: italic } /* Generic.Emph */
13+
.gr { color: #FF0000 } /* Generic.Error */
14+
.gh { color: #003300; } /* Generic.Heading */
15+
.gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
16+
.go { color: #AAAAAA } /* Generic.Output */
17+
.gp { color: #000099; } /* Generic.Prompt */
18+
.gs { } /* Generic.Strong */
19+
.gu { color: #003300; } /* Generic.Subheading */
20+
.gt { color: #99CC66 } /* Generic.Traceback */
21+
.kc { color: #006699; } /* Keyword.Constant */
22+
.kd { color: #006699; } /* Keyword.Declaration */
23+
.kn { color: #006699; } /* Keyword.Namespace */
24+
.kp { color: #006699 } /* Keyword.Pseudo */
25+
.kr { color: #006699; } /* Keyword.Reserved */
26+
.kt { color: #007788; } /* Keyword.Type */
27+
.m { color: #FF6600 } /* Literal.Number */
28+
.s { color: #d44950 } /* Literal.String */
29+
.na { color: #4f9fcf } /* Name.Attribute */
30+
.nb { color: #336666 } /* Name.Builtin */
31+
.nc { color: #00AA88; } /* Name.Class */
32+
.no { color: #336600 } /* Name.Constant */
33+
.nd { color: #9999FF } /* Name.Decorator */
34+
.ni { color: #999999; } /* Name.Entity */
35+
.ne { color: #CC0000; } /* Name.Exception */
36+
.nf { color: #CC00FF } /* Name.Function */
37+
.nl { color: #9999FF } /* Name.Label */
38+
.nn { color: #00CCFF; } /* Name.Namespace */
39+
.nt { color: #2f6f9f; } /* Name.Tag */
40+
.nv { color: #003333 } /* Name.Variable */
41+
.ow { color: #000000; } /* Operator.Word */
42+
.w { color: #bbbbbb } /* Text.Whitespace */
43+
.mf { color: #FF6600 } /* Literal.Number.Float */
44+
.mh { color: #FF6600 } /* Literal.Number.Hex */
45+
.mi { color: #FF6600 } /* Literal.Number.Integer */
46+
.mo { color: #FF6600 } /* Literal.Number.Oct */
47+
.sb { color: #CC3300 } /* Literal.String.Backtick */
48+
.sc { color: #CC3300 } /* Literal.String.Char */
49+
.sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
50+
.s2 { color: #CC3300 } /* Literal.String.Double */
51+
.se { color: #CC3300; } /* Literal.String.Escape */
52+
.sh { color: #CC3300 } /* Literal.String.Heredoc */
53+
.si { color: #AA0000 } /* Literal.String.Interpol */
54+
.sx { color: #CC3300 } /* Literal.String.Other */
55+
.sr { color: #33AAAA } /* Literal.String.Regex */
56+
.s1 { color: #CC3300 } /* Literal.String.Single */
57+
.ss { color: #FFCC33 } /* Literal.String.Symbol */
58+
.bp { color: #336666 } /* Name.Builtin.Pseudo */
59+
.vc { color: #003333 } /* Name.Variable.Class */
60+
.vg { color: #003333 } /* Name.Variable.Global */
61+
.vi { color: #003333 } /* Name.Variable.Instance */
62+
.il { color: #FF6600 } /* Literal.Number.Integer.Long */
63+
64+
.css .o,
65+
.css .o + .nt,
66+
.css .nt + .nt { color: #999; }

‎public/favicon.ico

445 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.