Skip to content
This repository was archived by the owner on Jan 27, 2018. It is now read-only.

Commit cf2d3de

Browse files
committed
Dinky.
1 parent 25e1aec commit cf2d3de

File tree

13 files changed

+613
-5
lines changed

13 files changed

+613
-5
lines changed

_includes/themes/dinky/default.html

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
6+
<meta name="author" content="{{ site.author.name }}" />
7+
<title>{{ page.title }}</title>
8+
9+
<link rel="stylesheet" href="{{ ASSET_PATH }}/css/styles.css">
10+
<link rel="stylesheet" href="{{ ASSET_PATH }}/css/pygment_trac.css">
11+
<script src="{{ ASSET_PATH }}/js/scale.fix.js"></script>
12+
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
13+
<!--[if lt IE 9]>
14+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
15+
<![endif]-->
16+
17+
{% include JB/analytics %}
18+
</head>
19+
<body>
20+
<div class="wrapper">
21+
<header>
22+
<h1 class="header"><a href="{{ HOME_PATH }}">{{ site.title }}</a></h1>
23+
<p class="header">{{ site.tagline }}</p>
24+
<ul>
25+
{% assign pages_list = site.pages %}
26+
{% assign group = 'navigation' %}
27+
{% include JB/pages_list %}
28+
</ul>
29+
{% if site.ads.google %}
30+
<div class="misc ad">
31+
<script type="text/javascript"><!--
32+
google_ad_client = "{{ site.ads.google.client }}";
33+
google_ad_slot = "{{ site.ads.google.slot }}";
34+
google_ad_width = {{ site.ads.google.width }};
35+
google_ad_height = {{ site.ads.google.height }};
36+
//-->
37+
</script>
38+
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
39+
</div>
40+
{% endif %}
41+
{% if site.author %}
42+
<div class="misc vcard">
43+
<h4>about</h4>
44+
<ul>
45+
{% if site.author.email %}
46+
<li class="contact"><address><span class="author fn n">{{ site.author.name }}</span> - <span class="fn email">{{ site.author.email }}</span></address></li>
47+
{% endif %}
48+
{% if site.author.github %}
49+
<li class="github"><a href="http://github.com/{{ site.author.github }}/" rel="me">github.com/{{ site.author.github }}</a></li>
50+
{% endif %}
51+
{% if site.author.twitter %}
52+
<li class="twitter"><a href="http://twitter.com/{{ site.author.twitter }}/" rel="me">twitter.com/{{ site.author.twitter }}</a></li>
53+
{% endif %}
54+
{% if site.author.facebook %}
55+
<li class="facebook"><a href="http://facebook.com/{{ site.author.facebook }}/" rel="me">facebook.com/{{ site.author.facebook }}</a></li>
56+
{% endif %}
57+
{% if site.author.flickr %}
58+
<li class="flickr"><a href="http://flickr.com/{{ site.author.flickr }}/" rel="me">flickr.com/{{ site.author.flickr }}</a></li>
59+
{% endif %}
60+
{% if site.author.yelp %}
61+
<li class="yelp"><a href="http://{{ site.author.yelp }}.yelp.com/" rel="me">{{ site.author.yelp }}.yelp.com</a></li>
62+
{% endif %}
63+
{% if site.author.pinterest %}
64+
<li class="pinterest"><a href="http://pinterest.com/{{ site.author.pinterest }}" rel="me">pinterest.com/{{ site.author.pinterest }}</a></li>
65+
{% endif %}
66+
</ul>
67+
</div><!-- misc -->
68+
{% endif %}
69+
</header>
70+
71+
<section>
72+
{{ content }}
73+
</section>
74+
75+
<footer>
76+
<p><small>Hosted on <a href="http://pages.github.com/">GitHub Pages</a> using the <a href="https://github.com/sodabrew/theme-dinky">Dinky theme</a> for <a href="http://jekyllbootstrap.com/">Jekyll Bootstrap</a></small></p>
77+
</footer>
78+
</div>
79+
<!--[if !IE]><script>fixScale(document);</script><!--<![endif]-->
80+
</body>
81+
</html>

