Skip to content

Commit 96beac7

Browse files
committed
website build
1 parent 2e228f4 commit 96beac7

File tree

70 files changed

+5622
-1
lines changed

Some content is hidden

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

70 files changed

+5622
-1
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_site
2+
.sass-cache
3+
.DS_Store
4+
5+
# Ignore the config file that's used for gh-pages.
6+
_config.gh-pages.yml

404.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: center
3+
permalink: /404.html
4+
---
5+
6+
# 404
7+
8+
Sorry, we can't seem to find this page's pixylls.
9+
10+
<div class="mt3">
11+
<a href="{{ site.baseurl }}/" class="button button-blue button-big">Home</a>
12+
<a href="{{ site.baseurl }}/contact/" class="button button-blue button-big">Contact</a>
13+
</div>

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pixyll.com

LICENSE.txt

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

README.md

+176-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,176 @@
1-
setup in progress!
1+
# Pixyll
2+
3+
[pixyll.com](http://www.pixyll.com)
4+
5+
![Pixyll screenshot](https://cloud.githubusercontent.com/assets/1424573/3847467/134aa236-1e66-11e4-8421-4e8c122118dc.png)
6+
7+
Pixyll is a simple, beautiful theme for Jekyll that emphasizes content rather than aesthetic fluff. It's mobile _first_, fluidly responsive, and delightfully lightweight.
8+
9+
It's pretty minimal, but leverages large type and drastic contrast to make a statement, on all devices.
10+
11+
This Jekyll theme was crafted with <3 by [John Otander](http://johnotander.com)
12+
([@4lpine](https://twitter.com/4lpine)).
13+
14+
中文版 <https://github.com/ee0703/pixyll-zh-cn>.
15+
16+
## Getting Started
17+
18+
If you're completely new to Jekyll, I recommend checking out the documentation at <http://jekyllrb.com> or there's a tutorial by [Smashing Magazine](http://www.smashingmagazine.com/2014/08/01/build-blog-jekyll-github-pages/).
19+
20+
### Installing Jekyll
21+
22+
If you don't have Jekyll already installed, you will need to go ahead and do that.
23+
24+
```
25+
$ gem install jekyll
26+
```
27+
28+
#### Verify your Jekyll version
29+
30+
It's important to also check your version of Jekyll since this project uses Native Sass which
31+
is [only supported by 2.0+](http://jekyllrb.com/news/2014/05/06/jekyll-turns-2-0-0/).
32+
33+
```
34+
$ jekyll -v
35+
# This should be jekyll 2.0.0 or later
36+
```
37+
38+
### Fork, then clone
39+
40+
Fork the repo, and then clone it so you've got the code locally.
41+
42+
### Modify the _config.yml
43+
44+
The `_config.yml` located in the root of the Pixyll directory contains all of the configuration details
45+
for the Jekyll site. The defaults are:
46+
47+
```yml
48+
# Site settings
49+
title: Pixyll
50+
51+
author: John Otander
52+
description: "A simple, beautiful theme for Jekyll that emphasizes content rather than aesthetic fluff."
53+
baseurl: ""
54+
url: "http://pixyll.com"
55+
56+
# Build settings
57+
markdown: kramdown
58+
permalink: pretty
59+
paginate: 3
60+
```
61+
62+
### Jekyll Serve
63+
64+
Then, start the Jekyll Server. I always like to give the `--watch` option so it updates the generated HTML when I make changes.
65+
66+
```
67+
$ jekyll serve --watch
68+
```
69+
70+
Now you can navigate to `localhost:4000` in your browser to see the site.
71+
72+
### Using Github Pages
73+
74+
You can host your Jekyll site for free with Github Pages. [Click here](https://pages.github.com/) for more information.
75+
76+
#### A configuration tweak if you're using a gh-pages sub-folder
77+
78+
In addition to your github-username.github.io repo that maps to the root url, you can serve up sites by using a gh-pages branch for other repos so they're available at github-username.github.io/repo-name.
79+
80+
This will require you to modify the `_config.yml` like so:
81+
82+
```yml
83+
# Site settings
84+
title: Repo Name
85+
86+
author: John Otander
87+
description: "Repo description"
88+
baseurl: "/repo-name"
89+
url: "http://github-username.github.io"
90+
91+
# Build settings
92+
markdown: kramdown
93+
permalink: pretty
94+
paginate: 3
95+
```
96+
97+
This will ensure that the the correct relative path is constructed for your assets and posts. Also, in order to run the project locally, you will need to specify the blank string for the baseurl: `$ jekyll serve --baseurl ''`.
98+
99+
##### If you don't want the header to link back to the root url
100+
101+
You will also need to tweak the header include `/{{ site.baseurl }}`:
102+
103+
```html
104+
<header class="site-header px2 px-responsive">
105+
<div class="mt2 wrap">
106+
<div class="measure">
107+
<a href="{{ site.url }}/{{ site.baseurl }}">{{ site.title }}</a>
108+
<nav class="site-nav right">
109+
{% include navigation.html %}
110+
</nav>
111+
</div>
112+
</div>
113+
</header>
114+
```
115+
116+
A relevant Jekyll Github Issue: <https://github.com/jekyll/jekyll/issues/332>
117+
118+
### Contact Form
119+
120+
If you'd like to keep the contact form, which uses <http://formspree.io/>, you will need to update the email address.
121+
122+
Currently, the `contact.md` has the following:
123+
124+
```html
125+
<form action="https://formspree.io/[email protected]" method="POST" class="form-stacked form-light">
126+
```
127+
128+
Where it says `[email protected]`, you will need to change that to the email that you wish to have the form data sent to. It will require you to fill the form out when you push it live for the first time so that you can confirm your email.
129+
130+
### Page Animation
131+
132+
If you would like to add a [fade-in-down effect](http://daneden.github.io/animate.css/), you can add `animated: true` to your `_config.yml`.
133+
134+
### Put in a Pixyll Plug
135+
136+
If you want to give credit to the Pixyll theme with a link to <http://pixyll.com> or my personal website <http://johnotander.com> somewhere, that'd be awesome. No worries if you don't.
137+
138+
### Enjoy
139+
140+
I hope you enjoy using Pixyll. If you encounter any issues, please feel free to let me know by creating an [issue](https://github.com/johnotander/pixyll/issues). I'd love to help.
141+
142+
## Upgrading Pixyll
143+
144+
Pixyll is always being improved by its users, so sometimes one may need to upgrade.
145+
146+
#### Ensure there's an upstream remote
147+
148+
If `git remote -v` doesn't have an upstream listed, you can do the following to add it:
149+
150+
```
151+
git remote add upstream https://github.com/johnotander/pixyll.git
152+
```
153+
154+
#### Pull in the latest changes
155+
156+
```
157+
git pull upstream master
158+
```
159+
160+
There may be merge conflicts, so be sure to fix the files that git lists if they occur. That's it!
161+
162+
## Contributing
163+
164+
1. Fork it
165+
2. Create your feature branch (`git checkout -b my-new-feature`)
166+
3. Commit your changes (`git commit -am 'Add some feature'`)
167+
4. Push to the branch (`git push origin my-new-feature`)
168+
5. Create new Pull Request
169+
170+
## Thanks to the following:
171+
172+
* [BASSCSS](http://basscss.com)
173+
* [Jekyll](http://jekyllrb.com)
174+
* [Refills](http://refills.bourbon.io/)
175+
* [Solarized](http://ethanschoonover.com/solarized)
176+
* [Animate.css](http://daneden.github.io/animate.css/)

_config.yml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Site settings
2+
title: Pixyll
3+
4+
author: John Otander
5+
description: "A simple, beautiful theme for Jekyll that emphasizes content rather than aesthetic fluff."
6+
baseurl: ""
7+
url: "http://pixyll.com"
8+
9+
# Google analytics
10+
google_analytics:
11+
12+
# Optional features
13+
animated: false
14+
show_related_posts: false
15+
show_post_footers: false
16+
17+
# Disqus post comments
18+
# (leave blank to disable Disqus)
19+
disqus_shortname:
20+
21+
# Social icons
22+
show_social_icons: false
23+
github_username:
24+
stackoverflow_id:
25+
twitter_username:
26+
google_plus_id:
27+
linkedin_username:
28+
angellist_username:
29+
bitcoin_url:
30+
paypal_url:
31+
flattr_button:
32+
33+
# Post sharing icons
34+
show_sharing_icons: false
35+
share_text: 'Share this post!'
36+
# Change to 'true' to enable individual icons
37+
share_facebook: false
38+
share_twitter: false
39+
share_googleplus: false
40+
share_linkedin: false
41+
share_digg: false
42+
share_tumblr: false
43+
share_reddit: false
44+
share_stumbleupon: false
45+
share_hackernews: false
46+
47+
# Build settings
48+
markdown: redcarpet
49+
redcarpet:
50+
extensions: ['smart', 'tables', 'with_toc_data']
51+
permalink: pretty
52+
paginate: 3
53+
sass:
54+
compressed: true

_includes/footer.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<footer class="footer">
2+
<div class="p2 wrap">
3+
<div class="measure mt1 center">
4+
<small>
5+
Crafted with &lt;3 by <a href="http://johnotander.com">John Otander</a> (<a href="https://twitter.com/4lpine">@4lpine</a>).<br>
6+
&lt;/&gt; available on <a href="https://github.com/johnotander/pixyll">Github</a>.
7+
</small>
8+
</div>
9+
</div>
10+
</footer>

_includes/head.html

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<title>{% if page.title %}{{ page.title | strip_html }} &#8211; {% endif %}{{ site.title | strip_html }}</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta name="description" content="{% if page.summary %}{{ page.summary | xml_escape }}{% else %}{{ site.description | xml_escape }}{% endif %}">
7+
<meta name="author" content="{{ site.author }}">
8+
{% if page.categories %}<meta name="keywords" content="{{ page.categories | join: ', ' }}">{% endif %}
9+
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
10+
11+
<!-- Custom CSS -->
12+
<link rel="stylesheet" href="{{ "/css/pixyll.css" | prepend: site.baseurl }}" type="text/css">
13+
14+
<!-- Fonts -->
15+
<link href='//fonts.googleapis.com/css?family=Merriweather:900,900italic,300,300italic' rel='stylesheet' type='text/css'>
16+
<link href='//fonts.googleapis.com/css?family=Lato:900,300' rel='stylesheet' type='text/css'>
17+
{% if site.show_social_icons or site.show_sharing_icons %}
18+
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
19+
{% endif %}
20+
21+
22+
<!-- Open Graph -->
23+
<!-- From: https://github.com/mmistakes/hpstr-jekyll-theme/blob/master/_includes/head.html -->
24+
<meta property="og:locale" content="en_US">
25+
<meta property="og:type" content="article">
26+
<meta property="og:title" content="{% if page.title %}{{ page.title | xml_escape }}{% else %}{{ site.title | xml_escape }}{% endif %}">
27+
<meta property="og:description" content="{% if page.description %}{{ page.description | xml_escape }}{% else %}{{ site.description | xml_escape }}{% endif %}">
28+
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
29+
<meta property="og:site_name" content="{{ site.title | xml_escape }}">
30+
31+
<!-- Icons -->
32+
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
33+
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
34+
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
35+
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
36+
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
37+
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
38+
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
39+
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
40+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
41+
<link rel="icon" type="image/png" href="/favicon-192x192.png" sizes="192x192">
42+
<link rel="icon" type="image/png" href="/favicon-160x160.png" sizes="160x160">
43+
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
44+
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
45+
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
46+
47+
{% if site.google_analytics %}
48+
<script type="text/javascript">
49+
var _gaq = _gaq || [];
50+
_gaq.push(['_setAccount', '{{ site.google_analytics }}']);
51+
_gaq.push(['_trackPageview']);
52+
(function() {
53+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
54+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
55+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
56+
})();
57+
</script>
58+
{% endif %}
59+
</head>

_includes/header.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<header class="site-header px2 px-responsive">
2+
<div class="mt2 wrap">
3+
<div class="measure">
4+
<a href="{{ site.url }}" class="site-title">{{ site.title }}</a>
5+
<nav class="site-nav right">
6+
{% include navigation.html %}
7+
</nav>
8+
<div class="clearfix"></div>
9+
{% if site.show_social_icons %}
10+
{% include social_links.html %}
11+
{% endif %}
12+
</div>
13+
</div>
14+
</header>

_includes/navigation.html

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<a href="{{ site.baseurl }}/about/">About</a>
2+
<a href="{{ site.baseurl }}/contact/">Contact</a>

_includes/pagination.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<div class="pagination clearfix mb1 mt4">
2+
<div class="left">
3+
{% if paginator.previous_page %}
4+
{% if paginator.page == 2 %}
5+
<a class="pagination-item" href="{{ site.baseurl }}/">Newer</a>
6+
{% else %}
7+
<a class="pagination-item" href="{{ site.baseurl }}/page{{paginator.previous_page}}/">Newer</a>
8+
{% endif %}
9+
{% else %}
10+
<span class="pagination-item disabled">Newer</span>
11+
{% endif %}
12+
</div>
13+
<div class="right">
14+
{% if paginator.next_page %}
15+
<a class="pagination-item" href="{{ site.baseurl }}/page{{paginator.next_page}}/">Older</a>
16+
{% else %}
17+
<span class="pagination-item disabled">Older</span>
18+
{% endif %}
19+
</div>
20+
</div>

_includes/post_footer.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<div class="py2 post-footer">
2+
<img src="/images/me.jpeg" alt="John Otander" class="avatar" />
3+
<p>
4+
Pixyll is an open-source Jekyll theme that's built by <a href="http://johnotander.com">John Otander</a>.
5+
When he's not writing code and building things, he likes to ski. A. Lot.
6+
</p>
7+
<p>
8+
Follow him on <a href="https://twitter.com/4lpine">Twitter</a>.
9+
</p>
10+
</div>

0 commit comments

Comments
 (0)