Skip to content

Commit d5e3a28

Browse files
committed
theme
1 parent 295923e commit d5e3a28

File tree

848 files changed

+28978
-11
lines changed

Some content is hidden

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

848 files changed

+28978
-11
lines changed

.DS_Store

6 KB
Binary file not shown.

README.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
<h3>My github page</h3>
1+
Jekyll Themes
2+
=============
3+
4+
A directory of the best-looking themes for Jekyll blogs
5+
6+
7+
Submitting a Theme
8+
------------------
9+
10+
Have a theme you want to share?
11+
12+
* Fork the site on GitHub
13+
* Create a new post in the `_posts` directory and fill out the relevant YAML fields
14+
* Make a 250x200 thumbnail and drop it in the thumbnails directory. List its filename in the post's markdown file.
15+
* Test it out, then push your changes up and open a pull request.
16+
17+
18+
License
19+
-------
20+
21+
The contents of this repository are licensed under the [GNU Public License.](http://www.gnu.org/licenses/gpl-3.0.html)

_config.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
name: "chen haiqing's blog"
1+
name: Jekyll Themes
2+
url: http://matt.harzewski.com
3+
description: Insert tagline here
24

3-
description: "learning and pricticing make skillfull"
5+
permalink: /themes/:title/
46

5-
theme: minima
7+
plugins: [jekyll-paginate]
8+
9+
highlighter: pygments
10+
paginate: 20
11+
12+
markdown: rdiscount
13+
rdiscount:
14+
extensions: ['smart']
15+
16+
exclude: ['README.md', 'Gemfile.lock', 'Gemfile', 'Rakefile', 'vendor']

_layouts/default.html

+119
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>{{ page.title }}</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<link href="http://fonts.googleapis.com/css?family=Playball" rel="stylesheet">
8+
<link href="/assets/css/jekyllthemes.css" rel="stylesheet" />
9+
<link href="/assets/css/syntax.css" rel="stylesheet" />
10+
</head>
11+
12+
13+
<body>
14+
15+
16+
17+
<script>
18+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
19+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
20+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
21+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
22+
ga('create', 'UA-735643-13', 'jekyllthemes.org');
23+
ga('send', 'pageview');
24+
</script>
25+
26+
27+
28+
<header id="header">
29+
<div class="wrap">
30+
31+
<h1 id="logo"><a href="/">{{ site.name }}</a></h1>
32+
33+
</div>
34+
</header>
35+
36+
37+
38+
<div id="pagecontainer" class="container">
39+
40+
41+
42+
<!--<div class="hero-unit">
43+
<p><strong>Need a design for your <a href="http://jekyllrb.com/">Jekyll</a> blog?</strong> Whether you're looking for a fresh theme to drop in and go, or to use as a starting point for customization, you'll find the best ones available right here.</p>
44+
</div>-->
45+
46+
47+
48+
<div class="widebanner row">
49+
<div class="span12">
50+
<div class="banner72" id="banner72">
51+
52+
<script type="text/javascript"><!--
53+
54+
var width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
55+
56+
google_ad_client = "ca-pub-7611360452853908";
57+
58+
if (width > 769) {
59+
google_ad_slot = "6552835850";
60+
google_ad_width = 728;
61+
google_ad_height = 90;
62+
} else {
63+
var el = document.getElementById("banner72");
64+
el.parentNode.removeChild(el);
65+
}
66+
67+
//-->
68+
</script>
69+
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
70+
71+
</div>
72+
</div>
73+
</div>
74+
75+
76+
77+
<div id="content">
78+
79+
80+
{{ content }}
81+
82+
83+
</div>
84+
85+
86+
</div>
87+
88+
89+
90+
<footer id="footer">
91+
<div class="container">
92+
<div class="row">
93+
94+
<div class="span5 copyright">
95+
Copyright &copy; {{ site.time | date: '%Y' }} Matt Harzewski. Powered by <a href="http://jekyllrb.com">Jekyll</a>.
96+
<br /><br />
97+
<iframe src="http://ghbtns.com/github-btn.html?user=mattvh&repo=jekyllthemes&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
98+
<iframe src="http://ghbtns.com/github-btn.html?user=mattvh&repo=jekyllthemes&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
99+
<br /><br />
100+
</div>
101+
102+
<div class="span7">
103+
<h3>Want to Submit a Theme?</h3>
104+
<ul>
105+
<li>Fork <a href="https://github.com/mattvh/jekyllthemes" target="_blank">our site</a> on GitHub</li>
106+
<li>Create a new post in the <code>_posts</code> directory and fill out the relevant YAML fields</li>
107+
<li>Make a 250x200 thumbnail and drop it in the <code>thumbnails</code> directory. List its filename in the post's markdown file.</li>
108+
<li>Test it out, then push your changes up and open a pull request.</li>
109+
</ul>
110+
</div>
111+
112+
</div>
113+
</div>
114+
</footer>
115+
116+
117+
118+
</body>
119+
</html>

_layouts/post.html

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div id="post" class="container">
6+
7+
<div class="postthumb"><img src="/thumbnails/{{ page.thumbnail }}" /></div>
8+
9+
<h1>{{ page.title }}</h1>
10+
11+
<div class="meta clearfix">
12+
<strong>Author:</strong> {{ page.author }}
13+
14+
{% if page.license %}
15+
<br /><strong>License:</strong> {{ page.license }}
16+
{% endif %}
17+
18+
<br /><br />
19+
{% if page.homepage %}
20+
<a class="btn" href="{{ page.homepage }}"><i class="icon-home"></i> Homepage</a>
21+
{% endif %}
22+
{% if page.download %}
23+
<a class="btn" href="{{ page.download }}"><i class="icon-download-alt"></i> Download</a>
24+
{% endif %}
25+
{% if page.demo %}
26+
<a class="btn" href="{{ page.demo }}"><i class="icon-road"></i> Demo</a>
27+
{% endif %}
28+
{% if page.license_link %}
29+
<a class="btn" href="{{ page.license_link }}"><i class="icon-file"></i> License</a>
30+
{% endif %}
31+
</div>
32+
33+
34+
<div class="post-content">
35+
{{ content }}
36+
</div>
37+
38+
</div>

_posts/2013-06-01-scribble.markdown

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: post
3+
title: Scribble
4+
date: 2013-06-01 01:42:00
5+
homepage: https://github.com/muan/scribble
6+
download: https://github.com/muan/scribble/archive/gh-pages.zip
7+
demo: http://scribble.muan.co/
8+
author: Mu-An Chiou
9+
thumbnail: scribble.png
10+
license: MIT License
11+
license_link: https://github.com/muan/scribble/blob/gh-pages/LICENSE
12+
---
13+
14+
There is no clever design philosophy to talk about, I tried to find
15+
something to work with, and ‘scribble’ came to my mind. This theme uses
16+
Open Sans powered by Google Web Fonts, and was written in plain HTML,
17+
SCSS & CoffeeScript, though .scss & .coffee files wouldn’t be included
18+
in the theme.

_posts/2013-06-05-solar.markdown

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
layout: post
3+
title: Solar
4+
date: 2013-06-05 01:42:00
5+
homepage: https://github.com/mattvh/solar-theme-jekyll
6+
download: https://github.com/mattvh/solar-theme-jekyll/archive/master.zip
7+
demo: http://mattvh.github.io/solar-theme-jekyll/
8+
author: Matt Harzewski
9+
thumbnail: solar.png
10+
license: GNU General Public License Version 2 or higher
11+
license_link: https://github.com/mattvh/solar-theme-jekyll#license
12+
---
13+
14+
A stylish theme for Jekyll blogs, based on the Solarized color palette.
15+
For installation instructions, please read the README.md [on
16+
GitHub!](https://github.com/mattvh/solar-theme-jekyll)
17+
18+
## Features
19+
20+
* **Two color schemes** — One for Solarized Dark and one for Solarized
21+
Light. Just swap the reference to the `colors-dark.css` file with
22+
`colors-light.css` if you don't like light-on-dark.
23+
* **Linkblog support** — Solar will turn your post title into an
24+
external link if you add `external-url: http://example.org` to a
25+
post's YAML front matter.
26+
* **Responsive Design** — Solarized adapts to fit any screen size.

_posts/2013-06-15-left.markdown

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: post
3+
title: Left
4+
date: 2013-06-15 01:31:00
5+
homepage: https://github.com/holman/left
6+
download: https://github.com/holman/left/archive/gh-pages.zip
7+
demo: http://zachholman.com/left/
8+
author: Zach Holman
9+
thumbnail: left.png
10+
license: MIT License
11+
license_link: https://github.com/holman/left/blob/gh-pages/LICENSE
12+
---
13+
14+
Left is a clean, whitespace-happy layout for Jekyll.
15+
16+
This is designed to be an easy layout to modify for your own blog. It
17+
was extracted from [zachholman.com](http://zachholman.com/), which
18+
means it was battle-hardened from years of posting serious blog posts
19+
about emoji and swear words.

_posts/2013-06-15-slate.markdown

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: post
3+
title: Slate
4+
date: 2013-06-15 01:38:11
5+
homepage: https://github.com/jasoncostello/slate
6+
download: https://github.com/jasoncostello/slate/archive/master.zip
7+
author: Jason Costello
8+
thumbnail: slate.png
9+
license: MIT License
10+
license_link: https://github.com/jasoncostello/slate/blob/master/LICENSE
11+
---
12+
13+
Slate is responsive theme for GitHub Pages. [Fork
14+
it](https://github.com/jsncostello/slate/fork) and use it on your own
15+
site or generate one automatically using [GitHub
16+
Pages](http://pages.github.com).

_posts/2013-07-13-so-simple.markdown

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: post
3+
title: So Simple
4+
date: 2013-07-13 23:42:00
5+
homepage: https://github.com/mmistakes/so-simple-theme
6+
download: https://github.com/mmistakes/so-simple-theme/archive/master.zip
7+
demo: http://mmistakes.github.io/so-simple-theme/
8+
author: Michael Rose
9+
thumbnail: so-simple.png
10+
license: MIT License
11+
license_link: https://github.com/mmistakes/so-simple-theme/blob/master/LICENSE
12+
---
13+
14+
A simple and clean responsive Jekyll theme for words and photos.
15+
16+
* Responsive templates. Looking good on mobile, tablet, and desktop.
17+
* Gracefully degrading in older browsers. Compatible with Internet
18+
Explorer 8+ and all modern browsers.
19+
* Minimal embellishments and subtle animations.
20+
* Readable typography to make your words shine.
21+
* Support for large images to call out your favorite posts.
22+
* Simple and clear permalink structure.
23+
* Tags for Open Graph and Twitter Cards for a better social sharing
24+
experience.
25+
* Vanilla custom 404 page to get you started.

_posts/2013-08-19-balzac.markdown

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: post
3+
title: Balzac
4+
date: 2013-08-19 13:52:00
5+
homepage: https://github.com/coletownsend/balzac-for-jekyll
6+
download: https://github.com/coletownsend/balzac-for-jekyll/archive/master.zip
7+
author: Cole Townsend
8+
thumbnail: balzac.jpg
9+
license: MIT License
10+
license_link: https://github.com/ColeTownsend/Balzac-for-Jekyll/blob/master/LICENSE
11+
---
12+
13+
This is built on [Semantic.gs](http://semantic.gs/) grid framework
14+
which I edited a bit to make it fluid. It was forked from the wonderful
15+
[Minimal Mistakes theme](https://github.com/mmistakes/minimal-mistakes)
16+
by Michael Rose.
17+
18+
I hope you enjoy using, forking, whatevering this theme as much as I
19+
did making it.
20+
21+
### Features
22+
23+
* flexible, uses max-width for responsive goodness
24+
* responsive drop down menu
25+
* retina images using @2x
26+
* post loop in the footer showing 3 latest post
27+
* custom portfolio page for case studies

_posts/2013-08-23-lagom.markdown

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
layout: post
3+
title: Lagom
4+
date: 2013-08-23 12:00:00
5+
homepage: https://github.com/swanson/lagom
6+
download: https://github.com/swanson/lagom/archive/master.zip
7+
demo: http://lagom.mdswanson.com/
8+
author: Matt Swanson
9+
thumbnail: lagom.png
10+
license: MIT License
11+
license_link: https://github.com/swanson/lagom/blob/master/LICENSE
12+
---
13+
14+
Lagom, a [Jekyll][j] blog theme with just the right amount of style.
15+
16+
Extracted lovingly from [http://mdswanson.com][mds] for your enjoyment!
17+
18+
### Features
19+
20+
* Responsive, based on [Skeleton][skeleton]
21+
* [Font Awesome][font-awesome] for icons
22+
* Open Sans from [Google web fonts][gfonts]
23+
* Built-in Atom RSS feed
24+
25+
26+
[j]: http://jekyllrb.com/
27+
[mds]: http://mdswanson.com
28+
[skeleton]: http://www.getskeleton.com/
29+
[font-awesome]: http://fortawesome.github.io/Font-Awesome/
30+
[gfonts]: http://www.google.com/fonts/specimen/Open+Sans

0 commit comments

Comments
 (0)