_includes/themes/dinky/page.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<section>
2+
<h1>{{ page.title }}</h1>
3+
4+
{{ content }}
5+
6+
{% include JB/comments %}
7+
</section>

_includes/themes/dinky/post.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<section>
2+
<h1>{{ page.title }}</h1>
3+
4+
{{ content }}
5+
6+
{% include JB/comments %}
7+
</section>

_includes/themes/dinky/settings.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
theme:
2+
name: dinky

_layouts/default.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
theme :
3-
name : twitter
2+
theme:
3+
name: dinky
44
---
55
{% include JB/setup %}
6-
{% include themes/twitter/default.html %}
6+
{% include themes/dinky/default.html %}

_layouts/page.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
layout: default
33
---
44
{% include JB/setup %}
5-
{% include themes/twitter/page.html %}
5+
{% include themes/dinky/page.html %}

_layouts/post.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
layout: default
33
---
44
{% include JB/setup %}
5-
{% include themes/twitter/post.html %}
5+
{% include themes/dinky/post.html %}

_posts/2013-05-05-hello-world.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: post
3+
title: "Hello World"
4+
description: ""
5+
category:
6+
tags: []
7+
---
8+
{% include JB/setup %}
9+
10+
Boblob Law Law Blog
+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
.highlight { background: #ffffff; }
2+
.highlight .c { color: #999988; font-style: italic } /* Comment */
3+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
4+
.highlight .k { font-weight: bold } /* Keyword */
5+
.highlight .o { font-weight: bold } /* Operator */
6+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
7+
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
8+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
9+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
10+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
11+
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
12+
.highlight .ge { font-style: italic } /* Generic.Emph */
13+
.highlight .gr { color: #aa0000 } /* Generic.Error */
14+
.highlight .gh { color: #999999 } /* Generic.Heading */
15+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
16+
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
17+
.highlight .go { color: #888888 } /* Generic.Output */
18+
.highlight .gp { color: #555555 } /* Generic.Prompt */
19+
.highlight .gs { font-weight: bold } /* Generic.Strong */
20+
.highlight .gu { color: #800080; font-weight: bold; } /* Generic.Subheading */
21+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
22+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
23+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
24+
.highlight .kn { font-weight: bold } /* Keyword.Namespace */
25+
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
26+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
27+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
28+
.highlight .m { color: #009999 } /* Literal.Number */
29+
.highlight .s { color: #d14 } /* Literal.String */
30+
.highlight .na { color: #008080 } /* Name.Attribute */
31+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
32+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
33+
.highlight .no { color: #008080 } /* Name.Constant */
34+
.highlight .ni { color: #800080 } /* Name.Entity */
35+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
36+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
37+
.highlight .nn { color: #555555 } /* Name.Namespace */
38+
.highlight .nt { color: #000080 } /* Name.Tag */
39+
.highlight .nv { color: #008080 } /* Name.Variable */
40+
.highlight .ow { font-weight: bold } /* Operator.Word */
41+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
42+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
43+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
44+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
45+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
46+
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
47+
.highlight .sc { color: #d14 } /* Literal.String.Char */
48+
.highlight .sd { color: #d14 } /* Literal.String.Doc */
49+
.highlight .s2 { color: #d14 } /* Literal.String.Double */
50+
.highlight .se { color: #d14 } /* Literal.String.Escape */
51+
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
52+
.highlight .si { color: #d14 } /* Literal.String.Interpol */
53+
.highlight .sx { color: #d14 } /* Literal.String.Other */
54+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
55+
.highlight .s1 { color: #d14 } /* Literal.String.Single */
56+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
57+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
58+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
59+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
60+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
61+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
62+
63+
.type-csharp .highlight .k { color: #0000FF }
64+
.type-csharp .highlight .kt { color: #0000FF }
65+
.type-csharp .highlight .nf { color: #000000; font-weight: normal }
66+
.type-csharp .highlight .nc { color: #2B91AF }
67+
.type-csharp .highlight .nn { color: #000000 }
68+
.type-csharp .highlight .s { color: #A31515 }
69+
.type-csharp .highlight .sc { color: #A31515 }

0 commit comments

Comments
 (0)