Browse code

Added themes directory, improved javascript load and minification.

Brandon Mathis authored on 07/06/2011 at 20:12:46
Showing 62 changed files
... ...
@@ -19,7 +19,7 @@ simple_search: http://google.com/search
19 19
 email:
20 20
 
21 21
 # Twitter
22
-#twitter_user: imathis
22
+twitter_user: imathis
23 23
 twitter_tweet_count: 4
24 24
 twitter_show_replies: false
25 25
 twitter_follow_button: true
26 26
new file mode 100644
... ...
@@ -0,0 +1,12 @@
0
+//@import "partials/shared";
1
+//@import "partials/search";
2
+
3
+/* layout partials */
4
+@import "partials/header";
5
+@import "partials/navigation";
6
+@import "partials/page";
7
+@import "partials/sidebar";
8
+@import "partials/blog";
9
+@import "partials/footer";
10
+
11
+@import "partials/syntax";
0 12
new file mode 100644
... ...
@@ -0,0 +1,8 @@
0
+@include global-reset;
1
+@include reset-html5;
2
+
3
+@import "core/utilities";
4
+@import "core/theme";
5
+@import "core/layout";
6
+@import "core/typography";
7
+@import "partials";
0 8
new file mode 100644
... ...
@@ -0,0 +1,128 @@
0
+$default-border-radius: 4px;
1
+
2
+$pad-min: 18px;
3
+$pad-narrow: 18px;
4
+$pad-medium: 24px;
5
+$pad-wide: 30px;
6
+$sidebar-width-medium: 240px;
7
+$sidebar-pad-medium: 15px;
8
+$sidebar-pad-wide: 20px;
9
+$sidebar-width-wide: 300px;
10
+
11
+.group { @include pie-clearfix; }
12
+
13
+//html {  }
14
+body {
15
+  -webkit-text-size-adjust: none;
16
+  max-width: 1400px;
17
+  position: relative;
18
+  margin: 0 auto;
19
+  > header, > nav, > footer, #articles > article {
20
+    @extend .group;
21
+    padding-left: $pad-min;
22
+    padding-right: $pad-min;
23
+    @media only screen and (min-width: 480px) {
24
+      padding-left: $pad-narrow;
25
+      padding-right: $pad-narrow;
26
+    }
27
+    @media only screen and (min-width: 768px) {
28
+      padding-left: $pad-medium;
29
+      padding-right: $pad-medium;
30
+    }
31
+    @media only screen and (min-width: 992px) {
32
+      padding-left: $pad-wide;
33
+      padding-right: $pad-wide;
34
+    }
35
+  }
36
+  > header {
37
+    font-size: .8em;
38
+    padding-top: 1.5em;
39
+    padding-bottom: 1.5em;
40
+  }
41
+}
42
+
43
+.toggle-sidebar { display: none; }
44
+#articles { width: 100%; + aside { display: none; } }
45
+
46
+@media only screen and (min-width: 550px) {
47
+  body > header { font-size: 1em; }
48
+}
49
+@media only screen and (min-width: 768px) {
50
+  body { -webkit-text-size-adjust: auto; }
51
+  body > header { font-size: 1.2em; }
52
+  body > nav {
53
+    + div {
54
+      @extend .group;
55
+      padding: 0;
56
+      margin: 0 auto;
57
+      > div {
58
+        @extend .group;
59
+        margin-right: $sidebar-width-medium;
60
+      }
61
+    }
62
+  }
63
+  #articles {
64
+    padding-top: $pad-medium/2;
65
+    padding-bottom: $pad-medium/2;
66
+    float: left;
67
+    + aside {
68
+      width: $sidebar-width-medium - $sidebar-pad-medium*2;
69
+      padding: 0 $sidebar-pad-medium $sidebar-pad-medium;
70
+      display: block;
71
+      float: left;
72
+      margin: 0 -100% 0 0;
73
+    }
74
+  }
75
+  body > div > div { position: relative; }
76
+
77
+  .collapse-sidebar {
78
+    > div > div { margin-right: 10px; }
79
+    #articles + aside {
80
+      display: none;
81
+    }
82
+    .toggle-sidebar {
83
+      right: -1px;
84
+      background-color: $sidebar-bg;
85
+      border-right-width: 0;
86
+      text-indent: 2px;
87
+      border-left: 1px solid $sidebar-border;
88
+      @include border-bottom-right-radius(0);
89
+      @include border-bottom-left-radius(.3em);
90
+      @include link-colors(#aaa, #888);
91
+    }
92
+  }
93
+
94
+  .toggle-sidebar {
95
+    outline: none;
96
+    position: absolute; right: -21px; top: 0;
97
+    width: 20px;
98
+    font-size: 1.2em;
99
+    line-height: 1.1em;
100
+    padding-bottom: .1em;
101
+    text-indent: -1px;
102
+    text-decoration: none;
103
+    @include link-colors(#ccc, #999);
104
+    @include border-bottom-right-radius(.3em);
105
+    text-align: center;
106
+    background: $main-bg;
107
+    border-bottom: 1px solid $sidebar-border;
108
+    border-right: 1px solid $sidebar-border;
109
+    display: inline-block;
110
+  }
111
+}
112
+
113
+@media only screen and (min-width: 992px) {
114
+  body > * { font-size: 1.1em; }
115
+  body > header {
116
+    font-size: 1.3em;
117
+  }
118
+  body > nav + div > div { margin-right: $sidebar-width-wide; }
119
+  #articles {
120
+    padding-top: $pad-wide/2;
121
+    padding-bottom: $pad-wide/2;
122
+    + aside {
123
+      width: $sidebar-width-wide - $sidebar-pad-wide*2;
124
+      padding: 0 $sidebar-pad-wide $sidebar-pad-wide;
125
+    }
126
+  }
127
+}
0 128
new file mode 100644
... ...
@@ -0,0 +1,51 @@
0
+// Link Colors
1
+$link-color: lighten(#165b94, 3);
2
+$link-color-hover: darken(#165b94, 5);
3
+
4
+// Main Section Colors
5
+$body-color: #333333;
6
+$light-text: #999999;
7
+$page-bg: #252525;
8
+
9
+$header-bg: #333; //#0c2e46; //darken(#238bd2, 32); //#263448; //#323232;
10
+$header-border: lighten($header-bg, 15);
11
+$title-color: #f2f2f2;
12
+
13
+$nav-bg: #ccc;//#3a6ea5;
14
+$nav-color: darken($nav-bg, 38);
15
+$nav-color-hover: darken($nav-color, 25);
16
+$nav-border: darken($nav-bg, 10);
17
+$nav-border-top: lighten($nav-bg, 15);
18
+$nav-border-bottom: darken($nav-bg, 25);//darken($nav-bg, 5);
19
+$nav-border-left: darken($nav-bg, 11);
20
+$nav-border-right: lighten($nav-bg, 7);
21
+
22
+$sidebar-bg: #eee; //#f8f8f8; //desaturate(change-color(#e8f4f4, $hue: 207), 100); //mix(#f5f5f5, aqua, 93%);
23
+$sidebar-border: darken($sidebar-bg, 7);
24
+
25
+// Blog
26
+$article-border: #eeeeee;
27
+$main-bg: #f7f7f7;
28
+
29
+$footer-color: #999999;
30
+//$footer-bg: #444444;
31
+$footer-bg: $nav-bg;//$page-bg;
32
+$footer-border: $nav-border-top;//$page-bg;
33
+
34
+// Form Colors
35
+$fieldset-bg: #ececec;
36
+$fieldset-border: #c3c3c3;
37
+
38
+$textinput-color: #333333;
39
+$textinput-bg: #f4f4f4;
40
+$textinput-bg-focus: #fefeee;
41
+
42
+$textinput-border-top: #aaaaaa;
43
+$textinput-border-bottom: #c6c6c6;
44
+$textinput-border-left: #c3c3c3;
45
+$textinput-border-right: #c3c3c3;
46
+$textinput-border-focus: #989898;
47
+
48
+#articles a, #articles + aside a {
49
+  @include link-colors($link-color, $hover: saturate(darken($link_color, 15), 20), $focus: saturate(darken($link_color, 15), 20), $visited: darken(adjust_hue($link_color, 70), 10));
50
+}
0 51
new file mode 100644
... ...
@@ -0,0 +1,126 @@
0
+$type-border: #ddd;
1
+$type-color-light: #555;
2
+$type-color: #000;
3
+$blockquote: $type-border !default; //darken($type-border, 20) !default;
4
+$mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
5
+
6
+// Fonts
7
+//@include font-face("Adelle", font-files("adellebasic_bold-webfont.woff", woff, "adellebasic_bold-webfont.ttf", truetype, "adellebasic_bold-webfont.svg#webfontKykxqSyz", svg), $eot: "adellebasic_bold-webfont.eot" );
8
+.heading {
9
+  font-family: "Georgia", "PT Sans", "Helvetica Neue", Arial, sans-serif;
10
+  font-weight: bold;
11
+}
12
+.sans { font-family: "Helvetica Neue", Arial, sans-serif; }
13
+.serif { font-family: Georgia, Times, "Times New Roman", serif; }
14
+.mono { font-family: $mono; }
15
+
16
+body > header h1 {
17
+  font-size: 2em;
18
+  @extend .heading;
19
+  font-weight: normal;
20
+  line-height: 1.2em;
21
+  margin-bottom: 0.6667em;
22
+}
23
+
24
+body {
25
+  line-height: 1.5em;
26
+  color: $type-color;
27
+  @extend .serif;
28
+}
29
+
30
+
31
+#{headings()}{
32
+  @extend .heading;
33
+  text-rendering: optimizelegibility;
34
+  margin-bottom: 1em;
35
+  font-weight: normal;
36
+}
37
+h1 {
38
+  font-size: 2em;
39
+  line-height: 1.3334em
40
+}
41
+h2, section h1 {
42
+  font-size: 1.5em;
43
+}
44
+h3, section h2, section section h1 {
45
+  font-size: 1.3em;
46
+}
47
+h4, section h3, section section h2, section section section h1 {
48
+  font-size: 1em;
49
+}
50
+h5, section h4, section section h3 {
51
+  font-size: .9em;
52
+}
53
+h6, section h5, section section h4, section section section h3 {
54
+  font-size: .8em;
55
+}
56
+p, blockquote, ul, ol { margin-bottom: 1.5em; }
57
+
58
+ul{ list-style-type: disc; }
59
+
60
+ol{ list-style-type: decimal; ol { list-style-type: lower-alpha; } }
61
+ul ul, ol ol { margin-left: 1.75em; }
62
+
63
+li { margin-bottom: .5em; }
64
+
65
+strong { font-weight: bold; }
66
+
67
+em { font-style: italic; }
68
+
69
+sup, sub { font-size: 0.8em; position: relative;  display: inline-block; }
70
+sup { top: -.5em; }
71
+sub { bottom: -.5em; }
72
+
73
+q { font-style: italic;
74
+  &:before { content: "\201C"; }
75
+  &:after { content: "\201D"; }
76
+}
77
+
78
+em, dfn { font-style: italic; }
79
+
80
+strong, dfn { font-weight: bold; }
81
+
82
+del, s { text-decoration: line-through; }
83
+
84
+abbr, acronym { border-bottom: 1px dotted; cursor: help; }
85
+
86
+pre, code, tt { @extend .mono-font; }
87
+
88
+sub, sup { line-height: 0; }
89
+
90
+hr { margin-bottom: 0.2em; }
91
+
92
+small { font-size: .8em; }
93
+
94
+big { font-size: 1.2em; }
95
+
96
+blockquote {
97
+  $bq-margin: 1.2em;
98
+  font-style: italic;
99
+  position: relative;
100
+  margin-left: $bq-margin;
101
+  > p {
102
+    &:first-child:before {
103
+      content: "\201C";
104
+      position: absolute;
105
+      top: 0.1em;
106
+      left: -.5em;
107
+      font-size: 3em;
108
+      color: $blockquote;
109
+    }
110
+    &:last-child:after {
111
+      content: "\201D";
112
+      position: relative;
113
+      top: 0.3em;
114
+      line-height: 0;
115
+      font-size: 2em;
116
+      color: $blockquote;
117
+    }
118
+  }
119
+  + p > cite {
120
+    margin-left: $bq-margin;
121
+    text-align: right;
122
+    &:before { content: '– '; color: $type-color-light; }
123
+    a { font-style: italic; }
124
+  }
125
+}
0 126
new file mode 100644
... ...
@@ -0,0 +1,4 @@
0
+@mixin mask-image($img, $repeat: no-repeat){
1
+  @include experimental(mask-image, image-url($img), -webkit, -moz, -o, -ms);
2
+  @include experimental(mask-repeat, $repeat, -webkit, -moz, -o, -ms);
3
+}
0 4
new file mode 100644
... ...
@@ -0,0 +1,26 @@
0
+#articles + aside { display: none; }
1
+body > nav {
2
+  .site-serch {
3
+    width: 10em;
4
+    .search { width: 100%; background-color: #f6f6f6; }
5
+  }
6
+}
7
+
8
+body > nav, body > footer, body > div > div {
9
+  padding-left: .5em;
10
+  padding-right: .5em;
11
+}
12
+body > * { font-size: .8em; }
13
+body > header {
14
+  font-size: .5em;
15
+  padding: .4em .5em;
16
+}
17
+header, #{headings()} { text-align: center; }
18
+.site-search {
19
+  margin: .15em 0 0; padding: 0;
20
+  .search {
21
+    padding: .3em .8em 0;
22
+    line-height: 1.5em;
23
+    font-size: .85em;
24
+  }
25
+}
0 26
new file mode 100644
... ...
@@ -0,0 +1,8 @@
0
+//body {
1
+  //padding: 0 1em;
2
+//}
3
+//body > header {
4
+  //font-size: 1em;
5
+  //padding-top: .5em;
6
+  //padding-bottom: .5em;
7
+//}
0 8
new file mode 100644
... ...
@@ -0,0 +1,19 @@
0
+//@include media-layout(1.2em, 20em, 1em);
1
+//body > * {
2
+  //margin: 0 auto;
3
+  //font-size: 1em;
4
+//}
5
+//body {
6
+  //max-width: 1280px;
7
+  //margin: 0 auto;
8
+  //> header {
9
+    //padding-top: 2em;
10
+    //padding-bottom: 1em;
11
+  //}
12
+  //> nav {
13
+    //border-left: 1px solid $header-border;
14
+    //border-right: 1px solid $header-border;
15
+    //@include border-top-radius(.6em);
16
+  //}
17
+//}
18
+
0 19
new file mode 100644
... ...
@@ -0,0 +1,54 @@
0
+#articles {
1
+  > article {
2
+    padding-bottom: 1em;
3
+    &:last-child { margin-bottom: 0; border-bottom: none; }
4
+    h2 {
5
+      padding-top: 0.8em;
6
+      //border-top: 3px double $type-border;
7
+      background: inline-image('dotted-border.png') top left repeat-x;
8
+    }
9
+    .byline + time:before, .byline + time +time:before {
10
+      content: "\2022 ";
11
+      padding: 0 .3em 0 .2em;
12
+      display: inline-block;
13
+      @include opacity(.5);
14
+    }
15
+    header {
16
+      padding-top: 2em;
17
+      margin-bottom: 1.5em;
18
+      padding-bottom: 1.5em;
19
+      background: inline-image('dotted-border.png') bottom left repeat-x;
20
+      h1 {
21
+        margin: 0;
22
+        a { text-decoration: none;
23
+          &:hover { text-decoration: underline; } }
24
+      }
25
+      p {
26
+        font-size: .9em;
27
+        color: $type-color-light;
28
+        border: none;
29
+        padding-top: 0;
30
+        margin: 0;
31
+        font-style: italic;
32
+        font-family: "Georgia", Palatino, Times, "Times New Roman";
33
+      }
34
+    }
35
+    .entry-content {
36
+      img { max-width: 100%; }
37
+    }
38
+    #disqus_thread { }
39
+    .meta {
40
+      border-bottom: 1px dashed #dddddd;
41
+      text-transform: uppercase;
42
+      color: #777777;
43
+      padding: 8px 0 5px;
44
+      margin-bottom: 1.5em;
45
+      font-size: 75%;
46
+      letter-spacing: 1px;
47
+    }
48
+
49
+    .footer {
50
+      padding-top: 15px;
51
+    }
52
+  }
53
+}
0 54
new file mode 100644
... ...
@@ -0,0 +1,4 @@
0
+.delicious-posts {
1
+  a.delicious-link { margin-bottom: .5em; display: block; }
2
+  p { font-size: 1em; }
3
+}
0 4
new file mode 100644
... ...
@@ -0,0 +1,17 @@
0
+body > footer {
1
+  @extend .sans;
2
+  font-size: .8em;
3
+  color: $nav-color;
4
+  text-shadow: lighten($footer-bg, 5) 0 1px;
5
+  background-color: $footer-bg;
6
+  @include background(linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)));
7
+  border-top: 1px solid $footer-border;
8
+  position: relative;
9
+  padding-top: 1em;
10
+  padding-bottom: 1em;
11
+  z-index: 1;
12
+  a {
13
+    @include link-colors($nav-color, $nav-color-hover);
14
+  }
15
+  p:last-child { margin-bottom: 0; }
16
+}
0 17
new file mode 100644
... ...
@@ -0,0 +1,11 @@
0
+body > header {
1
+  background-color: $header_bg;
2
+  h1 {
3
+    display: inline-block;
4
+    margin: 0;
5
+    a, a:visited {
6
+      color: $title_color;
7
+      text-decoration: none;
8
+    }
9
+  }
10
+}
0 11
new file mode 100644
... ...
@@ -0,0 +1,116 @@
0
+body > nav {
1
+  position: relative;
2
+  background-color: $nav-bg;
3
+  @include background(linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)));
4
+  border: {
5
+    top: 1px solid $nav-border-top;
6
+    bottom: 1px solid $nav-border-bottom; }
7
+  padding-top: .35em;
8
+  padding-bottom: .35em;
9
+  //position: absolute; left: 0; right: 0; top: 0;
10
+  form {
11
+    @include background-clip(padding-box);
12
+    margin: 0; padding: 0;
13
+    .search {
14
+      padding: .25em .5em 0;
15
+      font-size: .85em;
16
+      line-height: 1em;
17
+      width: 95%;
18
+      @include border-radius(.5em);
19
+      @include background-clip(padding-box);
20
+      @include box-shadow(lighten($nav-bg, 2) 0 1px);
21
+      background-color: lighten($nav-bg, 15);
22
+      border: 1px solid $nav-border;
23
+      color: #888;
24
+      &:focus {
25
+        color: #444;
26
+        border-color: #80b1df;
27
+        @include box-shadow(#80b1df 0 0 4px, #80b1df 0 0 3px inset);
28
+        background-color: #fff;
29
+        outline: none;
30
+      }
31
+    }
32
+  }
33
+  fieldset[role=site-search]{ float: right; width: 48%; }
34
+  fieldset[role=mobile-nav]{ float: left; width: 48%;
35
+    select{ width: 100%; font-size: .8em; border: 1px solid #888;}
36
+  }
37
+  ul { display: none; }
38
+  @media only screen and (min-width: 550px) {
39
+    font-size: .9em;
40
+    ul {
41
+      @include horizontal-list(0);
42
+      float: left;
43
+      //float: right;
44
+      display: block;
45
+      padding-top: .25em;
46
+    }
47
+    ul[role=subscription] {
48
+      margin-left: .8em;
49
+      float: right;
50
+      li:last-child a { padding-right: 0; }
51
+    }
52
+    ul li {
53
+      margin: 0;
54
+    }
55
+    a {
56
+      @include link-colors($nav-color, $nav-color-hover, $visited: $nav-color);
57
+      @extend .sans;
58
+      text-shadow: lighten($nav-bg, 12) 0 1px;
59
+      float: left;
60
+      text-decoration: none;
61
+      font-size: .9em;
62
+      padding: .1em 0;
63
+      line-height: 1.5em;
64
+    }
65
+    li + li {
66
+      border-left: 1px solid $nav-border-left;
67
+      margin-left: .8em;
68
+      a {
69
+        padding-left: .8em;
70
+        border-left: 1px solid $nav-border-right;
71
+      }
72
+    }
73
+    fieldset[role=mobile-nav] { display: none; }
74
+    fieldset[role=site-search]{ width: 100%; }
75
+    form {
76
+      float: right;
77
+      text-align: left;
78
+      width: $sidebar-width-medium - $pad-medium*2 - $sidebar-pad-medium + 5px;
79
+      padding-left: .8em;
80
+      .search {
81
+        width: 93%;
82
+        font-size: .95em;
83
+        line-height: 1.2em;
84
+      }
85
+    }
86
+  }
87
+
88
+  @media only screen and (min-width: 992px) {
89
+    form {
90
+      width: $sidebar-width-wide - $pad-wide - $sidebar-pad-wide*2 + 5px;
91
+    }
92
+  }
93
+}
94
+.maskImage {
95
+  ul[role=subscription] { li, a { border: 0; padding: 0; }}
96
+  a[rel=subscribe-rss]{
97
+    position: relative; top: -2px;
98
+    width: image-width('rss.png');
99
+    height: image-height('rss.png');
100
+    @include mask-image('rss.png');
101
+    text-indent: -999999em;
102
+    background-color: $nav-border-right;
103
+    border: 0;
104
+    padding: 0;
105
+    &:hover:after { background-color: darken($nav-border-left, 10); }
106
+    &:after {
107
+      content: "";
108
+      @include mask-image('rss.png');
109
+      width: image-width('rss.png');
110
+      height: image-height('rss.png');
111
+      position: absolute; top: -1px; left: 0;
112
+      background-color: $nav-border-left;
113
+    }
114
+  }
115
+}
0 116
new file mode 100644
... ...
@@ -0,0 +1,18 @@
0
+html {
1
+  background: $page-bg inline-image('line-tile.png') top left;
2
+}
3
+body {
4
+  border: 0 0 1px 0 solid darken($page-bg, 5);
5
+  > div {
6
+    background-color: $sidebar-bg;
7
+    border-bottom: 1px solid $nav-border-bottom;
8
+    > div {
9
+      background-color: $main-bg;
10
+      border-right: 1px solid $sidebar-border;
11
+    }
12
+  }
13
+}
14
+
15
+@media only screen and (min-width: 1400px) {
16
+  body { border: 0 1px 0 solid darken($page-bg, 5); }
17
+}
0 18
new file mode 100644
... ...
@@ -0,0 +1,12 @@
0
+#pinboard_linkroll {
1
+  .pin-title, .pin-description {
2
+    display: block;
3
+    margin-bottom: .5em;
4
+  }
5
+  .pin-tag {
6
+    @include hover-link;
7
+    @extend .aside-alt-link;
8
+    &:after { content: ','; }
9
+    &:last-child:after { content: ''; }
10
+  }
11
+}
0 12
new file mode 100644
1 13
new file mode 100644
... ...
@@ -0,0 +1,55 @@
0
+.side-shadow-border {
1
+  @include box-shadow(#fff 0 1px);
2
+}
3
+#articles + aside {
4
+  padding-top: 1.2em;
5
+  section {
6
+    @extend .sans;
7
+    font-size: .8em;
8
+    line-height: 1.5em;
9
+    margin-bottom: 1.5em;
10
+    h1 {
11
+      margin: 1.5em 0 0;
12
+      padding-bottom: .2em;
13
+      border-bottom: 1px solid $sidebar-border;
14
+      @extend .side-shadow-border;
15
+      + p {
16
+        padding-top: .4em;
17
+      }
18
+    }
19
+  }
20
+  ul {
21
+    margin-bottom: 0.5em;
22
+  }
23
+  li {
24
+    list-style: none;
25
+    padding: .5em 0;
26
+    margin: 0;
27
+    border-bottom: 1px solid $sidebar-border;
28
+    @extend .side-shadow-border;
29
+    p:last-child {
30
+      margin-bottom: 0;
31
+    }
32
+  }
33
+  a {
34
+    color: inherit;
35
+    @include transition(color, .5s);
36
+  }
37
+  &:hover a, &:hover #tweets a { color: $link-color; }
38
+  #recent_posts {
39
+    time {
40
+      text-transform: uppercase;
41
+      font-size: .9em;
42
+      color: #666;
43
+    }
44
+  }
45
+  @import "twitter";
46
+  @import "pinboard";
47
+  @import "delicious";
48
+}
49
+.aside-alt-link {
50
+  color: #999;
51
+  &:hover {
52
+    color: #555;
53
+  }
54
+}
0 55
new file mode 100644
... ...
@@ -0,0 +1,167 @@
0
+$base03:    #002b36; //darkest blue
1
+$base02:    #073642; //dark blue
2
+$base01:    #586e75; //darkest gray
3
+$base00:    #657b83; //dark gray
4
+$base0:     #839496; //medium gray
5
+$base1:     #93a1a1; //medium light gray
6
+$base2:     #eee8d5; //cream
7
+$base3:     #fdf6e3; //white
8
+$yellow:    #b58900;
9
+$orange:    #cb4b16;
10
+$red:       #dc322f;
11
+$magenta:   #d33682;
12
+$violet:    #6c71c4;
13
+$blue:      #268bd2;
14
+$cyan:      #2aa198;
15
+$green:     #859900;
16
+
17
+// If you prefer light colors, uncomment the following block to change themes
18
+//$base03: $base3;
19
+//$base02: $base2;
20
+//$base01: $base1;
21
+//$base00: $base0;
22
+//$base0: $base00;
23
+//$base1: $base01;
24
+//$base2: $base02;
25
+//$base3: $base03;
26
+
27
+.gutter {
28
+  .line-numbers {
29
+    text-align: right;
30
+    background: $base02 !important;
31
+    border-right: 1px solid darken($base03, 2);
32
+    @include box-shadow(lighten($base02, 2) -1px 0 inset);
33
+    text-shadow: darken($base02, 10) 0 -1px;
34
+    span { color: $base01 !important; }
35
+  }
36
+}
37
+html .gist .gist-file {
38
+  margin-bottom: 1.5em;
39
+  border: none;
40
+  .gist-syntax {
41
+    border-bottom: 1px solid #515151 !important;
42
+    .gist-highlight{
43
+      background: $base03 !important;
44
+      pre {
45
+        @extend .pre;
46
+        overflow-y: hidden;
47
+        overflow-x: auto;
48
+      }
49
+    }
50
+  }
51
+  .gist-meta {
52
+    @include background(linear-gradient(#b0b0b0, #a7a7a7));
53
+    padding: 0.5em;
54
+    background-color: #bababa !important;
55
+    border: 1px solid #9c9c9c;
56
+    border-top: 1px solid #d0d0d0;
57
+    border-bottom: 1px solid #777777;
58
+    font-size: .7em !important;
59
+    font-family: "Helvetica Neue", Arial, sans-serif !important;
60
+    color: #464646 !important;
61
+    line-height: 1.4em;
62
+  }
63
+}
64
+pre { @extend .pre; }
65
+
66
+.pre {
67
+  @extend .mono;
68
+  font-size: .8em;
69
+  line-height: 1.45em;
70
+  padding: 1em 1.2em !important;
71
+  background: $base03 !important;
72
+  color: $base1 !important;
73
+  span { color: $base1 !important; }
74
+  span { font-style: normal !important; font-weight: normal !important; }
75
+
76
+  .c      { color: $base01 !important; font-style: italic !important; }                     /* Comment */
77
+  .cm     { color: $base01 !important; font-style: italic !important; }                     /* Comment.Multiline */
78
+  .cp     { color: $base01 !important; font-style: italic !important;  }                     /* Comment.Preproc */
79
+  .c1     { color: $base01 !important; font-style: italic !important; }                     /* Comment.Single */
80
+  .cs     { color: $base01 !important; font-weight: bold !important; font-style: italic !important; }   /* Comment.Special */
81
+  .err    { color: $red !important; background: none !important; }                                            /* Error */
82
+  .k      { color: $orange !important; }                       /* Keyword */
83
+  .o      { color: $base1 !important; font-weight: bold !important; }                       /* Operator */
84
+  .p      { color: $base1 !important; }                                             /* Operator */
85
+  .ow     { color: $cyan !important; font-weight: bold !important; }                       /* Operator.Word */
86
+  .gd     { color: $base1 !important; background-color: mix($red, $base03, 25%) !important; display: block; }               /* Generic.Deleted */
87
+  .gd .x  { color: $base1 !important; background-color: mix($red, $base03, 35%) !important; display: block; }               /* Generic.Deleted.Specific */
88
+  .ge     { color: $base1 !important; font-style: italic !important; }                      /* Generic.Emph */
89
+  //.gr     { color: #aa0000 }                                          /* Generic.Error */
90
+  .gh     { color: $base01 !important; }                                          /* Generic.Heading */
91
+  .gi     { color: $base1 !important; background-color: mix($green, $base03, 20%) !important; display: block; }               /* Generic.Inserted */
92
+  .gi .x  { color: $base1 !important; background-color: mix($green, $base03, 40%) !important; display: block; }               /* Generic.Inserted.Specific */
93
+  //.go     { color: #888888 }                                          /* Generic.Output */
94
+  //.gp     { color: #555555 }                                          /* Generic.Prompt */
95
+  .gs     { color: $base1 !important; font-weight: bold !important; }                                       /* Generic.Strong */
96
+  .gu     { color: $violet !important; }                                          /* Generic.Subheading */
97
+  //.gt     { color: #aa0000 }                                          /* Generic.Traceback */
98
+  .kc     { color: $green !important; font-weight: bold !important; }                       /* Keyword.Constant */
99
+  .kd     { color: $blue !important; }                       /* Keyword.Declaration */
100
+  .kp     { color: $orange !important; font-weight: bold !important; }                       /* Keyword.Pseudo */
101
+  .kr     { color: $magenta !important; font-weight: bold !important; }                       /* Keyword.Reserved */
102
+  .kt     { color: $cyan !important; }                       /* Keyword.Type */
103
+  .n      { color: $blue !important; }
104
+  .na     { color: $blue !important; }                                          /* Name.Attribute */
105
+  .nb     { color: $green !important; }                                          /* Name.Builtin */
106
+  //.nc     { color: #445588; font-weight: bold }                       /* Name.Class */
107
+  .no     { color: $yellow !important; }                                          /* Name.Constant */
108
+  //.ni     { color: #800080 }                                          /* Name.Entity */
109
+  .ne     { color: $blue !important; font-weight: bold !important; }                       /* Name.Exception */
110
+  .nf     { color: $blue !important; font-weight: bold !important; }                       /* Name.Function */
111
+  .nn     { color: $yellow !important; }                                          /* Name.Namespace */
112
+  .nt     { color: $blue !important; font-weight: bold !important; }                                          /* Name.Tag */
113
+  .nx     { color: $yellow !Important; }
114
+  //.bp     { color: #999999 }                                          /* Name.Builtin.Pseudo */
115
+  //.vc     { color: #008080 }                                          /* Name.Variable.Class */
116
+  .vg     { color: $blue !important; }                                          /* Name.Variable.Global */
117
+  .vi     { color: $blue !important; }                                          /* Name.Variable.Instance */
118
+  .nv     { color: $blue !important; }                                          /* Name.Variable */
119
+  //.w      { color: #bbbbbb }                                          /* Text.Whitespace */
120
+  .mf     { color: $cyan !important; }                                          /* Literal.Number.Float */
121
+  .m      { color: $cyan !important; }                                          /* Literal.Number */
122
+  .mh     { color: $cyan !important; }                                          /* Literal.Number.Hex */
123
+  .mi     { color: $cyan !important; }                                          /* Literal.Number.Integer */
124
+  //.mo     { color: #009999 }                                          /* Literal.Number.Oct */
125
+  .s      { color: $cyan !important; }                                             /* Literal.String */
126
+  //.sb     { color: #d14 }                                             /* Literal.String.Backtick */
127
+  //.sc     { color: #d14 }                                             /* Literal.String.Char */
128
+  .sd     { color: $cyan !important; }                                             /* Literal.String.Doc */
129
+  .s2     { color: $cyan !important; }                                             /* Literal.String.Double */
130
+  .se     { color: $red !important; }                                             /* Literal.String.Escape */
131
+  //.sh     { color: #d14 }                                             /* Literal.String.Heredoc */
132
+  .si     { color: $blue !important; }                                             /* Literal.String.Interpol */
133
+  //.sx     { color: #d14 }                                             /* Literal.String.Other */
134
+  .sr     { color: $cyan !important; }                                          /* Literal.String.Regex */
135
+  .s1     { color: $cyan !important; }                                             /* Literal.String.Single */
136
+  //.ss     { color: #990073 }                                          /* Literal.String.Symbol */
137
+  //.il     { color: #009999 }                                          /* Literal.Number.Integer.Long */
138
+}
139
+
140
+.highlight {
141
+  margin-bottom: 1.5em;
142
+  overflow-y: hidden;
143
+  .gutter pre {
144
+    padding-left: .8em !important;
145
+    padding-right: .8em !important;
146
+  }
147
+}
148
+
149
+h3.filename {
150
+  font-size: 13px;
151
+  line-height: 2em;
152
+  text-align: center;
153
+  text-shadow: #cbcccc 0 1px 0;
154
+  color: #474747;
155
+  font-style: normal;
156
+  margin-bottom: 0;
157
+
158
+  @include border-top-radius(5px);
159
+  font-family: "Helvetica Neue",Arial, "Lucida Grande", "Lucida Sans Unicode", Lucida, sans-serif;
160
+  background: #aaaaaa image-url("code_bg.png") top repeat-x;
161
+  border: 1px solid #565656;
162
+  border-top-color: #cbcbcb;
163
+  border-left-color: #a5a5a5;
164
+  border-right-color: #a5a5a5;
165
+  border-bottom: 0;
166
+}
0 167
new file mode 100644
... ...
@@ -0,0 +1,33 @@
0
+#tweets {
1
+  .loading {
2
+    background: inline-image('bird_32_gray.png') no-repeat center .5em;
3
+    color: darken($sidebar-bg, 18);
4
+    text-shadow: $main-bg 0 1px;
5
+    text-align: center;
6
+    padding: 2.5em 0 .5em;
7
+    &.error {
8
+      background: inline-image('bird_32_gray_fail.png') no-repeat center .5em;
9
+    }
10
+  }
11
+  a { color: #666; @include hover-link; }
12
+  p {
13
+    position: relative;
14
+    padding-right: 1em;
15
+  }
16
+  a[href*='status']{
17
+    color: #aaa;
18
+    float: right;
19
+    padding: 0 0 .1em 1em;
20
+    position: relative; right: -1.3em;
21
+    text-shadow: #fff 0 1px;
22
+    font-size: .7em;
23
+    span { font-size: 1.5em; }
24
+    &:hover {
25
+      color: #555;
26
+      text-decoration: none;
27
+    }
28
+  }
29
+  a[href*='twitter.com/search']{
30
+    @extend .aside-alt-link;
31
+  }
32
+}
0 33
new file mode 100644
... ...
@@ -0,0 +1,2 @@
0
+@import "compass";
1
+@import "default/style";
0 2
new file mode 100644
... ...
@@ -0,0 +1,28 @@
0
+{% if page.author %}
1
+  {% assign author = page.author %}
2
+{% else %}
3
+  {% assign author = site.author %}
4
+{% endif %}
5
+<header>
6
+  {% if index %}
7
+    <h1 class="entry-title"><a href="{{ page.url }}">{{ page.title }}</a></h1>
8
+  {% else %}
9
+    <h1 class="entry-title">{{ page.title }}</h1>
10
+  {% endif %}
11
+  {% unless page.nometa %}
12
+    <p>
13
+      {% if page.date %}
14
+        <time datetime="{{ page.date | datetime }}" pubdate {% if page.updated %} updated {% endif %}>{{ page.date | ordinalize }}</time>
15
+      {% endif %}
16
+      {% if page.updated %}
17
+        <time class="updated" datetime="{{ page.updated | datetime }}"></time>
18
+      {% endif %}
19
+      {% if author %}<span class="byline author vcard">By <span class="fn">{{ author }}</span></span>{% endif %}
20
+    </p>
21
+  {% endunless %}
22
+</header>
23
+{% if index %}
24
+<div class="entry-content">{{ content | exerpt(content, page.url, 'Continue reading &raquo;') | smart_quotes }}</div>
25
+{% else %}
26
+<div class="entry-content">{{ content | smart_quotes }}</div>
27
+{% endif %}
0 28
new file mode 100644
... ...
@@ -0,0 +1,7 @@
0
+{% if site.delicious_user %}
1
+<section>
2
+  <h1>On Delicious</h1>
3
+  <script type="text/javascript" src="http://feeds.delicious.com/v2/js/{{ site.delicious_user }}?title=&count={{ site.delicious_count }}&sort=date&extended"></script>
4
+  <p><a href="http://delicious.com/{{ site.delicious_user }}">My Delicious Bookmarks &raquo;</a></p>
5
+</section>
6
+{% endif %}
0 7
new file mode 100644
... ...
@@ -0,0 +1,19 @@
0
+{% if site.pinboard_user %}
1
+<section>
2
+  <h1>My Pinboard</h1>
3
+  <ul id="pinboard_linkroll">Fetching linkroll...</ul>
4
+  <p><a href="http://pinboard.in/u:{{ site.pinboard_user }}">My Pinboard Bookmarks &raquo;</a></p>
5
+</section>
6
+<script type="text/javascript">
7
+  var linkroll = 'pinboard_linkroll'; //id target for pinboard list
8
+  var pinboard_user = "{{ site.pinboard_user }}"; //id target for pinboard list
9
+  var pinboard_count = {{ site.pinboard_count }}; //id target for pinboard list
10
+  (function(){
11
+    var pinboardInit = document.createElement('script');
12
+    pinboardInit.type = 'text/javascript';
13
+    pinboardInit.async = true;
14
+    pinboardInit.src = '/javascripts/pinboard.js';
15
+    document.getElementsByTagName('head')[0].appendChild(pinboardInit);
16
+  })();
17
+</script>
18
+{% endif %}
0 19
new file mode 100644
... ...
@@ -0,0 +1,12 @@
0
+{% if page.single and site.recent_posts %}
1
+<section>
2
+  <h1>Recent Posts</h1>
3
+  <ul id="recent_posts">
4
+    {% for post in site.posts limit: site.recent_posts %}
5
+      <li class="post">
6
+        <a href="{{ post.url }}">{{ post.title }}</a>
7
+      </li>
8
+    {% endfor %}
9
+  </ul>
10
+  </section>
11
+{% endif %}
0 12
new file mode 100644
... ...
@@ -0,0 +1,19 @@
0
+{% if site.twitter_user %}
1
+<section>
2
+  <h1>Latest Tweets</h1>
3
+  <ul id="tweets">
4
+    <li class="loading">Status updating...</li>
5
+  </ul>
6
+  <script type="text/javascript">
7
+    $.domReady(function(){
8
+      getTwitterFeed("{{site.twitter_user}}", {{site.twitter_tweet_count}}, {{site.twitter_show_replies}});
9
+    });
10
+  </script>
11
+  <script src="/javascripts/twitter.js" type="text/javascript"> </script>
12
+  {% if site.twitter_follow_button %}
13
+    <a href="http://twitter.com/{{ site.twitter_user }}" class="twitter-follow-button" data-width="208px" data-show-count="{{ site.twitter_show_follower_count }}">Follow @{{ site.twitter_user }}</a>
14
+  {% else %}
15
+    <p>Follow <a href="http://twitter.com/{{site.twitter_user}}">@{{ site.twitter_user }}</a></p>
16
+  {% endif %}
17
+</section>
18
+{% endif %}
0 19
new file mode 100644
... ...
@@ -0,0 +1,7 @@
0
+<script type="text/javascript">
1
+  var disqus_url = "{{ site.url }}{{ page.url }}";
2
+</script>
3
+<noscript>
4
+  <a href="http://{{ site.disqus_short_name }}.disqus.com/?url=ref">View the discussion thread</a>
5
+</noscript>
6
+<script type="text/javascript" src="http://disqus.com/forums/{{ site.disqus_short_name }}/embed.js"></script>
0 7
new file mode 100644
... ...
@@ -0,0 +1,4 @@
0
+<p>
1
+  Copyright &copy; {{ site.time | date: "%Y" }} - {{ site.author }} -
2
+  <span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span>
3
+</p>
0 4
new file mode 100644
... ...
@@ -0,0 +1,13 @@
0
+{% if site.google_analytics_tracking_id %}
1
+  <script type="text/javascript">
2
+    var _gaq = _gaq || [];
3
+    _gaq.push(['_setAccount', '{{ site.google_analytics_tracking_id }}']);
4
+    _gaq.push(['_trackPageview']);
5
+
6
+    (function() {
7
+      var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
8
+      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
9
+      var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
10
+    })();
11
+  </script>
12
+{% endif %}
0 13
new file mode 100644
... ...
@@ -0,0 +1,32 @@
0
+<!DOCTYPE html>
1
+<!--[if IEMobile 7 ]><html class="no-js iem7" manifest="default.appcache?v=1"><![endif]-->
2
+<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
3
+<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" manifest="default.appcache?v=1" lang="en"><!--<![endif]-->
4
+<head>
5
+  <meta charset="utf-8">
6
+  {% if page.title %}
7
+    <title>{{site.title}}: {{page.title}}{% if site.author %} - {{ site.author }}{% endif %}</title>
8
+  {% else %}
9
+    <title>{{site.title}}{% if site.author %} - {{ site.author }}{% endif %}</title>
10
+  {% endif %}
11
+  <meta name="author" content="{{site.author}}">
12
+  {% if page.description %}
13
+    <meta name="description" content="{{page.description}}"/>
14
+  {% endif %}
15
+
16
+  <!-- http://t.co/dKP3o1e -->
17
+  <meta name="HandheldFriendly" content="True">
18
+  <meta name="MobileOptimized" content="320">
19
+  <meta name="viewport" content="width=device-width, initial-scale=1">
20
+
21
+  {% if page.keywords %}
22
+    <meta name="keywords" content="{{page.keywords}}"/>
23
+  {% endif %}
24
+
25
+  <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
26
+  <script src="/javascripts/modernizr-2.0.js"></script>
27
+  <script src="/javascripts/ender.js"></script>
28
+  <script src="/javascripts/octopress.js" type="text/javascript"></script>
29
+  {% include google_analytics.html %}
30
+  <link href="/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml"/>
31
+</head>
0 32
new file mode 100644
... ...
@@ -0,0 +1 @@
0
+<h1><a href="/">{{ site.title }}</a></h1>
0 1
new file mode 100644
... ...
@@ -0,0 +1,16 @@
0
+<ul role="subscription">
1
+  <li><a href="{{ site.subscribe_rss }}" rel="subscribe-rss">RSS</a></li>
2
+  {% if site.subscribe_emai %}
3
+    <li><a href="{{ site.subscribe_email }}" rel="subscribe-email">Email</a></li>
4
+  {% endif %}
5
+</ul>
6
+<form action="{{ site.simple_search }}" method="get">
7
+  <fieldset role="site-search">
8
+    <input type="hidden" name="q" value="site:{{ site.url | search_url }}" />
9
+    <input class="search" type="text" name="q" results="0" placeholder="Search"/>
10
+  </fieldset>
11
+</form>
12
+<ul role="main-nav">
13
+  <li><a href="/">Home</a></li>
14
+  <li><a href="/archive.html">Archive</a></li>
15
+</ul>
0 16
new file mode 100644
... ...
@@ -0,0 +1,8 @@
0
+<section>
1
+  <h1>About Me</h1>
2
+  <p>Hi, I'm Octopress!</p>
3
+</section>
4
+{% include asides/recent_posts.html %}
5
+{% include asides/twitter.html %}
6
+{% include asides/delicious.html %}
7
+{% include asides/pinboard.html %}
0 8
new file mode 100644
... ...
@@ -0,0 +1,19 @@
0
+---
1
+layout: default
2
+---
3
+<div id="content">
4
+  <div class="post">
5
+    <h1 class="post-title">{{ page.month | date_to_month }} {{ page.year }}</h1>
6
+    <p class="lead">Posts from {{ page.month | date_to_month }}, {{ page.year }}</p>
7
+    <ul>
8
+      {% for d in (1..31) reversed %}
9
+      {% if page.collated_posts[page.year][page.month][d] %}
10
+      {% for p in page.collated_posts[page.year][page.month][d] reversed %}
11
+      <li><a href='{{ p.url }}'>{{ p.title }}</a></li>
12
+      {% endfor %}
13
+      {% endif %}
14
+      {% endfor %}
15
+    </ul>
16
+  </div>
17
+</div>
18
+
0 19
new file mode 100644
... ...
@@ -0,0 +1,25 @@
0
+---
1
+layout: default
2
+---
3
+<div id="content">
4
+	<div class="post">
5
+		<h1 class="post-title">{{ page.year }}</h1>
6
+		<p class="lead">Posts from the year {{ page.year }}</p>
7
+		{% for m in (1..12) reversed %}
8
+			{% if page.collated_posts[page.year][m] %}
9
+				<h3>{{ m | date_to_month }}</h3>
10
+				{% for d in (1..31) reversed %}
11
+					{% if page.collated_posts[page.year][m][d] %}
12
+						{% for p in page.collated_posts[page.year][m][d] reversed %}
13
+							<div>
14
+								<strong>{{ p.date | date: "%d" }}</strong>
15
+								<a href='{{ p.url }}'>{{ p.title }}</a>
16
+							</div>
17
+						{% endfor %}
18
+					{% endif %}
19
+				{% endfor %}
20
+			{% endif %}
21
+		{% endfor %}
22
+	</div>
23
+</div>
24
+
0 25
new file mode 100644
... ...
@@ -0,0 +1,26 @@
0
+{% include head.html %}
1
+<body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == 'none' %} class="no-sidebar" {% endif %}>
2
+  <header>{% include header.html %}</header>
3
+  <nav>{% include navigation.html %}</nav>
4
+  <div>
5
+    <div>
6
+      <div id="articles">{{ content }}</div>
7
+      {% unless page.sidebar == 'none' %}
8
+        <aside>{% include sidebar.html %}</aside>
9
+      {% endunless %}
10
+    </div>
11
+  </div>
12
+  <footer>{% include footer.html %}</footer>
13
+  {% if site.twitter_follow_button or site.twitter_tweet_button %}
14
+    <script type="text/javascript">
15
+      (function(){
16
+        var twitterWidgets = document.createElement('script');
17
+        twitterWidgets.type = 'text/javascript';
18
+        twitterWidgets.async = true;
19
+        twitterWidgets.src = 'http://platform.twitter.com/widgets.js';
20
+        document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
21
+      })();
22
+    </script>
23
+  {% endif %}
24
+</body>
25
+</html>
0 26
new file mode 100644
... ...
@@ -0,0 +1,13 @@
0
+---
1
+layout: default
2
+no_title_link: true
3
+permalink: pretty
4
+single: true
5
+---
6
+
7
+<article>
8
+  {% include article.html %}
9
+  {% if site.disqus_short_name %}
10
+    <div id="disqus_thread">{% include disqus_thread.html %}</div>
11
+  {% endif %}
12
+</article>
0 13
new file mode 100644
... ...
@@ -0,0 +1,16 @@
0
+---
1
+layout: default
2
+single: true
3
+---
4
+
5
+<article class="hentry">
6
+  {% include article.html %}
7
+  <footer>
8
+    <p>
9
+      <a href="http://twitter.com/share" class="twitter-share-button" data-url="{{ site.url }}{{ page.url }}" data-via="{{ site.twitter_user }}" data-counturl="{{ site.url }}{{ page.url }}" >Tweet</a>
10
+    </p>
11
+  </footer>
12
+  {% if site.disqus_short_name %}
13
+    <div id="disqus_thread">{% include disqus_thread.html %}</div>
14
+  {% endif %}
15
+</article>
0 16
new file mode 100644
... ...
@@ -0,0 +1,16 @@
0
+---
1
+title: Hello World! I'm Octopress!
2
+layout: post
3
+updated: March 10th, 2010
4
+---
5
+
6
+**Octopress is a blogging framework designed for hackers**, based on [Jekyll](http://github.com/mojombo/jekyll) the blog aware static site generator powering [Github pages](http://pages.github.com/).
7
+If you don't know what Jekyll is, [Jack Moffitt](http://metajack.im/2009/01/23/blogging-with-git-emacs-and-jekyll/) wrote a good summary:
8
+
9
+{% blockquote Jack Moffitt http://metajack.im/2009/01/23/blogging-with-git-emacs-and-jekyll/ Blogging with Git Emacs and Jekyll %}
10
+  Jekyll is a static blog generator; it transforms a directory of input files into another directory of files suitable for a blog. The management of the blog is handled by standard, familiar tools like creating and renaming files, the text editor of your choice, and version control.
11
+{% endblockquote %}
12
+
13
+There's no database to set up, and you get to use tools like Emacs, Vim, or TextMate to write your posts, not some lame in-browser text editor. Just write, generate, deploy, using the same tools and patterns you already use for your daily work.
14
+
15
+[Read the wiki to learn more](http://wiki.github.com/imathis/octopress/)
0 16
new file mode 100644
... ...
@@ -0,0 +1,6 @@
0
+---
1
+title: Test Post
2
+layout: post
3
+---
4
+
5
+This is a test!
0 6
new file mode 100644
... ...
@@ -0,0 +1,50 @@
0
+---
1
+title: "Test of Typography"
2
+date: 2011-04-07 19:17
3
+layout: post
4
+---
5
+
6
+In the past I've always designed my own business cards, printed them on expensive card stock, and hand-cut them with an X-Acto knife. My cards were way nicer than those my clients had gotten *professionally* printed with bubbly ink, no-bleed designs, and cheap paper. Though I put tremendous care into my cards, I never was happy with the design.
7
+
8
+## Why Have Business Cards?
9
+I'm rarely asked for my business card except when I attend conferences, of which I attend one or two each year. As a freelance contractor, I leave work by walking twenty-five feet from my office to the couch. Many of the
10
+people I work for I've never met in-person.
11
+
12
+When someone gives me their business card, I read it, pocket it, and eventually throw it out &mdash; sometimes before I remember to copy the information to my address book (sorry, just being honest). The reality is, with the ubiquity of the internet and with frictionless social networks like Twitter, I can connect with people immediately. So why have business cards?
13
+
14
+<!-- more -->
15
+
16
+### Inspiration Demands Action
17
+In one of our campfire chats [Nathaniel Talbott](http://twitter.com/NTalbott) showed off his business cards which he printed through [Moo](http://moo.com). They were half the size of regular business cards featuring the company logo on the front, and the url on the back. The unique size of the card intrigued me, and days later I couldn't stop thinking about designing a set of mini-cards for myself.
18
+
19
+<img src="/content/blog/2010/cards/box.jpg" alt="cards in a box" width="300px" class="right"/> Moo's [MiniCard's](http://moo.com/products/minicards.php) are very unique. You can print 100 cards, each with a totally different back. With a typical printing service this would be prohibitively expensive, but with Moo the rules are different. This freedom encourages us to go beyond nicely styled contact information and branding. Some clever uses involve offering unique invite codes for a web application, or sharing a photography portfolio with Moo's Flickr import feature.
20
+
21
+I realized that I could print several design iterations and decide later which worked best. Without the pressure to choose a single design, I felt the freedom to create.
22
+
23
+### The Freedom to Fail
24
+<img src="/content/blog/2010/cards/concepts.jpg" alt="card concepts" width="270px" class="left"/> I could be cheeky and print up half of my cards with my logo on one side and only my Twitter name on the other. For less than $20 for 100 cards, I wasn't even concerned about possibly screwing up a whole batch. So that's what I did. I designed cards that were good enough and I printed them. If the cards did't turn out how I wanted them to, I could improve and print again.
25
+
26
+<img src="/content/blog/2010/cards/handout.jpg" alt="handout cards" width="220px" class="right"/> The process was fun and simple, and as soon as I finished, I wanted to do it again. When my cards arrived, I was absolutely delighted by the print quality and the care put into their presentation. Smartly Moo even included some beautiful promotional cards to hand out when people inevitably ask about mine.
27
+
28
+### A Second Iteration
29
+After holding the finished product, I began to see how my design could be improved. I learned that Gill Sans is harder to read at a small size in a high contrast print, so I switched to Futura. I showed my cards to some far-sighted friends and adjusted my font size accordingly. I discarded a background gradient (which I should have known wouldn't translate well to print) in favor of a solid color. **Sidenote:** On screen, gradients emulate the subtleties of a natural light source, but on a real object it doesn't make sense and generally looks bad.
30
+
31
+I changed my approach choosing a single design with multiple color variations. In the promotional cards Moo sent me, I learned that they do a fantastic job with bright colors and I wanted to use that boldness in my design. I was inspired by what [Seth Godin said](http://sethgodin.typepad.com/seths_blog/2009/07/welcome-to-island-marketing.html):
32
+
33
+> Every interaction is both precious and an opportunity to delight.
34
+
35
+<img src="/content/blog/2010/cards/holder.jpg" alt="MiniCard Holder" width="220px" class="right"/> I pictured sliding a card out of my [MiniCard Holder](http://moo.com/products/accessories/holders/moo_minicard_holders) and revealing another brightly-colored card beneath. As I hand someone a card they'll see the flash of color and realize that their card was special, and different from my other cards. That's what I want my clients and future clients to feel.
36
+
37
+### The Final Design
38
+
39
+<img src="/content/blog/2010/cards/all.jpg" alt="all card designs" width="640px"/>
40
+
41
+The MiniCard's unique constraints inspired me with a fresh challenge and their pricing model encouraged me to experiment. Instead of treating business cards like a necessary design task, I saw them as a opportunity to release quickly, fail cheaply, and improve. Now when I give someone a business card, it's something valuable to me, and I hope they're delighted.
42
+
43
+**Update:** I thought I'd share some other great uses of Moo's MiniCards. There's a fantastic [Flikr pool](http://www.flickr.com/groups/moo/pool/), but here are some of my favorites. Enjoy:
44
+
45
+- [Product](http://www.flickr.com/photos/lushlampwork/4131018201/in/pool-moo) [tags](http://www.flickr.com/photos/lushlampwork/4297224179/in/pool-moo)
46
+- [Photography](http://www.flickr.com/photos/thisiswoly/4206576342/in/pool-moo) or [art](http://www.flickr.com/photos/lesleybarnes/4276368956/in/pool-moo) [portfolios](http://www.flickr.com/photos/playinprogress/4158223112/in/pool-moo)
47
+- [Gift](http://www.flickr.com/photos/polkadotcreations/4167249758/in/pool-moo) [tags](http://www.flickr.com/photos/22338102@N04/4278114745/in/pool-moo)
48
+- [An advent calendar](http://www.flickr.com/photos/bcome/4177034036/in/pool-moo)
49
+
0 50
new file mode 100644
... ...
@@ -0,0 +1,24 @@
0
+---
1
+layout: page
2
+title: Blog Archive
3
+nometa: true
4
+---
5
+{% for post in site.posts reverse %}
6
+  {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
7
+  {% capture this_month %}{{ post.date | date: "%B" }}{% endcapture %}
8
+  {% unless year == this_year %}
9
+    {% unless forloop.first %}</ul>{% endunless %}
10
+    {% assign year = this_year %}
11
+    <h2>{{ year }}</h2>
12
+    <ul class="blog_archives">
13
+  {% endunless %}
14
+  {% unless month == this_month %}
15
+    {% assign month = this_month %}
16
+    <li><h4>{{ month }}</h4></li>
17
+  {% endunless %}
18
+  <li>
19
+    <time datetime="{{ post.date | datetime }}" pubdate>{{ post.date | date: "%d"}}</time>
20
+    <a href="{{ post.url }}">{{post.title}}</a>
21
+  </li>
22
+  {% if forloop.last %}</ul>{% endif %}
23
+{% endfor %}
0 24
new file mode 100644
... ...
@@ -0,0 +1,28 @@
0
+---
1
+layout: nil
2
+---
3
+<?xml version="1.0" encoding="utf-8"?>
4
+<feed xmlns="http://www.w3.org/2005/Atom">
5
+
6
+  <title>{{ site.blog_title }}</title>
7
+  <link href="{{ site.url }}/atom.xml" rel="self"/>
8
+  <link href="{{ site.url }}/"/>
9
+  <updated>{{ site.time | date_to_xmlschema }}</updated>
10
+  <id>{{ site.url }}/</id>
11
+  <author>
12
+    <name>{{ site.author }}</name>
13
+    {% if site.email %}
14
+      <email>{{ site.email }}</email>
15
+    {% endif %}
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 | full_urls: site.url | xml_escape }}</content>
25
+  </entry>
26
+  {% endfor %}
27
+</feed>
0 28
new file mode 100755
1 29
Binary files /dev/null and b/themes/classic/source/fonts/adellebasic_bold-webfont.eot differ
2 30
new file mode 100755
... ...
@@ -0,0 +1,139 @@
0
+<?xml version="1.0" standalone="no"?>
1
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
2
+<svg xmlns="http://www.w3.org/2000/svg">
3
+<metadata>
4
+This is a custom SVG webfont generated by Font Squirrel.
5
+Copyright   : Copyright c 2009 by TypeTogether All rights reserved
6
+Designer    : Veronika Burian Jos Scaglione
7
+Foundry     : TypeTogether
8
+Foundry URL : wwwtypetogethercom
9
+</metadata>
10
+<defs>
11
+<font id="webfontKykxqSyz" horiz-adv-x="1167" >
12
+<font-face units-per-em="2048" ascent="1546" descent="-502" />
13
+<missing-glyph horiz-adv-x="413" />
14
+<glyph unicode=" "  horiz-adv-x="413" />
15
+<glyph unicode="&#x09;" horiz-adv-x="413" />
16
+<glyph unicode="&#xa0;" horiz-adv-x="413" />
17
+<glyph unicode="!" horiz-adv-x="569" d="M414 401h-258l-37 719v363h330v-363zM461 135q0 -160 -176 -160t-176 160t176 160t176 -160z" />
18
+<glyph unicode="&#x22;" horiz-adv-x="825" d="M358 915h-276v531h276v-531zM743 915h-276v531h276v-531z" />
19
+<glyph unicode="#" horiz-adv-x="1243" d="M831 0h-210l34 248h-176l-37 -248h-213l37 248h-205l45 207h193l35 231h-205l43 209h193l32 217h213l-32 -217h176l32 217h213l-32 -217h207l-41 -209h-197l-35 -231h207l-41 -207h-199zM688 455l35 231h-176l-37 -231h178z" />
20
+<glyph unicode="$" horiz-adv-x="1083" d="M999 399q0 -158 -85 -254t-234 -129v-180h-254v166q-227 10 -356 74v327h223l26 -143q4 -23 11.5 -31t27.5 -14q51 -18 152 -18q207 0 207 145q0 72 -65.5 114t-159 66.5t-186.5 58t-158.5 113.5t-65.5 209q0 160 93 256t251 129v160h256v-150q152 -10 293 -59v-350 l-225 22l-25 136q-6 35 -41 45q-41 10 -117 10q-203 0 -202 -137q0 -68 65.5 -109t158.5 -67.5t186 -61.5t158.5 -118t65.5 -210z" />
21
+<glyph unicode="%" horiz-adv-x="1818" d="M410 526q-182 0 -263 99.5t-81 261.5q0 180 90 281.5t270 101.5q342 0 342 -357q0 -180 -91 -283.5t-267 -103.5zM662 -35h-285l772 1307h283zM420 694q61 0 89 51.5t28 159.5q0 100 -27 147.5t-88 47.5q-121 0 -121 -199q0 -207 119 -207zM1395 -25q-182 0 -263 99.5 t-81 261.5q0 180 90 281.5t270 101.5q342 0 342 -357q0 -180 -91 -283.5t-267 -103.5zM1402.5 143q63.5 0 90.5 50.5t27 160.5q0 100 -26 147.5t-89 47.5q-119 0 -119 -199q0 -106 26.5 -156.5t90 -50.5z" />
22
+<glyph unicode="&#x26;" horiz-adv-x="1470" d="M1409 0h-346l-113 131q-166 -156 -413 -156q-211 0 -338 112t-127 310q0 295 295 418q-76 119 -76 238q0 156 109.5 247t285.5 91q104 0 206.5 -28t158.5 -63v-321l-220 8l-24 137q-4 25 -29 33q-27 8 -73 8q-59 0 -90 -30.5t-31 -81.5q0 -86 112 -217l230 -271 q29 88 47 228h352v-158l-94 -19q-18 -4 -25.5 -9t-9.5 -25q-29 -133 -76 -232l129 -147q18 -23 39 -25l121 -18v-160zM784 317l-270 308q-145 -61 -145 -213q0 -82 47 -136.5t145 -54.5q135 0 223 96z" />
23
+<glyph unicode="'" horiz-adv-x="442" d="M358 915h-276v531h276v-531z" />
24
+<glyph unicode="(" horiz-adv-x="729" d="M655 -221l-235 -133q-145 190 -239.5 429.5t-94.5 497.5q0 485 352 951l232 -138q-131 -195 -192.5 -388t-61.5 -425q0 -238 59 -413.5t180 -380.5z" />
25
+<glyph unicode=")" horiz-adv-x="729" d="M297 -354l-231 135q125 190 187 380.5t62 428.5q0 231 -59 412.5t-186 386.5l233 135q147 -188 243.5 -433t96.5 -501q0 -483 -346 -944z" />
26
+<glyph unicode="*" horiz-adv-x="976" d="M342 782l-174 129l88 115l178 115l-213 -8l-137 45l70 204l137 -45l162 -133l-74 199v143h215v-143l-72 -199h-69l-19 -63l53 -41l-59 -201zM809 911l-174 -129l-86 117l-62 201l56 41l-21 63l164 133l137 45l68 -204l-137 -45l-211 8l178 -115z" />
27
+<glyph unicode="+" d="M705 248h-246v295h-273v237h273v287h246v-287h274v-237h-274v-295z" />
28
+<glyph unicode="," horiz-adv-x="516" d="M281 -244l-140 41l56 219q6 18 -11 25l-84 29l45 221q141 -2 214 -33t73 -127q0 -55 -43 -141z" />
29
+<glyph unicode="-" horiz-adv-x="636" d="M596 465h-555v260h555v-260z" />
30
+<glyph unicode="." horiz-adv-x="555" d="M453 135q0 -160 -174 -160q-176 0 -176.5 160t176.5 160q174 0 174 -160z" />
31
+<glyph unicode="/" horiz-adv-x="929" d="M315 -188h-292l575 1734h291z" />
32
+<glyph unicode="0" horiz-adv-x="1232" d="M606 -25q-291 0 -409.5 160t-118.5 459q0 616 553 616q287 0 405.5 -155.5t118.5 -444.5q0 -305 -128 -470t-421 -165zM618 195q113 0 161 93t48 310q0 213 -45 301t-157 88q-117 0 -167 -92t-50 -305q0 -211 46.5 -303t163.5 -92z" />
33
+<glyph unicode="1" horiz-adv-x="831" d="M791 0h-719v162l176 14q20 2 26.5 9.5t6.5 31.5v715q0 35 -27 43l-178 37l22 168h492v-963q0 -25 5 -32t28 -9l168 -14v-162z" />
34
+<glyph unicode="2" horiz-adv-x="1073" d="M1012 0h-946v190l274 269q129 125 175 173t83 108.5t37 117.5q0 131 -146 131q-88 0 -123.5 -38t-35.5 -144l-279 24q2 379 465 379q430 0 430 -327q0 -90 -45 -178.5t-92 -139.5t-145 -145l-232 -221h301q29 0 33 24l29 162h217v-385z" />
35
+<glyph unicode="3" horiz-adv-x="1062" d="M723 551v-8q270 -41 270 -316q0 -197 -134 -297t-361 -100q-154 0 -285 50t-211 138l164 181q139 -135 307 -136q213 0 213 185q0 176 -205 176q-66 0 -151 -14v204l100 13q227 29 227 221q0 141 -149 141q-88 0 -126 -39t-38 -143l-281 24q0 379 459 379 q229 0 332.5 -85t103.5 -255q0 -123 -66.5 -205.5t-168.5 -113.5z" />
36
+<glyph unicode="4" horiz-adv-x="1140" d="M934 -137h-283v264h-598v211l420 879l268 -123l-387 -727h297v329l283 43v-372h170v-240h-170v-264z" />
37
+<glyph unicode="5" horiz-adv-x="1110" d="M942 922h-543l-28 -281q106 70 260 70q184 0 289.5 -106.5t105.5 -311.5q0 -199 -133 -331t-371 -132q-340 0 -516 188l164 187q139 -139 326 -139q96 0 158.5 56t62.5 161q0 113 -57.5 155.5t-133.5 42.5q-113 0 -196 -88l-203 84l45 703h535q20 0 26 24l27 113l182 12 v-407z" />
38
+<glyph unicode="6" horiz-adv-x="1157" d="M1067 1004l-289 -35q0 92 -31.5 126.5t-113.5 34.5q-217 0 -230 -382q135 80 287 79q184 0 292 -100t108 -295q0 -229 -134.5 -343t-357.5 -114q-145 0 -246.5 50.5t-158 145.5t-81 211t-24.5 267q0 121 25.5 232.5t83 220t171 174t271.5 65.5q428 1 428 -337zM403 543 q2 -74 10.5 -126t28 -105.5t60.5 -82t102 -28.5q172 0 172 217q0 104 -37 147t-129 43q-101 1 -207 -65z" />
39
+<glyph unicode="7" horiz-adv-x="1089" d="M625 -137h-326q53 625 446 1059h-391q-14 0 -18 -5.5t-8 -21.5l-33 -172l-215 -16v473h989v-232q-186 -199 -311 -491.5t-133 -593.5z" />
40
+<glyph unicode="8" horiz-adv-x="1105" d="M823 696q215 -123 215 -325q0 -193 -139 -294.5t-367 -101.5q-223 0 -343.5 90.5t-120.5 264.5q0 111 51 192.5t143 157.5q-152 104 -151 281q0 182 124.5 281t323.5 99q201 0 313.5 -87t112.5 -240q0 -177 -162 -318zM459 575q-135 -125 -135 -229q0 -166 213 -166 q94 0 142 43t48 113q0 27 -6 49.5t-26 42.5l-31 34q-12 13 -47 33l-47 26q-13 7 -57 28.5t-54 25.5zM618 795q106 111 107 204q0 139 -164 140q-76 0 -115.5 -37t-39.5 -96q0 -37 15 -68t49 -56.5t63.5 -42.5t84.5 -44z" />
41
+<glyph unicode="9" d="M109 -18l131 188q131 -111 284 -111q135 0 186.5 90.5t57.5 251.5q-121 -78 -287 -77q-176 0 -287.5 113.5t-111.5 316.5q0 219 129 337.5t356 118.5q518 0 518 -659q0 -719 -546 -719q-123 0 -240.5 40t-189.5 110zM768 623q-4 78 -12 134t-28.5 113.5t-61.5 87 t-101 29.5q-170 0 -170 -217q0 -113 37 -167t127 -54q105 0 209 74z" />
42
+<glyph unicode=":" horiz-adv-x="555" d="M453 135q0 -160 -174 -160q-176 0 -176.5 160t176.5 160q174 0 174 -160zM453 913.5q0 -159.5 -174 -159.5q-176 0 -176.5 159.5t176.5 159.5q174 0 174 -159.5z" />
43
+<glyph unicode=";" horiz-adv-x="522" d="M281 -244l-140 41l56 219q6 18 -11 25l-84 29l45 221q141 -2 214 -33t73 -127q0 -55 -43 -141zM461 913.5q0 -159.5 -174 -159.5q-176 0 -176 159.5t176 159.5q174 0 174 -159.5z" />
44
+<glyph unicode="&#x3c;" d="M940 172l-799 281v286l795 291l70 -231l-598 -201l602 -201z" />
45
+<glyph unicode="=" d="M979 266h-791v240h791v-240zM979 647h-791v240h791v-240z" />
46
+<glyph unicode="&#x3e;" d="M1010 453l-799 -281l-70 225l602 201l-596 201l68 231l795 -291v-286z" />
47
+<glyph unicode="?" horiz-adv-x="1081" d="M600 401h-309v373q70 6 112.5 11.5t106 23.5t99.5 46t63.5 78t27.5 118q0 86 -43 133t-122 47q-78 0 -138 -25q-23 -8 -26 -41l-19 -131l-250 -18v377q236 90 447 90q496 0 495 -422q0 -199 -113.5 -322t-330.5 -149v-189zM621 135q0 -160 -175 -160q-176 0 -176 160 t176 160q175 0 175 -160z" />
48
+<glyph unicode="@" horiz-adv-x="1722" d="M1219 -143l49 -168q-164 -72 -416 -72q-340 0 -537.5 187.5t-197.5 539.5q0 369 220 594t574 225q322 0 515.5 -171t193.5 -480q0 -272 -108.5 -404.5t-294.5 -132.5q-184 0 -236 142q-145 -141 -250 -142q-109 0 -171 75t-62 214q0 229 121.5 389t328.5 160 q145 0 285 -65l-47 -302q-27 -147 -27 -217q0 -80 76 -79q51 0 89 35.5t56.5 93t26.5 111.5t8 106q0 231 -125 357t-385 126q-283 0 -432 -184.5t-149 -450.5q0 -268 144 -409.5t409 -141.5q168 1 342 64zM963 262l59 377q-35 25 -90 25q-92 0 -159.5 -103.5t-67.5 -263.5 q0 -143 82 -143.5t176 108.5z" />
49
+<glyph unicode="A" horiz-adv-x="1554" d="M1548 0h-647v160l168 18l-74 213h-508l-71 -213l162 -18v-160h-572v160l90 22q41 10 51 39l449 1262h362l447 -1266q8 -25 49 -35l94 -22v-160zM934 612l-182 557h-13l-188 -557h383z" />
50
+<glyph unicode="B" horiz-adv-x="1376" d="M750 0h-672v160l129 14q20 2 26.5 10.5t6.5 30.5v1049q0 25 -6.5 32t-26.5 9l-129 14v164h690q449 0 449 -363q0 -135 -72 -222t-178 -122v-6q342 -39 342 -362q0 -408 -559 -408zM555 221h141q141 0 213 47t72 172q0 215 -254 215h-172v-434zM555 860h82q129 0 203.5 45 t74.5 164q0 115 -62 153t-185 38h-113v-400z" />
51
+<glyph unicode="C" horiz-adv-x="1386" d="M1294 469v-381q-184 -113 -512 -113q-719 0 -719 773q0 342 197 551.5t565 209.5q287 0 465 -116v-402l-225 19l-33 200q-6 29 -33 37q-78 25 -182 25q-199 0 -312.5 -134t-113.5 -390q0 -266 108.5 -402.5t303.5 -136.5q119 0 205 27q18 4 25 12t11 31l31 190h219z" />
52
+<glyph unicode="D" horiz-adv-x="1540" d="M707 0h-629v164l129 14q20 2 26.5 9.5t6.5 31.5v1047q0 23 -6.5 31t-26.5 10l-129 14v162h663q375 0 555.5 -187.5t180.5 -531.5q0 -354 -192.5 -559t-577.5 -205zM557 221h117q481 0 481 524q0 279 -110.5 398t-358.5 119h-129v-1041z" />
53
+<glyph unicode="E" horiz-adv-x="1284" d="M1212 0h-1134v160l129 14q20 2 26.5 10.5t6.5 30.5v1051q0 25 -6.5 32t-26.5 9l-129 14v162h1089v-414l-225 10l-29 156q-6 27 -34 27h-322v-404h479v-227h-479v-412h367q29 0 32 23l33 180h223v-422z" />
54
+<glyph unicode="F" horiz-adv-x="1234" d="M891 0h-813v160l129 14q20 2 26.5 10.5t6.5 30.5v1051q0 25 -6.5 32t-26.5 9l-129 14v162h1081v-414l-225 10l-29 156q-6 27 -35 27h-313v-402h471v-227h-471v-414q0 -25 5 -32t28 -9l301 -16v-162z" />
55
+<glyph unicode="G" horiz-adv-x="1478" d="M1460 551l-84 -8q-33 -2 -33 -29v-440q-207 -98 -530 -99q-205 0 -353.5 57.5t-233.5 164t-125 241.5t-40 307q0 342 197 553t571 211q119 0 247 -30.5t216 -87.5v-387l-227 16l-31 184q-8 35 -33 41q-94 27 -188 27q-197 0 -309.5 -140.5t-112.5 -381.5 q0 -258 109.5 -398.5t326.5 -140.5q88 0 170 14q33 6 33 37v268h-227l28 185h629v-164z" />
56
+<glyph unicode="H" horiz-adv-x="1675" d="M1604 0h-648v160l129 14q20 2 26.5 10.5t6.5 30.5v432h-561v-430q0 -25 5 -32t28 -9l137 -16v-160h-649v160l129 14q20 2 26.5 10.5t6.5 30.5v1049q0 25 -6.5 32t-26.5 9l-129 14v164h649v-164l-137 -16q-23 -2 -28 -9.5t-5 -29.5v-387h561v387q0 25 -6 32t-27 9l-129 14 v164h648v-164l-138 -16q-23 -2 -27.5 -9.5t-4.5 -29.5v-1047q0 -25 5 -32t27 -9l138 -16v-160z" />
57
+<glyph unicode="I" horiz-adv-x="827" d="M762 0h-688v160l149 14q20 2 26.5 9t6.5 32v1049q0 25 -6 32t-27 9l-149 14v164h688v-164l-158 -16q-23 -2 -28 -9.5t-5 -29.5v-1047q0 -25 5.5 -32t27.5 -9l158 -16v-160z" />
58
+<glyph unicode="J" horiz-adv-x="1056" d="M526 336v930q0 23 -6 30t-26 9l-185 14v164h705v-164l-137 -16q-23 -2 -28 -8.5t-5 -28.5v-932q0 -182 -92.5 -270.5t-294.5 -88.5q-117 0 -227.5 25t-157.5 55v365l229 -17l21 -147q2 -20 22 -27q37 -12 82 -12q55 0 77.5 26.5t22.5 92.5z" />
59
+<glyph unicode="K" horiz-adv-x="1540" d="M1522 0h-453l-383 592l-129 -154v-219q0 -25 5 -32t28 -9l158 -16v-162h-670v162l129 14q20 2 26.5 9.5t6.5 31.5v1049q0 23 -6.5 31t-26.5 10l-129 14v162h649v-162l-137 -16q-23 -2 -28 -9.5t-5 -29.5v-512l483 549l-127 16v164h537v-164l-86 -14q-41 -6 -64 -35 l-376 -426l411 -629q18 -29 60 -33l127 -20v-162z" />
60
+<glyph unicode="L" horiz-adv-x="1277" d="M1212 0h-1134v162l129 14q20 2 26.5 10.5t6.5 30.5v1049q0 25 -6.5 32t-26.5 9l-129 14v162h682v-162l-170 -16q-23 -2 -28 -9.5t-5 -29.5v-1047h365q29 0 32 23l33 204h225v-446z" />
61
+<glyph unicode="M" horiz-adv-x="1970" d="M1898 0h-673v160l168 14q20 2 26 10.5t6 30.5v778h-8l-293 -698h-333l-289 700h-10v-778q0 -25 5 -32t27 -9l176 -16v-160h-622v160l129 14q20 2 26.5 10.5t6.5 30.5v1051q0 23 -6.5 31t-26.5 10l-129 14v162h549l356 -928h8l375 928h532v-160l-137 -16 q-23 -2 -27.5 -9.5t-4.5 -29.5v-1053q0 -35 32 -39l137 -16v-160z" />
62
+<glyph unicode="N" horiz-adv-x="1693" d="M1466 0h-336l-653 1069v-852q0 -25 5 -32t28 -9l137 -16v-160h-569v160l129 14q20 2 26.5 10.5t6.5 30.5v1053q0 25 -6.5 32t-26.5 9l-129 14v160h508l643 -1071v852q0 25 -6 32t-27 9l-129 14v164h569v-164l-137 -16q-23 -2 -28 -9.5t-5 -29.5v-1264z" />
63
+<glyph unicode="O" horiz-adv-x="1554" d="M768 -25q-356 0 -530.5 206t-174.5 556q0 342 190.5 557t543.5 215q346 0 520 -207.5t174 -537.5q0 -371 -183.5 -580t-539.5 -209zM780 227q385 0 385 518q0 506 -372 506q-184 0 -293 -127t-109 -381q0 -516 389 -516z" />
64
+<glyph unicode="P" horiz-adv-x="1323" d="M881 0h-803v162l129 14q20 2 26.5 10.5t6.5 30.5v1047q0 25 -6.5 32t-26.5 9l-129 14v164h694q264 0 379 -120t115 -316q0 -500 -561 -500h-150v-328q0 -25 5 -32t28 -9l293 -16v-162zM555 766h102q59 0 103.5 9t88.5 35t68.5 81t24.5 137q0 135 -69.5 183.5t-196.5 48.5 h-121v-494z" />
65
+<glyph unicode="Q" horiz-adv-x="1552" d="M1182 -176l59 -180q-143 -76 -291 -76q-324 0 -323 305q0 55 6 111q-291 35 -434.5 235.5t-143.5 517.5q0 342 190.5 557t542.5 215q236 0 395.5 -102t229.5 -266t70 -377q0 -326 -143.5 -528.5t-421.5 -245.5q-4 -25 -5 -70q0 -63 28 -95t93 -32q72 0 148 31zM774 227 q385 0 385 518q0 506 -373 506q-186 0 -294.5 -127t-108.5 -381q0 -516 391 -516z" />
66
+<glyph unicode="R" horiz-adv-x="1406" d="M1403 0h-447l-184 514q-18 53 -44 72.5t-77 19.5h-96v-385q0 -25 5 -32t28 -9l143 -16v-164h-653v164l129 14q20 2 26.5 9.5t6.5 31.5v1047q0 23 -6.5 31t-26.5 10l-129 14v162h698q256 0 366.5 -115t110.5 -295q0 -274 -270 -393q70 -33 119 -164l112 -293 q18 -33 62 -39l127 -20v-164zM555 819h94q131 0 205 49.5t74 186.5q0 115 -64.5 160t-206.5 45h-102v-441z" />
67
+<glyph unicode="S" horiz-adv-x="1214" d="M1090 1028l-232 21l-24 165q-4 31 -25 39q-72 23 -150 23q-113 0 -171 -47t-58 -127q0 -39 18.5 -71t38 -50t70.5 -39.5t74.5 -30t93.5 -28.5q94 -29 149.5 -52.5t125 -72.5t103.5 -128t34 -188q0 -238 -161 -352.5t-415 -114.5q-129 0 -266 27t-203 57v400h230l40 -195 q4 -31 35 -37q90 -23 172 -22q258 0 258 190q0 47 -18 82t-58 59.5t-78 38t-100 31.5q-201 57 -274 101q-178 106 -178 342q0 227 151.5 343.5t397.5 116.5q225 0 420 -82v-399z" />
68
+<glyph unicode="T" horiz-adv-x="1421" d="M1128 0h-819v162l211 14q20 2 26.5 9.5t6.5 31.5v1043h-211q-29 0 -33 -23l-33 -178h-225v424h1319v-424h-223l-33 178q-4 23 -33 23h-211v-1043q0 -23 5.5 -30t27.5 -9l225 -16v-162z" />
69
+<glyph unicode="U" horiz-adv-x="1607" d="M1112 588v678q0 25 -6 32t-27 9l-129 14v162h606v-162l-137 -16q-23 -2 -28 -9.5t-5 -29.5v-736q0 -283 -151.5 -419t-431.5 -136q-303 0 -442.5 137.5t-139.5 426.5v727q0 25 -6 32t-27 9l-127 14v162h648v-162l-138 -16q-23 -2 -27.5 -9.5t-4.5 -29.5v-670 q0 -188 58 -275.5t218 -87.5q164 0 230.5 80t66.5 275z" />
70
+<glyph unicode="V" horiz-adv-x="1505" d="M981 0h-418l-411 1266q-8 25 -50 34l-92 23l21 160h620v-160l-166 -18l308 -1024h16l297 1024l-164 18l21 160h530v-160l-86 -23q-45 -10 -51 -38z" />
71
+<glyph unicode="W" horiz-adv-x="2136" d="M1688 0h-414l-201 750h-12l-189 -750h-401l-309 1264q-6 27 -45 36l-105 23l21 160h626v-160l-172 -20l209 -1002h17l235 907h312l233 -913h16l211 1008l-172 20l21 160h553v-160l-97 -23q-37 -6 -47 -36z" />
72
+<glyph unicode="X" horiz-adv-x="1583" d="M1548 0h-671v160l161 18l-278 375l-277 -375l158 -18v-160h-586v160l119 22q35 8 53 39l389 504l-409 541q-16 27 -49 34l-107 23l21 160h641v-160l-160 -18l266 -373l279 373l-158 18l21 160h540v-160l-100 -23q-29 -8 -51 -38l-383 -496l419 -545q31 -33 52 -39 l110 -22v-160z" />
73
+<glyph unicode="Y" horiz-adv-x="1384" d="M1120 0h-803v162l205 14q20 2 26.5 9.5t6.5 31.5v336l-408 713q-14 23 -49 34l-92 23l21 160h614v-160l-160 -18l248 -484h16l248 484l-157 18l20 160h522v-160l-86 -23q-39 -10 -51 -38l-371 -705v-340q0 -23 5.5 -30t27.5 -9l217 -16v-162z" />
74
+<glyph unicode="Z" horiz-adv-x="1376" d="M1284 0h-1180v199l766 1063h-454q-29 0 -33 -23l-39 -192l-221 -7v443h1124v-207l-755 -1057h499q29 0 33 23l39 219h221v-461z" />
75
+<glyph unicode="[" horiz-adv-x="630" d="M557 -293h-459v1776h459v-156l-127 -22q-33 -4 -33 -41v-1336q0 -39 33 -43l127 -22v-156z" />
76
+<glyph unicode="\" horiz-adv-x="921" d="M897 -188h-283l-573 1734h281z" />
77
+<glyph unicode="]" horiz-adv-x="630" d="M532 1483v-1776h-464v156l133 22q33 4 32 43v1295q0 76 -32 82l-133 22v156h464z" />
78
+<glyph unicode="^" horiz-adv-x="1247" d="M1186 612h-295l-273 492l-266 -492h-291l404 748h313z" />
79
+<glyph unicode="_" horiz-adv-x="1024" d="M1024 -371h-1024v219h1024v-219z" />
80
+<glyph unicode="`" horiz-adv-x="1024" d="M762 1251l-117 -102l-364 299l168 160z" />
81
+<glyph unicode="a" horiz-adv-x="1140" d="M1118 0h-377l-20 111l-10 2q-141 -137 -344 -138q-299 0 -299 304q0 152 94 227.5t289 87.5l235 16v113q0 84 -24.5 123t-112.5 39q-82 0 -116 -25.5t-34 -111.5l-288 24q0 315 440 315q240 0 338 -79.5t98 -290.5v-498q0 -25 5 -32t28 -9l98 -16v-162zM686 270v170 l-139 -10q-90 -6 -127 -32.5t-37 -88.5q0 -113 117 -112q86 -1 186 73z" />
82
+<glyph unicode="b" horiz-adv-x="1247" d="M420 0h-293q31 197 31 299v999q0 35 -27 43l-113 39l23 166h422v-567l8 -2q135 111 309 110q178 0 287 -126.5t109 -397.5q0 -303 -115 -445.5t-316 -142.5q-186 0 -301 129l-10 -2zM465 774v-479q88 -80 188 -80q199 0 199 332q0 131 -46 215t-142 84q-90 0 -199 -72z " />
83
+<glyph unicode="c" horiz-adv-x="1044" d="M901 266l80 -190q-166 -100 -389 -101q-266 0 -401.5 148.5t-135.5 394.5q0 279 152.5 424t408.5 145q113 0 212.5 -25.5t152.5 -60.5v-321l-219 10l-25 135q-4 27 -24 33q-43 14 -105 14q-100 0 -163.5 -77.5t-63.5 -245.5q0 -342 264 -342q119 0 256 59z" />
84
+<glyph unicode="d" horiz-adv-x="1251" d="M1221 0h-381l-21 115l-14 2q-145 -141 -336 -142q-397 0 -397 545q0 289 122.5 428t311.5 139q156 0 289 -98v311q0 33 -27 41l-113 39l23 166h412v-1331q0 -23 5 -30t27 -9l99 -14v-162zM782 305v483q-90 61 -176 62q-109 0 -160 -88t-51 -236q0 -309 187 -309 q98 0 200 88z" />
85
+<glyph unicode="e" horiz-adv-x="1075" d="M930 283l76 -203q-215 -104 -420 -105q-281 0 -406 153t-125 413q0 266 142.5 406t365.5 140q213 0 332 -119.5t119 -375.5q0 -55 -4 -137h-627q16 -242 242 -242q117 0 305 70zM385 649h326q-2 217 -154 217q-156 0 -172 -217z" />
86
+<glyph unicode="f" horiz-adv-x="894" d="M799 0h-744v164l115 12q20 2 26.5 10.5t6.5 32.5v623q0 20 -17 20h-137v205h154v113q0 203 110.5 297t327.5 94q80 0 139.5 -12.5t113.5 -42t84 -90t30 -150.5l-287 -35v13q0 65 -20 89q-22 27 -74 27q-72 0 -93.5 -36t-21.5 -117v-130q0 -20 16 -20h324v-205h-340v-637 q0 -25 7 -32t30 -9l250 -22v-162z" />
87
+<glyph unicode="g" horiz-adv-x="1165" d="M1139 893l-189 -14q76 -96 76 -207q0 -168 -120 -264.5t-316 -96.5q-96 0 -162 19l-68 -109l201 -12q299 -18 391 -51q150 -49 168 -199q4 -25 4 -55q0 -176 -147.5 -272.5t-415.5 -96.5q-512 0 -512 256q0 63 25.5 107.5t87.5 101.5q-90 39 -90 135q0 61 59 125 q47 49 127 123q-80 39 -128 119t-48 188q0 182 120 289.5t349 107.5q111 0 188 -20h400v-174zM756 700q0 90 -49.5 137.5t-137.5 47.5q-90 0 -143 -46t-53 -143q0 -170 190 -170q86 0 139.5 47t53.5 127zM643 -76l-299 21q-53 -66 -53 -109q0 -106 248 -106q281 0 280 118 q0 25 -11 39.5t-42 21.5t-52.5 10t-70.5 5z" />
88
+<glyph unicode="h" horiz-adv-x="1277" d="M1253 0h-444v668q0 174 -108.5 174t-213.5 -76v-549q0 -25 5.5 -32t27.5 -9l98 -14v-162h-565v162l92 14q20 2 26.5 10.5t6.5 30.5v1081q0 35 -26 43l-113 39l22 166h422v-579l11 -2q150 123 327 122q158 0 227.5 -82.5t69.5 -248.5v-539q0 -25 5 -32t28 -9l102 -14v-162 z" />
89
+<glyph unicode="i" horiz-adv-x="647" d="M492 1415q0 -88 -49.5 -136t-137.5 -48t-136 48t-48 136t48 134t136 46q90 0 138.5 -46t48.5 -134zM625 0h-584v162l104 14q20 2 26.5 10.5t6.5 30.5v602q0 35 -26 43l-111 39l22 166h424v-850q0 -25 5.5 -32t27.5 -9l105 -14v-162z" />
90
+<glyph unicode="j" horiz-adv-x="622" d="M174 -57v876q0 35 -27 43l-116 39l24 166h428v-1176q0 -348 -356 -348q-113 0 -206 34t-136 71l88 170q86 -53 178 -54q66 0 94.5 38.5t28.5 140.5zM489 1415q0 -88 -49 -136t-137 -48t-137 48t-49 136q0 86 49 133t137 47q90 0 138 -46t48 -134z" />
91
+<glyph unicode="k" horiz-adv-x="1269" d="M1255 0h-397l-260 522l-111 -121v-184q0 -25 5.5 -32t27.5 -9l123 -14v-162h-600v162l102 14q20 2 26.5 10.5t6.5 30.5v1081q0 35 -26 43l-113 39l22 166h426v-874l375 395h283v-162l-107 -20q-27 -4 -51 -31l-145 -154l262 -489q16 -31 61 -37l90 -14v-160z" />
92
+<glyph unicode="l" horiz-adv-x="647" d="M621 0h-578v162l102 14q20 2 26.5 10.5t6.5 30.5v1081q0 35 -26 43l-113 39l22 166h426v-1329q0 -25 5.5 -32t27.5 -9l101 -14v-162z" />
93
+<glyph unicode="m" horiz-adv-x="1820" d="M1794 0h-444v662q0 51 -5.5 83.5t-33 62.5t-76.5 30q-82 0 -166 -56q6 -49 6 -100v-465q0 -27 5 -34t28 -9l82 -12v-162h-424v672q0 35 -3 58.5t-12.5 51t-33 42t-60.5 14.5q-92 0 -170 -66v-555q0 -25 4.5 -31t28.5 -10l101 -14v-162h-568v162l92 14q20 2 26.5 10.5 t6.5 30.5v602q0 35 -26 43l-111 39l22 166h361l16 -106l11 -3q158 129 327 129q176 0 250 -122q156 123 330 122q162 0 231.5 -82.5t69.5 -263.5v-524q0 -25 5 -33t28 -10l102 -12v-162z" />
94
+<glyph unicode="n" horiz-adv-x="1277" d="M1253 0h-444v662q0 59 -5 91.5t-29.5 60.5t-74.5 28q-53 0 -114.5 -23.5t-98.5 -52.5v-549q0 -25 5.5 -32t27.5 -9l98 -14v-162h-565v164l92 12q20 2 26.5 10.5t6.5 30.5v602q0 35 -26 43l-111 39l25 166h358l16 -106l9 -5q176 131 360 131q164 0 236.5 -87t72.5 -261 v-522q0 -25 5 -32t28 -9l102 -14v-162z" />
95
+<glyph unicode="o" horiz-adv-x="1189" d="M582 -25q-268 0 -397.5 148.5t-129.5 402.5q0 262 139.5 411.5t413.5 149.5q270 0 398.5 -144t128.5 -394q0 -268 -139.5 -421t-413.5 -153zM596 190q215 0 215 349q0 176 -51 251.5t-156 75.5q-225 0 -225 -329q0 -347 217 -347z" />
96
+<glyph unicode="p" horiz-adv-x="1259" d="M719 -434h-668v164l82 12q23 4 30 12t7 31v1034q0 35 -27 43l-108 39l22 166h361l18 -104l10 -5q160 129 349 129q182 0 287.5 -125.5t105.5 -398.5q0 -80 -11.5 -155.5t-41 -156.5t-74.5 -140.5t-122 -97.5t-173 -38q-164 0 -293 105v-293q0 -25 5 -32t28 -9l213 -18 v-162zM477 770v-477q90 -78 193 -78q195 0 194 332q0 297 -174 297q-104 0 -213 -74z" />
97
+<glyph unicode="q" horiz-adv-x="1220" d="M1219 -434h-623v164l176 14q25 2 33 9t8 28v321l-10 4q-154 -131 -324 -131q-190 0 -298.5 130.5t-108.5 406.5q0 293 126 434t312 141q162 0 297 -116l31 96h268q-16 -154 -16 -332v-954q0 -23 5 -30t27 -9l97 -14v-162zM780 301v483q-96 66 -180 66q-104 0 -155.5 -89 t-51.5 -235q0 -309 193 -309q96 0 194 84z" />
98
+<glyph unicode="r" horiz-adv-x="968" d="M723 0h-670v166l92 12q20 2 26.5 10.5t6.5 30.5v600q0 35 -26 43l-111 39l22 166h361l25 -164h12q119 184 289 184q113 0 178 -18v-373l-246 9l-20 108q-4 23 -27 23q-66 0 -148 -72v-543q0 -25 5.5 -32t27.5 -9l203 -16v-164z" />
99
+<glyph unicode="s" horiz-adv-x="997" d="M911 731l-219 14l-20 107q-2 25 -21 29q-53 16 -131 16q-160 0 -160 -104q0 -37 32 -61.5t70 -36t107 -27.5q18 -4 29 -6q74 -16 124 -35t106.5 -54.5t85 -97t28.5 -147.5q0 -178 -127 -265.5t-336 -87.5q-127 0 -250 26t-155 48v297l219 -16l20 -117q2 -27 25 -31 q61 -20 158 -20q170 0 170 106q0 55 -47.5 82t-139.5 43l-77.5 14.5t-75 18.5t-77 27.5t-64.5 40t-56 57.5t-32.5 77t-14.5 101q0 178 130 268t323 90q225 0 376 -59v-297z" />
100
+<glyph unicode="t" horiz-adv-x="892" d="M791 238l55 -181q-168 -82 -334 -82q-180 0 -258 78t-78 252v537q0 20 -16 20h-144v182q135 14 196.5 90t78.5 244h194v-291q0 -20 17 -20h289v-205h-306v-489q0 -94 29 -131t111 -37q78 0 166 33z" />
101
+<glyph unicode="u" horiz-adv-x="1275" d="M1241 0h-381l-16 111l-10 2q-53 -41 -94.5 -65.5t-115 -48.5t-155.5 -24q-158 0 -227.5 89.5t-69.5 271.5v500q0 25 -5 31.5t-28 11.5l-98 20l20 168h420v-678q0 -96 22.5 -134t86.5 -38q109 0 211 94v527q0 25 -5 30.5t-28 10.5l-88 20l22 168h408v-850q0 -23 5 -30 t24 -9l102 -14v-164z" />
102
+<glyph unicode="v" horiz-adv-x="1275" d="M819 0h-358l-326 848q-10 27 -43 35l-86 18l33 166h555v-166l-131 -16l209 -584h14l217 584l-133 16l27 166h473v-166l-74 -12q-41 -10 -51 -35z" />
103
+<glyph unicode="w" horiz-adv-x="1800" d="M1419 0h-323l-160 686h-12l-162 -686h-369l-258 848q-8 27 -43 35l-86 18l33 166h518v-170l-115 -12l164 -576h15l182 731h309l176 -731h12l154 576l-117 12l27 170h430v-166l-74 -14q-39 -6 -49 -41z" />
104
+<glyph unicode="x" horiz-adv-x="1234" d="M1214 0h-581v160l96 18l-156 205l-170 -203l115 -18v-162h-491v160l92 18q27 4 53 35l270 299l-278 332q-25 27 -49 35l-82 22l20 166h545v-166l-100 -16l151 -191l168 191l-112 16l20 166h453v-166l-95 -20q-12 -4 -51 -39l-250 -277l287 -350q33 -33 53 -37l92 -16 v-162z" />
105
+<glyph unicode="y" horiz-adv-x="1267" d="M907 -434h-682v166l160 18q33 2 51 45l88 195l-391 856q-8 27 -43 35l-84 20l33 166h543v-166l-129 -16l227 -541h14l217 541l-133 16l27 166h457v-166l-66 -12q-39 -6 -51 -35l-451 -1102l213 -22v-164z" />
106
+<glyph unicode="z" horiz-adv-x="1058" d="M1001 0h-929v172l549 702h-287q-18 0 -23 -26l-24 -115l-217 -12v346h899v-176l-539 -701h301q18 0 23 27l24 141l223 11v-369z" />
107
+<glyph unicode="{" horiz-adv-x="677" d="M610 -141l-20 -164q-246 4 -343 64.5t-97 220.5q0 53 14 177t14 201q0 84 -33.5 116t-109.5 36v162q76 4 109.5 35.5t33.5 115.5q0 78 -14 203t-14 178q0 160 97 220.5t343 64.5l20 -164q-86 -20 -115.5 -47t-29.5 -100q0 -51 16.5 -170t16.5 -185q0 -178 -129 -233 q129 -55 129 -232q0 -63 -16.5 -182t-16.5 -170q0 -74 29.5 -100.5t115.5 -46.5z" />
108
+<glyph unicode="|" horiz-adv-x="573" d="M426 -293h-281v1839h281v-1839z" />
109
+<glyph unicode="}" horiz-adv-x="677" d="M88 -305l-20 164q86 20 115.5 46.5t29.5 100.5q0 51 -16.5 170t-16.5 182q0 176 129 232q-129 55 -129 233q0 66 16.5 184.5t16.5 170.5q0 74 -29.5 100.5t-115.5 46.5l20 164q246 -4 343 -64.5t97 -220.5q0 -53 -14 -178t-14 -203q0 -84 33.5 -115.5t109.5 -35.5v-162 q-76 -4 -109.5 -36t-33.5 -116q0 -78 14 -201.5t14 -176.5q0 -160 -97 -220.5t-343 -64.5z" />
110
+<glyph unicode="~" horiz-adv-x="1073" d="M868 942l160 -59q-25 -147 -80 -218t-151 -71q-78 0 -237 47t-216 47q-51 0 -83 -20.5t-62 -77.5l-152 74q33 121 101.5 196.5t162.5 75.5q82 0 231.5 -47t213.5 -47q47 0 69.5 21.5t42.5 78.5z" />
111
+<glyph unicode="&#xad;" horiz-adv-x="636" d="M596 465h-555v260h555v-260z" />
112
+<glyph unicode="&#x2000;" horiz-adv-x="802" />
113
+<glyph unicode="&#x2001;" horiz-adv-x="1607" />
114
+<glyph unicode="&#x2002;" horiz-adv-x="802" />
115
+<glyph unicode="&#x2003;" horiz-adv-x="1607" />
116
+<glyph unicode="&#x2004;" horiz-adv-x="534" />
117
+<glyph unicode="&#x2005;" horiz-adv-x="401" />
118
+<glyph unicode="&#x2006;" horiz-adv-x="266" />
119
+<glyph unicode="&#x2007;" horiz-adv-x="266" />
120
+<glyph unicode="&#x2008;" horiz-adv-x="200" />
121
+<glyph unicode="&#x2009;" horiz-adv-x="321" />
122
+<glyph unicode="&#x200a;" horiz-adv-x="88" />
123
+<glyph unicode="&#x2010;" horiz-adv-x="636" d="M596 465h-555v260h555v-260z" />
124
+<glyph unicode="&#x2011;" horiz-adv-x="636" d="M596 465h-555v260h555v-260z" />
125
+<glyph unicode="&#x2012;" horiz-adv-x="636" d="M596 465h-555v260h555v-260z" />
126
+<glyph unicode="&#x2013;" horiz-adv-x="1024" d="M1022 465h-1022v219h1022v-219z" />
127
+<glyph unicode="&#x2014;" horiz-adv-x="2048" d="M2048 465h-2048v219h2048v-219z" />
128
+<glyph unicode="&#x2018;" horiz-adv-x="460" d="M389 1296l-41 -196q-86 2 -137 10t-90 43t-39 96q0 53 39 131l98 207l129 -39l-47 -202q-2 -16 10 -23z" />
129
+<glyph unicode="&#x2019;" horiz-adv-x="460" d="M244 1100l-131 39l47 202q6 18 -10 25l-78 25l41 196q63 0 104 -5t82 -19.5t60.5 -46t19.5 -78.5q0 -57 -37 -131z" />
130
+<glyph unicode="&#x201c;" horiz-adv-x="829" d="M389 1296l-41 -196q-86 2 -137 10t-90 43t-39 96q0 53 39 131l98 207l129 -39l-47 -202q-2 -16 10 -23zM758 1296l-41 -196q-86 2 -137.5 10t-90 43t-38.5 96q0 53 38 131l99 207l129 -39l-47 -202q-2 -16 10 -23z" />
131
+<glyph unicode="&#x201d;" horiz-adv-x="829" d="M244 1100l-131 39l47 202q6 18 -10 25l-78 25l41 196q63 0 104 -5t82 -19.5t60.5 -46t19.5 -78.5q0 -57 -37 -131zM612 1100l-131 39l47 202q6 18 -10 25l-78 25l41 196q63 0 104.5 -5t82.5 -19.5t60.5 -46t19.5 -78.5q0 -57 -37 -131z" />
132
+<glyph unicode="&#x2026;" horiz-adv-x="1443" d="M432 135q0 -160 -174 -160q-176 0 -176 160t176 160q174 0 174 -160zM899 135q0 -160 -174 -160q-176 0 -176 160t176 160q174 0 174 -160zM1362 135q0 -160 -174 -160q-176 0 -176 160t176 160q174 0 174 -160z" />
133
+<glyph unicode="&#x202f;" horiz-adv-x="321" />
134
+<glyph unicode="&#x205f;" horiz-adv-x="401" />
135
+<glyph unicode="&#xe000;" horiz-adv-x="1065" d="M0 1065h1065v-1065h-1065v1065z" />
136
+<glyph horiz-adv-x="1024" />
137
+</font>
138
+</defs></svg> 
0 139
\ No newline at end of file
1 140
new file mode 100755
2 141
Binary files /dev/null and b/themes/classic/source/fonts/adellebasic_bold-webfont.ttf differ
3 142
new file mode 100755
4 143
Binary files /dev/null and b/themes/classic/source/fonts/adellebasic_bold-webfont.woff differ
5 144
new file mode 100644
6 145
Binary files /dev/null and b/themes/classic/source/images/code_bg.png differ
7 146
new file mode 100644
8 147
Binary files /dev/null and b/themes/classic/source/images/dotted-border.png differ
9 148
new file mode 100644
10 149
Binary files /dev/null and b/themes/classic/source/images/line-tile.png differ
11 150
new file mode 100644
12 151
Binary files /dev/null and b/themes/classic/source/images/rss.png differ
13 152
new file mode 100644
14 153
Binary files /dev/null and b/themes/classic/source/images/search.png differ
15 154
new file mode 100644
... ...
@@ -0,0 +1,11 @@
0
+---
1
+layout: default
2
+---
3
+{% for page in site.posts limit:3 %}
4
+{% assign content = page.content %}
5
+{% assign index = true %}
6
+  <article>
7
+    {% include article.html %}
8
+  </article>
9
+{% endfor %}
10
+
0 11
new file mode 100644
... ...
@@ -0,0 +1,1497 @@
0
+/*!
1
+  * Ender: open module JavaScript framework
2
+  * copyright Dustin Diaz & Jacob Thornton 2011 (@ded @fat)
3
+  * https://ender.no.de
4
+  * License MIT
5
+  * Build: ender -b jeesh
6
+  */
7
+!function (context) {
8
+
9
+  function aug(o, o2) {
10
+    for (var k in o2) {
11
+      k != 'noConflict' && k != '_VERSION' && (o[k] = o2[k]);
12
+    }
13
+    return o;
14
+  }
15
+
16
+  function boosh(s, r) {
17
+    var els;
18
+    if (ender._select && typeof s == 'string' || s.nodeName || s.length && 'item' in s || s == window) { //string || node || nodelist || window
19
+      els = ender._select(s, r);
20
+      els.selector = s;
21
+    } else {
22
+      els = isFinite(s.length) ? s : [s];
23
+    }
24
+    return aug(els, boosh);
25
+  }
26
+
27
+  function ender(s, r) {
28
+    return boosh(s, r);
29
+  }
30
+
31
+  aug(ender, {
32
+    _VERSION: '0.2.0',
33
+    ender: function (o, chain) {
34
+      aug(chain ? boosh : ender, o);
35
+    }
36
+  });
37
+
38
+  aug(boosh, {
39
+    forEach: function (fn, scope) {
40
+      // opt out of native forEach so we can intentionally call our own scope
41
+      // defaulting to the current item
42
+      for (var i = 0, l = this.length; i < l; ++i) {
43
+        i in this && fn.call(scope || this[i], this[i], i, this);
44
+      }
45
+      // return self for chaining
46
+      return this;
47
+    }
48
+  });
49
+
50
+  var old = context.$;
51
+  ender.noConflict = function () {
52
+    context.$ = old;
53
+    return this;
54
+  };
55
+
56
+  (typeof module !== 'undefined') && module.exports && (module.exports = ender);
57
+  // use subscript notation as extern for Closure compilation
58
+  context['ender'] = context['$'] = ender;
59
+
60
+}(this);
61
+/*!
62
+  * bean.js - copyright Jacob Thornton 2011
63
+  * https://github.com/fat/bean
64
+  * MIT License
65
+  * special thanks to:
66
+  * dean edwards: http://dean.edwards.name/
67
+  * dperini: https://github.com/dperini/nwevents
68
+  * the entire mootools team: github.com/mootools/mootools-core
69
+  */
70
+!function (context) {
71
+  var __uid = 1, registry = {}, collected = {},
72
+      overOut = /over|out/,
73
+      namespace = /[^\.]*(?=\..*)\.|.*/,
74
+      stripName = /\..*/,
75
+      addEvent = 'addEventListener',
76
+      attachEvent = 'attachEvent',
77
+      removeEvent = 'removeEventListener',
78
+      detachEvent = 'detachEvent',
79
+      doc = context.document || {},
80
+      root = doc.documentElement || {},
81
+      W3C_MODEL = root[addEvent],
82
+      eventSupport = W3C_MODEL ? addEvent : attachEvent,
83
+
84
+  isDescendant = function (parent, child) {
85
+    var node = child.parentNode;
86
+    while (node != null) {
87
+      if (node == parent) {
88
+        return true;
89
+      }
90
+      node = node.parentNode;
91
+    }
92
+  },
93
+
94
+  retrieveUid = function (obj, uid) {
95
+    return (obj.__uid = uid || obj.__uid || __uid++);
96
+  },
97
+
98
+  retrieveEvents = function (element) {
99
+    var uid = retrieveUid(element);
100
+    return (registry[uid] = registry[uid] || {});
101
+  },
102
+
103
+  listener = W3C_MODEL ? function (element, type, fn, add) {
104
+    element[add ? addEvent : removeEvent](type, fn, false);
105
+  } : function (element, type, fn, add, custom) {
106
+    custom && add && (element['_on' + custom] = element['_on' + custom] || 0);
107
+    element[add ? attachEvent : detachEvent]('on' + type, fn);
108
+  },
109
+
110
+  nativeHandler = function (element, fn, args) {
111
+    return function (event) {
112
+      event = fixEvent(event || ((this.ownerDocument || this.document || this).parentWindow || context).event);
113
+      return fn.apply(element, [event].concat(args));
114
+    };
115
+  },
116
+
117
+  customHandler = function (element, fn, type, condition, args) {
118
+    return function (event) {
119
+      if (condition ? condition.call(this, event) : W3C_MODEL ? true : event && event.propertyName == '_on' + type || !event) {
120
+        fn.apply(element, [event].concat(args));
121
+      }
122
+    };
123
+  },
124
+
125
+  addListener = function (element, orgType, fn, args) {
126
+    var type = orgType.replace(stripName, ''),
127
+        events = retrieveEvents(element),
128
+        handlers = events[type] || (events[type] = {}),
129
+        uid = retrieveUid(fn, orgType.replace(namespace, ''));
130
+    if (handlers[uid]) {
131
+      return element;
132
+    }
133
+    var custom = customEvents[type];
134
+    if (custom) {
135
+      fn = custom.condition ? customHandler(element, fn, type, custom.condition) : fn;
136
+      type = custom.base || type;
137
+    }
138
+    var isNative = nativeEvents[type];
139
+    fn = isNative ? nativeHandler(element, fn, args) : customHandler(element, fn, type, false, args);
140
+    isNative = W3C_MODEL || isNative;
141
+    if (type == 'unload') {
142
+      var org = fn;
143
+      fn = function () {
144
+        removeListener(element, type, fn) && org();
145
+      };
146
+    }
147
+    element[eventSupport] && listener(element, isNative ? type : 'propertychange', fn, true, !isNative && type);
148
+    handlers[uid] = fn;
149
+    fn.__uid = uid;
150
+    return type == 'unload' ? element : (collected[retrieveUid(element)] = element);
151
+  },
152
+
153
+  removeListener = function (element, orgType, handler) {
154
+    var uid, names, uids, i, events = retrieveEvents(element), type = orgType.replace(stripName, '');
155
+    if (!events || !events[type]) {
156
+      return element;
157
+    }
158
+    names = orgType.replace(namespace, '');
159
+    uids = names ? names.split('.') : [handler.__uid];
160
+    for (i = uids.length; i--;) {
161
+      uid = uids[i];
162
+      handler = events[type][uid];
163
+      delete events[type][uid];
164
+      if (element[eventSupport]) {
165
+        type = customEvents[type] ? customEvents[type].base : type;
166
+        var isNative = W3C_MODEL || nativeEvents[type];
167
+        listener(element, isNative ? type : 'propertychange', handler, false, !isNative && type);
168
+      }
169
+    }
170
+    return element;
171
+  },
172
+
173
+  del = function (selector, fn, $) {
174
+    return function (e) {
175
+      var array = typeof selector == 'string' ? $(selector, this) : selector;
176
+      for (var target = e.target; target && target != this; target = target.parentNode) {
177
+        for (var i = array.length; i--;) {
178
+          if (array[i] == target) {
179
+            return fn.apply(target, arguments);
180
+          }
181
+        }
182
+      }
183
+    };
184
+  },
185
+
186
+  add = function (element, events, fn, delfn, $) {
187
+    if (typeof events == 'object' && !fn) {
188
+      for (var type in events) {
189
+        events.hasOwnProperty(type) && add(element, type, events[type]);
190
+      }
191
+    } else {
192
+      var isDel = typeof fn == 'string', types = (isDel ? fn : events).split(' ');
193
+      fn = isDel ? del(events, delfn, $) : fn;
194
+      for (var i = types.length; i--;) {
195
+        addListener(element, types[i], fn, Array.prototype.slice.call(arguments, isDel ? 4 : 3));
196
+      }
197
+    }
198
+    return element;
199
+  },
200
+
201
+  remove = function (element, orgEvents, fn) {
202
+    var k, type, events,
203
+        isString = typeof(orgEvents) == 'string',
204
+        names = isString && orgEvents.replace(namespace, ''),
205
+        rm = removeListener,
206
+        attached = retrieveEvents(element);
207
+    if (isString && /\s/.test(orgEvents)) {
208
+      orgEvents = orgEvents.split(' ');
209
+      var i = orgEvents.length - 1;
210
+      while (remove(element, orgEvents[i]) && i--) {}
211
+      return element;
212
+    }
213
+    events = isString ? orgEvents.replace(stripName, '') : orgEvents;
214
+    if (!attached || (isString && !attached[events])) {
215
+      return element;
216
+    }
217
+    if (typeof fn == 'function') {
218
+      rm(element, events, fn);
219
+    } else if (names) {
220
+      rm(element, orgEvents);
221
+    } else {
222
+      rm = events ? rm : remove;
223
+      type = isString && events;
224
+      events = events ? (fn || attached[events] || events) : attached;
225
+      for (k in events) {
226
+        events.hasOwnProperty(k) && rm(element, type || k, events[k]);
227
+      }
228
+    }
229
+    return element;
230
+  },
231
+
232
+  fire = function (element, type, args) {
233
+    var evt, k, i, types = type.split(' ');
234
+    for (i = types.length; i--;) {
235
+      type = types[i].replace(stripName, '');
236
+      var isNative = nativeEvents[type],
237
+          isNamespace = types[i].replace(namespace, ''),
238
+          handlers = retrieveEvents(element)[type];
239
+      if (isNamespace) {
240
+        isNamespace = isNamespace.split('.');
241
+        for (k = isNamespace.length; k--;) {
242
+          handlers[isNamespace[k]] && handlers[isNamespace[k]].apply(element, args);
243
+        }
244
+      } else if (!args && element[eventSupport]) {
245
+        fireListener(isNative, type, element);
246
+      } else {
247
+        for (k in handlers) {
248
+          handlers.hasOwnProperty(k) && handlers[k].apply(element, args);
249
+        }
250
+      }
251
+    }
252
+    return element;
253
+  },
254
+
255
+  fireListener = W3C_MODEL ? function (isNative, type, element) {
256
+    evt = document.createEvent(isNative ? "HTMLEvents" : "UIEvents");
257
+    evt[isNative ? 'initEvent' : 'initUIEvent'](type, true, true, context, 1);
258
+    element.dispatchEvent(evt);
259
+  } : function (isNative, type, element) {
260
+    isNative ? element.fireEvent('on' + type, document.createEventObject()) : element['_on' + type]++;
261
+  },
262
+
263
+  clone = function (element, from, type) {
264
+    var events = retrieveEvents(from), obj, k;
265
+    obj = type ? events[type] : events;
266
+    for (k in obj) {
267
+      obj.hasOwnProperty(k) && (type ? add : clone)(element, type || from, type ? obj[k] : k);
268
+    }
269
+    return element;
270
+  },
271
+
272
+  fixEvent = function (e) {
273
+    var result = {};
274
+    if (!e) {
275
+      return result;
276
+    }
277
+    var type = e.type, target = e.target || e.srcElement;
278
+    result.preventDefault = fixEvent.preventDefault(e);
279
+    result.stopPropagation = fixEvent.stopPropagation(e);
280
+    result.target = target && target.nodeType == 3 ? target.parentNode : target;
281
+    if (~type.indexOf('key')) {
282
+      result.keyCode = e.which || e.keyCode;
283
+    } else if ((/click|mouse|menu/i).test(type)) {
284
+      result.rightClick = e.which == 3 || e.button == 2;
285
+      result.pos = { x: 0, y: 0 };
286
+      if (e.pageX || e.pageY) {
287
+        result.clientX = e.pageX;
288
+        result.clientY = e.pageY;
289
+      } else if (e.clientX || e.clientY) {
290
+        result.clientX = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
291
+        result.clientY = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
292
+      }
293
+      overOut.test(type) && (result.relatedTarget = e.relatedTarget || e[(type == 'mouseover' ? 'from' : 'to') + 'Element']);
294
+    }
295
+    for (var k in e) {
296
+      if (!(k in result)) {
297
+        result[k] = e[k];
298
+      }
299
+    }
300
+    return result;
301
+  };
302
+
303
+  fixEvent.preventDefault = function (e) {
304
+    return function () {
305
+      if (e.preventDefault) {
306
+        e.preventDefault();
307
+      }
308
+      else {
309
+        e.returnValue = false;
310
+      }
311
+    };
312
+  };
313
+
314
+  fixEvent.stopPropagation = function (e) {
315
+    return function () {
316
+      if (e.stopPropagation) {
317
+        e.stopPropagation();
318
+      } else {
319
+        e.cancelBubble = true;
320
+      }
321
+    };
322
+  };
323
+
324
+  var nativeEvents = { click: 1, dblclick: 1, mouseup: 1, mousedown: 1, contextmenu: 1, //mouse buttons
325
+    mousewheel: 1, DOMMouseScroll: 1, //mouse wheel
326
+    mouseover: 1, mouseout: 1, mousemove: 1, selectstart: 1, selectend: 1, //mouse movement
327
+    keydown: 1, keypress: 1, keyup: 1, //keyboard
328
+    orientationchange: 1, // mobile
329
+    touchstart: 1, touchmove: 1, touchend: 1, touchcancel: 1, // touch
330
+    gesturestart: 1, gesturechange: 1, gestureend: 1, // gesture
331
+    focus: 1, blur: 1, change: 1, reset: 1, select: 1, submit: 1, //form elements
332
+    load: 1, unload: 1, beforeunload: 1, resize: 1, move: 1, DOMContentLoaded: 1, readystatechange: 1, //window
333
+    error: 1, abort: 1, scroll: 1 }; //misc
334
+
335
+  function check(event) {
336
+    var related = event.relatedTarget;
337
+    if (!related) {
338
+      return related == null;
339
+    }
340
+    return (related != this && related.prefix != 'xul' && !/document/.test(this.toString()) && !isDescendant(this, related));
341
+  }
342
+
343
+  var customEvents = {
344
+    mouseenter: { base: 'mouseover', condition: check },
345
+    mouseleave: { base: 'mouseout', condition: check },
346
+    mousewheel: { base: /Firefox/.test(navigator.userAgent) ? 'DOMMouseScroll' : 'mousewheel' }
347
+  };
348
+
349
+  var bean = { add: add, remove: remove, clone: clone, fire: fire };
350
+
351
+  var clean = function (el) {
352
+    var uid = remove(el).__uid;
353
+    if (uid) {
354
+      delete collected[uid];
355
+      delete registry[uid];
356
+    }
357
+  };
358
+
359
+  if (context[attachEvent]) {
360
+    add(context, 'unload', function () {
361
+      for (var k in collected) {
362
+        collected.hasOwnProperty(k) && clean(collected[k]);
363
+      }
364
+      context.CollectGarbage && CollectGarbage();
365
+    });
366
+  }
367
+
368
+  var oldBean = context.bean;
369
+  bean.noConflict = function () {
370
+    context.bean = oldBean;
371
+    return this;
372
+  };
373
+
374
+  (typeof module !== 'undefined' && module.exports) ?
375
+    (module.exports = bean) :
376
+    (context['bean'] = bean);
377
+
378
+}(this);!function ($) {
379
+  var b = bean.noConflict(),
380
+      integrate = function (method, type, method2) {
381
+        var _args = type ? [type] : [];
382
+        return function () {
383
+          for (var args, i = 0, l = this.length; i < l; i++) {
384
+            args = [this[i]].concat(_args, Array.prototype.slice.call(arguments, 0));
385
+            args.length == 4 && args.push($);
386
+            !arguments.length && method == 'add' && type && (method = 'fire');
387
+            b[method].apply(this, args);
388
+          }
389
+          return this;
390
+        };
391
+      };
392
+
393
+  var add = integrate('add'),
394
+      remove = integrate('remove'),
395
+      fire = integrate('fire');
396
+
397
+  var methods = {
398
+
399
+    on: add,
400
+    addListener: add,
401
+    bind: add,
402
+    listen: add,
403
+    delegate: add,
404
+
405
+    unbind: remove,
406
+    unlisten: remove,
407
+    removeListener: remove,
408
+    undelegate: remove,
409
+
410
+    emit: fire,
411
+    trigger: fire,
412
+
413
+    cloneEvents: integrate('clone'),
414
+
415
+    hover: function (enter, leave) {
416
+      for (var i = 0, l = this.length; i < l; i++) {
417
+        b.add.call(this, this[i], 'mouseenter', enter);
418
+        b.add.call(this, this[i], 'mouseleave', leave);
419
+      }
420
+      return this;
421
+    }
422
+  };
423
+
424
+  var shortcuts = [
425
+    'blur', 'change', 'click', 'dblclick', 'error', 'focus', 'focusin',
426
+    'focusout', 'keydown', 'keypress', 'keyup', 'load', 'mousedown',
427
+    'mouseenter', 'mouseleave', 'mouseout', 'mouseover', 'mouseup',
428
+    'resize', 'scroll', 'select', 'submit', 'unload'
429
+  ];
430
+
431
+  for (var i = shortcuts.length; i--;) {
432
+    var shortcut = shortcuts[i];
433
+    methods[shortcut] = integrate('add', shortcut);
434
+  }
435
+
436
+  $.ender(methods, true);
437
+}(ender);
438
+/*!
439
+  * bonzo.js - copyright @dedfat 2011
440
+  * https://github.com/ded/bonzo
441
+  * Follow our software http://twitter.com/dedfat
442
+  * MIT License
443
+  */
444
+!function (context) {
445
+
446
+  var doc = context.document,
447
+      html = doc.documentElement,
448
+      query = null,
449
+      byTag = 'getElementsByTagName',
450
+      specialAttributes = /^checked|value|selected$/,
451
+      specialTags = /select|map|fieldset|table|tbody|tr|colgroup/i,
452
+      tagMap = { select: 'option', table: 'tbody', tr: 'td' },
453
+      stateAttributes = /^checked|selected$/,
454
+      ie = /msie/i.test(navigator.userAgent),
455
+      uidList = [],
456
+      uuids = 0,
457
+      digit = /^-?[\d\.]+$/,
458
+      px = 'px',
459
+      // commonly used methods
460
+      setAttribute = 'setAttribute',
461
+      getAttribute = 'getAttribute',
462
+      trimReplace = /(^\s*|\s*$)/g,
463
+      unitless = { lineHeight: 1, zoom: 1, zIndex: 1, opacity: 1 };
464
+
465
+  function classReg(c) {
466
+    return new RegExp("(^|\\s+)" + c + "(\\s+|$)");
467
+  }
468
+
469
+  function each(ar, fn, scope) {
470
+    for (var i = 0, l = ar.length; i < l; i++) {
471
+      fn.call(scope || ar[i], ar[i], i, ar);
472
+    }
473
+    return ar;
474
+  }
475
+
476
+  var trim = String.prototype.trim ?
477
+    function (s) {
478
+      return s.trim();
479
+    } :
480
+    function (s) {
481
+      return s.replace(trimReplace, '');
482
+    };
483
+
484
+  function camelize(s) {
485
+    return s.replace(/-(.)/g, function (m, m1) {
486
+      return m1.toUpperCase();
487
+    });
488
+  }
489
+
490
+  function is(node) {
491
+    return node && node.nodeName && node.nodeType == 1;
492
+  }
493
+
494
+  function some(ar, fn, scope) {
495
+    for (var i = 0, j = ar.length; i < j; ++i) {
496
+      if (fn.call(scope, ar[i], i, ar)) {
497
+        return true;
498
+      }
499
+    }
500
+    return false;
501
+  }
502
+
503
+  var getStyle = doc.defaultView && doc.defaultView.getComputedStyle ?
504
+    function (el, property) {
505
+      var value = null;
506
+      if (property == 'float') {
507
+        property = 'cssFloat';
508
+      }
509
+      var computed = doc.defaultView.getComputedStyle(el, '');
510
+      computed && (value = computed[camelize(property)]);
511
+      return el.style[property] || value;
512
+
513
+    } : (ie && html.currentStyle) ?
514
+
515
+    function (el, property) {
516
+      property = camelize(property);
517
+      property = property == 'float' ? 'styleFloat' : property;
518
+
519
+      if (property == 'opacity') {
520
+        var val = 100;
521
+        try {
522
+          val = el.filters['DXImageTransform.Microsoft.Alpha'].opacity;
523
+        } catch (e1) {
524
+          try {
525
+            val = el.filters('alpha').opacity;
526
+          } catch (e2) {}
527
+        }
528
+        return val / 100;
529
+      }
530
+      var value = el.currentStyle ? el.currentStyle[property] : null;
531
+      return el.style[property] || value;
532
+    } :
533
+
534
+    function (el, property) {
535
+      return el.style[camelize(property)];
536
+    };
537
+
538
+  function insert(target, host, fn) {
539
+    var i = 0, self = host || this, r = [];
540
+    each(normalize(query ? query(target) : target), function (t) {
541
+      each(self, function (el) {
542
+        var n = el.cloneNode(true);
543
+        fn(t, n);
544
+        r[i] = n;
545
+        i++;
546
+      });
547
+    }, this);
548
+    each(r, function (e, i) {
549
+      self[i] = e;
550
+    });
551
+    self.length = i;
552
+    return self;
553
+  }
554
+
555
+  function xy(el, x, y) {
556
+    var $el = bonzo(el),
557
+        style = $el.css('position'),
558
+        offset = $el.offset(),
559
+        rel = 'relative',
560
+        isRel = style == rel,
561
+        delta = [parseInt($el.css('left'), 10), parseInt($el.css('top'), 10)];
562
+
563
+    if (style == 'static') {
564
+      $el.css('position', rel);
565
+      style = rel;
566
+    }
567
+
568
+    isNaN(delta[0]) && (delta[0] = isRel ? 0 : el.offsetLeft);
569
+    isNaN(delta[1]) && (delta[1] = isRel ? 0 : el.offsetTop);
570
+
571
+    x !== null && (el.style.left = x - offset.left + delta[0] + 'px');
572
+    y !== null && (el.style.top = y - offset.top + delta[1] + 'px');
573
+
574
+  }
575
+
576
+  function Bonzo(elements) {
577
+    this.length = 0;
578
+    this.original = elements;
579
+    if (elements) {
580
+      elements = typeof elements !== 'string' &&
581
+        !elements.nodeType &&
582
+        typeof elements.length !== 'undefined' ?
583
+          elements :
584
+          [elements];
585
+      this.length = elements.length;
586
+      for (var i = 0; i < elements.length; i++) {
587
+        this[i] = elements[i];
588
+      }
589
+    }
590
+  }
591
+
592
+  Bonzo.prototype = {
593
+
594
+    each: function (fn, scope) {
595
+      return each(this, fn, scope);
596
+    },
597
+
598
+    map: function (fn, reject) {
599
+      var m = [], n, i;
600
+      for (i = 0; i < this.length; i++) {
601
+        n = fn.call(this, this[i]);
602
+        reject ? (reject(n) && m.push(n)) : m.push(n);
603
+      }
604
+      return m;
605
+    },
606
+
607
+    first: function () {
608
+      return bonzo(this[0]);
609
+    },
610
+
611
+    last: function () {
612
+      return bonzo(this[this.length - 1]);
613
+    },
614
+
615
+    html: function (h, text) {
616
+      var method = text ?
617
+        html.textContent == null ?
618
+          'innerText' :
619
+          'textContent' :
620
+        'innerHTML', m;
621
+      function append(el, tag) {
622
+        while (el.firstChild) {
623
+          el.removeChild(el.firstChild);
624
+        }
625
+        each(normalize(h, tag), function (node) {
626
+          el.appendChild(node);
627
+        });
628
+      }
629
+      return typeof h !== 'undefined' ?
630
+          this.each(function (el) {
631
+            (m = el.tagName.match(specialTags)) ?
632
+              append(el, m[0]) :
633
+              (el[method] = h);
634
+          }) :
635
+        this[0] ? this[0][method] : '';
636
+    },
637
+
638
+    text: function (text) {
639
+      return this.html(text, 1);
640
+    },
641
+
642
+    addClass: function (c) {
643
+      return this.each(function (el) {
644
+        this.hasClass(el, c) || (el.className = trim(el.className + ' ' + c));
645
+      }, this);
646
+    },
647
+
648
+    removeClass: function (c) {
649
+      return this.each(function (el) {
650
+        this.hasClass(el, c) && (el.className = trim(el.className.replace(classReg(c), ' ')));
651
+      }, this);
652
+    },
653
+
654
+    hasClass: function (el, c) {
655
+      return typeof c == 'undefined' ?
656
+        some(this, function (i) {
657
+          return classReg(el).test(i.className);
658
+        }) :
659
+        classReg(c).test(el.className);
660
+    },
661
+
662
+    toggleClass: function (c, condition) {
663
+      if (typeof condition !== 'undefined' && !condition) {
664
+        return this;
665
+      }
666
+      return this.each(function (el) {
667
+        this.hasClass(el, c) ?
668
+          (el.className = trim(el.className.replace(classReg(c), ' '))) :
669
+          (el.className = trim(el.className + ' ' + c));
670
+      }, this);
671
+    },
672
+
673
+    show: function (type) {
674
+      return this.each(function (el) {
675
+        el.style.display = type || '';
676
+      });
677
+    },
678
+
679
+    hide: function (elements) {
680
+      return this.each(function (el) {
681
+        el.style.display = 'none';
682
+      });
683
+    },
684
+
685
+    append: function (node) {
686
+      return this.each(function (el) {
687
+        each(normalize(node), function (i) {
688
+          el.appendChild(i);
689
+        });
690
+      });
691
+    },
692
+
693
+    prepend: function (node) {
694
+      return this.each(function (el) {
695
+        var first = el.firstChild;
696
+        each(normalize(node), function (i) {
697
+          el.insertBefore(i, first);
698
+        });
699
+      });
700
+    },
701
+
702
+    appendTo: function (target, host) {
703
+      return insert.call(this, target, host, function (t, el) {
704
+        t.appendChild(el);
705
+      });
706
+    },
707
+
708
+    prependTo: function (target, host) {
709
+      return insert.call(this, target, host, function (t, el) {
710
+        t.insertBefore(el, t.firstChild);
711
+      });
712
+    },
713
+
714
+    next: function () {
715
+      return this.related('nextSibling');
716
+    },
717
+
718
+    previous: function () {
719
+      return this.related('previousSibling');
720
+    },
721
+
722
+    related: function (method) {
723
+      return this.map(
724
+        function (el) {
725
+          el = el[method];
726
+          while (el && el.nodeType !== 1) {
727
+            el = el[method];
728
+          }
729
+          return el || 0;
730
+        },
731
+        function (el) {
732
+          return el;
733
+        }
734
+      );
735
+    },
736
+
737
+    before: function (node) {
738
+      return this.each(function (el) {
739
+        each(bonzo.create(node), function (i) {
740
+          el.parentNode.insertBefore(i, el);
741
+        });
742
+      });
743
+    },
744
+
745
+    after: function (node) {
746
+      return this.each(function (el) {
747
+        each(bonzo.create(node), function (i) {
748
+          el.parentNode.insertBefore(i, el.nextSibling);
749
+        });
750
+      });
751
+    },
752
+
753
+    insertBefore: function (target, host) {
754
+      return insert.call(this, target, host, function (t, el) {
755
+        t.parentNode.insertBefore(el, t);
756
+      });
757
+    },
758
+
759
+    insertAfter: function (target, host) {
760
+      return insert.call(this, target, host, function (t, el) {
761
+        var sibling = t.nextSibling;
762
+        if (sibling) {
763
+          t.parentNode.insertBefore(el, sibling);
764
+        }
765
+        else {
766
+          t.parentNode.appendChild(el);
767
+        }
768
+      });
769
+    },
770
+
771
+    css: function (o, v) {
772
+      // is this a request for just getting a style?
773
+      if (v === undefined && typeof o == 'string') {
774
+        return getStyle(this[0], o);
775
+      }
776
+      var iter = o;
777
+      if (typeof o == 'string') {
778
+        iter = {};
779
+        iter[o] = v;
780
+      }
781
+
782
+      if (ie && iter.opacity) {
783
+        // oh this 'ol gamut
784
+        iter.filter = 'alpha(opacity=' + (iter.opacity * 100) + ')';
785
+        // give it layout
786
+        iter.zoom = o.zoom || 1;
787
+        delete iter.opacity;
788
+      }
789
+
790
+      if (v = iter['float']) {
791
+        // float is a reserved style word. w3 uses cssFloat, ie uses styleFloat
792
+        ie ? (iter.styleFloat = v) : (iter.cssFloat = v);
793
+        delete iter['float'];
794
+      }
795
+
796
+      var fn = function (el, p, v) {
797
+        for (var k in iter) {
798
+          if (iter.hasOwnProperty(k)) {
799
+            v = iter[k];
800
+            // change "5" to "5px" - unless you're line-height, which is allowed
801
+            (p = camelize(k)) && digit.test(v) && !(p in unitless) && (v += px);
802
+            el.style[p] = v;
803
+          }
804
+        }
805
+      };
806
+      return this.each(fn);
807
+    },
808
+
809
+    offset: function (x, y) {
810
+      if (x || y) {
811
+        return this.each(function (el) {
812
+          xy(el, x, y);
813
+        });
814
+      }
815
+      var el = this[0];
816
+      var width = el.offsetWidth;
817
+      var height = el.offsetHeight;
818
+      var top = el.offsetTop;
819
+      var left = el.offsetLeft;
820
+      while (el = el.offsetParent) {
821
+        top = top + el.offsetTop;
822
+        left = left + el.offsetLeft;
823
+      }
824
+
825
+      return {
826
+        top: top,
827
+        left: left,
828
+        height: height,
829
+        width: width
830
+      };
831
+    },
832
+
833
+    attr: function (k, v) {
834
+      var el = this[0];
835
+      return typeof v == 'undefined' ?
836
+        specialAttributes.test(k) ?
837
+          stateAttributes.test(k) && typeof el[k] == 'string' ?
838
+            true : el[k] : el[getAttribute](k) :
839
+        this.each(function (el) {
840
+          k == 'value' ? (el.value = v) : el[setAttribute](k, v);
841
+        });
842
+    },
843
+
844
+    val: function (s) {
845
+      return (typeof s == 'string') ? this.attr('value', s) : this[0].value;
846
+    },
847
+
848
+    removeAttr: function (k) {
849
+      return this.each(function (el) {
850
+        el.removeAttribute(k);
851
+      });
852
+    },
853
+
854
+    data: function (k, v) {
855
+      var el = this[0];
856
+      if (typeof v === 'undefined') {
857
+        el[getAttribute]('data-node-uid') || el[setAttribute]('data-node-uid', ++uuids);
858
+        var uid = el[getAttribute]('data-node-uid');
859
+        uidList[uid] || (uidList[uid] = {});
860
+        return uidList[uid][k];
861
+      } else {
862
+        return this.each(function (el) {
863
+          el[getAttribute]('data-node-uid') || el[setAttribute]('data-node-uid', ++uuids);
864
+          var uid = el[getAttribute]('data-node-uid');
865
+          var o = {};
866
+          o[k] = v;
867
+          uidList[uid] = o;
868
+        });
869
+      }
870
+    },
871
+
872
+    remove: function () {
873
+      return this.each(function (el) {
874
+        el.parentNode && el.parentNode.removeChild(el);
875
+      });
876
+    },
877
+
878
+    empty: function () {
879
+      return this.each(function (el) {
880
+        while (el.firstChild) {
881
+          el.removeChild(el.firstChild);
882
+        }
883
+      });
884
+    },
885
+
886
+    detach: function () {
887
+      return this.map(function (el) {
888
+        return el.parentNode.removeChild(el);
889
+      });
890
+    },
891
+
892
+    scrollTop: function (y) {
893
+      return scroll.call(this, null, y, 'y');
894
+    },
895
+
896
+    scrollLeft: function (x) {
897
+      return scroll.call(this, x, null, 'x');
898
+    }
899
+  };
900
+
901
+  function normalize(node, tag) {
902
+    return typeof node == 'string' ? bonzo.create(node, tag) : is(node) ? [node] : node;
903
+  }
904
+
905
+  function scroll(x, y, type) {
906
+    var el = this[0];
907
+    if (x == null && y == null) {
908
+      return (isBody(el) ? getWindowScroll() : { x: el.scrollLeft, y: el.scrollTop })[type];
909
+    }
910
+    if (isBody(el)) {
911
+      window.scrollTo(x, y);
912
+    } else {
913
+      x != null && (el.scrollLeft = x);
914
+      y != null && (el.scrollTop = y);
915
+    }
916
+    return this;
917
+  }
918
+
919
+  function isBody(element) {
920
+    return element === window || (/^(?:body|html)$/i).test(element.tagName);
921
+  }
922
+
923
+  function getWindowScroll() {
924
+    return { x: window.pageXOffset || html.scrollLeft, y: window.pageYOffset || html.scrollTop };
925
+  }
926
+
927
+  function bonzo(els, host) {
928
+    return new Bonzo(els, host);
929
+  }
930
+
931
+  bonzo.setQueryEngine = function (q) {
932
+    query = q;
933
+    delete bonzo.setQueryEngine;
934
+  };
935
+
936
+  bonzo.aug = function (o, target) {
937
+    for (var k in o) {
938
+      o.hasOwnProperty(k) && ((target || Bonzo.prototype)[k] = o[k]);
939
+    }
940
+  };
941
+
942
+  bonzo.create = function (node, tag) {
943
+    return typeof node == 'string' ?
944
+      function () {
945
+        var t = tag ? tagMap[tag.toLowerCase()] : null;
946
+        var el = doc.createElement(t || 'div'), els = [];
947
+        if (tag) {
948
+          var bitches = node.match(new RegExp("<" + t + ">.+?<\\/" + t + ">", "g"));
949
+          each(bitches, function (m) {
950
+            m = m.replace(/<(.+)>(.+?)<\/\1>/, '$2');
951
+            var bah = doc.createElement(t);
952
+            bah.appendChild(doc.createDocumentFragment(m));
953
+            el.appendChild(bah);
954
+          });
955
+        } else {
956
+          el.innerHTML = node;
957
+        }
958
+        var nodes = el.childNodes;
959
+        el = el.firstChild;
960
+        els.push(el);
961
+        while (el = el.nextSibling) {
962
+          (el.nodeType == 1) && els.push(el);
963
+        }
964
+        return els;
965
+
966
+      }() : is(node) ? [node.cloneNode(true)] : [];
967
+  };
968
+
969
+  bonzo.doc = function () {
970
+    var w = html.scrollWidth,
971
+        h = html.scrollHeight,
972
+        vp = this.viewport();
973
+    return {
974
+      width: Math.max(w, vp.width),
975
+      height: Math.max(h, vp.height)
976
+    };
977
+  };
978
+
979
+  bonzo.firstChild = function (el) {
980
+    for (var c = el.childNodes, i = 0, j = (c && c.length) || 0, e; i < j; i++) {
981
+      if (c[i].nodeType === 1) {
982
+        e = c[j = i];
983
+      }
984
+    }
985
+    return e;
986
+  };
987
+
988
+  bonzo.viewport = function () {
989
+    var h = self.innerHeight,
990
+        w = self.innerWidth;
991
+    ie && (h = html.clientHeight) && (w = html.clientWidth);
992
+    return {
993
+      width: w,
994
+      height: h
995
+    };
996
+  };
997
+
998
+  bonzo.isAncestor = 'compareDocumentPosition' in html ?
999
+    function (container, element) {
1000
+      return (container.compareDocumentPosition(element) & 16) == 16;
1001
+    } : 'contains' in html ?
1002
+    function (container, element) {
1003
+      return container !== element && container.contains(element);
1004
+    } :
1005
+    function (container, element) {
1006
+      while (element = element.parentNode) {
1007
+        if (element === container) {
1008
+          return true;
1009
+        }
1010
+      }
1011
+      return false;
1012
+    };
1013
+
1014
+  var old = context.bonzo;
1015
+  bonzo.noConflict = function () {
1016
+    context.bonzo = old;
1017
+    return this;
1018
+  };
1019
+  context['bonzo'] = bonzo;
1020
+
1021
+}(this);!function ($) {
1022
+
1023
+  var b = bonzo;
1024
+  b.setQueryEngine($);
1025
+  $.ender(b);
1026
+  $.ender(b(), true);
1027
+  $.ender({
1028
+    create: function (node) {
1029
+      return $(b.create(node));
1030
+    }
1031
+  });
1032
+
1033
+  $.id = function (id) {
1034
+    return $([document.getElementById(id)]);
1035
+  };
1036
+
1037
+  function indexOf(ar, val) {
1038
+    for (var i = 0; i < ar.length; i++) {
1039
+      if (ar[i] === val) {
1040
+        return i;
1041
+      }
1042
+    }
1043
+    return -1;
1044
+  }
1045
+
1046
+  function uniq(ar) {
1047
+    var a = [], i, j;
1048
+    label:
1049
+    for (i = 0; i < ar.length; i++) {
1050
+      for (j = 0; j < a.length; j++) {
1051
+        if (a[j] == ar[i]) {
1052
+          continue label;
1053
+        }
1054
+      }
1055
+      a[a.length] = ar[i];
1056
+    }
1057
+    return a;
1058
+  }
1059
+
1060
+  $.ender({
1061
+    parents: function (selector, closest) {
1062
+      var collection = $(selector), j, k, p, r = [];
1063
+      for (j = 0, k = this.length; j < k; j++) {
1064
+        p = this[j];
1065
+        while (p = p.parentNode) {
1066
+          if (indexOf(collection, p) !== -1) {
1067
+            r.push(p);
1068
+            if (closest) break;
1069
+          }
1070
+        }
1071
+      }
1072
+      return $(uniq(r));
1073
+    },
1074
+
1075
+    closest: function (selector) {
1076
+      return this.parents(selector, true);
1077
+    },
1078
+
1079
+    first: function () {
1080
+      return $(this[0]);
1081
+    },
1082
+
1083
+    last: function () {
1084
+      return $(this[this.length - 1]);
1085
+    },
1086
+
1087
+    next: function () {
1088
+      return $(b(this).next());
1089
+    },
1090
+
1091
+    previous: function () {
1092
+      return $(b(this).previous());
1093
+    },
1094
+
1095
+    appendTo: function (t) {
1096
+      return b(this.selector).appendTo(t, this);
1097
+    },
1098
+
1099
+    prependTo: function (t) {
1100
+      return b(this.selector).prependTo(t, this);
1101
+    },
1102
+
1103
+    insertAfter: function (t) {
1104
+      return b(this.selector).insertAfter(t, this);
1105
+    },
1106
+
1107
+    insertBefore: function (t) {
1108
+      return b(this.selector).insertBefore(t, this);
1109
+    },
1110
+
1111
+    siblings: function () {
1112
+      var i, l, p, r = [];
1113
+      for (i = 0, l = this.length; i < l; i++) {
1114
+        p = this[i];
1115
+        while (p = p.previousSibling) {
1116
+          p.nodeType == 1 && r.push(p);
1117
+        }
1118
+        p = this[i];
1119
+        while (p = p.nextSibling) {
1120
+          p.nodeType == 1 && r.push(p);
1121
+        }
1122
+      }
1123
+      return $(r);
1124
+    },
1125
+
1126
+    children: function () {
1127
+      var el, r = [];
1128
+      for (i = 0, l = this.length; i < l; i++) {
1129
+        if (!(el = b.firstChild(this[i]))) {
1130
+          continue;
1131
+        }
1132
+        r.push(el);
1133
+        while (el = el.nextSibling) {
1134
+          el.nodeType == 1 && r.push(el);
1135
+        }
1136
+      }
1137
+      return $(uniq(r));
1138
+    },
1139
+
1140
+    height: function (v) {
1141
+      return v ? this.css('height', v) : parseInt(this.css('height'), 10);
1142
+    },
1143
+
1144
+    width: function (v) {
1145
+      return v ? this.css('width', v) : parseInt(this.css('width'), 10);
1146
+    }
1147
+  }, true);
1148
+
1149
+}(ender || $);
1150
+
1151
+!function () { var exports = {}, module = { exports: exports }; !function (doc) {
1152
+  var loaded = 0, fns = [], ol, f = false,
1153
+      testEl = doc.createElement('a'),
1154
+      domContentLoaded = 'DOMContentLoaded',
1155
+      addEventListener = 'addEventListener',
1156
+      onreadystatechange = 'onreadystatechange';
1157
+
1158
+  /^loade|c/.test(doc.readyState) && (loaded = 1);
1159
+
1160
+  function flush() {
1161
+    loaded = 1;
1162
+    for (var i = 0, l = fns.length; i < l; i++) {
1163
+      fns[i]();
1164
+    }
1165
+  }
1166
+  doc[addEventListener] && doc[addEventListener](domContentLoaded, function fn() {
1167
+    doc.removeEventListener(domContentLoaded, fn, f);
1168
+    flush();
1169
+  }, f);
1170
+
1171
+
1172
+  testEl.doScroll && doc.attachEvent(onreadystatechange, (ol = function ol() {
1173
+    if (/^c/.test(doc.readyState)) {
1174
+      doc.detachEvent(onreadystatechange, ol);
1175
+      flush();
1176
+    }
1177
+  }));
1178
+
1179
+  var domReady = testEl.doScroll ?
1180
+    function (fn) {
1181
+      self != top ?
1182
+        !loaded ?
1183
+          fns.push(fn) :
1184
+          fn() :
1185
+        !function () {
1186
+          try {
1187
+            testEl.doScroll('left');
1188
+          } catch (e) {
1189
+            return setTimeout(function() {
1190
+              domReady(fn);
1191
+            }, 50);
1192
+          }
1193
+          fn();
1194
+        }();
1195
+    } :
1196
+    function (fn) {
1197
+      loaded ? fn() : fns.push(fn);
1198
+    };
1199
+
1200
+    (typeof module !== 'undefined') && module.exports ?
1201
+      (module.exports = {domReady: domReady}) :
1202
+      (window.domReady = domReady);
1203
+
1204
+}(document); $.ender(module.exports); }.call($);
1205
+/*!
1206
+  * qwery.js - copyright @dedfat
1207
+  * https://github.com/ded/qwery
1208
+  * Follow our software http://twitter.com/dedfat
1209
+  * MIT License
1210
+  */
1211
+
1212
+!function (context, doc) {
1213
+
1214
+  var c, i, j, k, l, m, o, p, r, v,
1215
+      el, node, len, found, classes, item, items, token,
1216
+      id = /#([\w\-]+)/,
1217
+      clas = /\.[\w\-]+/g,
1218
+      idOnly = /^#([\w\-]+$)/,
1219
+      classOnly = /^\.([\w\-]+)$/,
1220
+      tagOnly = /^([\w\-]+)$/,
1221
+      tagAndOrClass = /^([\w]+)?\.([\w\-]+)$/,
1222
+      html = doc.documentElement,
1223
+      tokenizr = /\s(?![\s\w\-\/\?\&\=\:\.\(\)\!,@#%<>\{\}\$\*\^'"]*\])/,
1224
+      specialChars = /([.*+?\^=!:${}()|\[\]\/\\])/g,
1225
+      simple = /^([a-z0-9]+)?(?:([\.\#]+[\w\-\.#]+)?)/,
1226
+      attr = /\[([\w\-]+)(?:([\|\^\$\*\~]?\=)['"]?([ \w\-\/\?\&\=\:\.\(\)\!,@#%<>\{\}\$\*\^]+)["']?)?\]/,
1227
+      chunker = new RegExp(simple.source + '(' + attr.source + ')?');
1228
+
1229
+  function array(ar) {
1230
+    r = [];
1231
+    for (i = 0, len = ar.length; i < len; i++) {
1232
+      r[i] = ar[i];
1233
+    }
1234
+    return r;
1235
+  }
1236
+
1237
+  var cache = function () {
1238
+    this.c = {};
1239
+  };
1240
+  cache.prototype = {
1241
+    g: function (k) {
1242
+      return this.c[k] || undefined;
1243
+    },
1244
+    s: function (k, v) {
1245
+      this.c[k] = v;
1246
+      return v;
1247
+    }
1248
+  };
1249
+
1250
+  var classCache = new cache(),
1251
+      cleanCache = new cache(),
1252
+      attrCache = new cache(),
1253
+      tokenCache = new cache();
1254
+
1255
+  function q(query) {
1256
+    return query.match(chunker);
1257
+  }
1258
+
1259
+  function interpret(whole, tag, idsAndClasses, wholeAttribute, attribute, qualifier, value) {
1260
+    var m, c, k;
1261
+    if (tag && this.tagName.toLowerCase() !== tag) {
1262
+      return false;
1263
+    }
1264
+    if (idsAndClasses && (m = idsAndClasses.match(id)) && m[1] !== this.id) {
1265
+      return false;
1266
+    }
1267
+    if (idsAndClasses && (classes = idsAndClasses.match(clas))) {
1268
+      for (i = classes.length; i--;) {
1269
+        c = classes[i].slice(1);
1270
+        if (!(classCache.g(c) || classCache.s(c, new RegExp('(^|\\s+)' + c + '(\\s+|$)'))).test(this.className)) {
1271
+          return false;
1272
+        }
1273
+      }
1274
+    }
1275
+    if (wholeAttribute && !value) {
1276
+      o = this.attributes;
1277
+      for (k in o) {
1278
+        if (Object.prototype.hasOwnProperty.call(o, k) && (o[k].name || k) == attribute) {
1279
+          return this;
1280
+        }
1281
+      }
1282
+    }
1283
+    if (wholeAttribute && !checkAttr(qualifier, this.getAttribute(attribute) || '', value)) {
1284
+      return false;
1285
+    }
1286
+    return this;
1287
+  }
1288
+
1289
+  function loopAll(tokens) {
1290
+    var r = [], token = tokens.pop(), intr = q(token), tag = intr[1] || '*', i, l, els,
1291
+        root = tokens.length && (m = tokens[0].match(idOnly)) ? doc.getElementById(m[1]) : doc;
1292
+    if (!root) {
1293
+      return r;
1294
+    }
1295
+    els = root.getElementsByTagName(tag);
1296
+    for (i = 0, l = els.length; i < l; i++) {
1297
+      el = els[i];
1298
+      if (item = interpret.apply(el, intr)) {
1299
+        r.push(item);
1300
+      }
1301
+    }
1302
+    return r;
1303
+  }
1304
+
1305
+  function clean(s) {
1306
+    return cleanCache.g(s) || cleanCache.s(s, s.replace(specialChars, '\\$1'));
1307
+  }
1308
+
1309
+  function checkAttr(qualify, actual, val) {
1310
+    switch (qualify) {
1311
+    case '=':
1312
+      return actual == val;
1313
+    case '^=':
1314
+      return actual.match(attrCache.g('^=' + val) || attrCache.s('^=' + val, new RegExp('^' + clean(val))));
1315
+    case '$=':
1316
+      return actual.match(attrCache.g('$=' + val) || attrCache.s('$=' + val, new RegExp(clean(val) + '$')));
1317
+    case '*=':
1318
+      return actual.match(attrCache.g(val) || attrCache.s(val, new RegExp(clean(val))));
1319
+    case '~=':
1320
+      return actual.match(attrCache.g('~=' + val) || attrCache.s('~=' + val, new RegExp('(?:^|\\s+)' + clean(val) + '(?:\\s+|$)')));
1321
+    case '|=':
1322
+      return actual.match(attrCache.g('|=' + val) || attrCache.s('|=' + val, new RegExp('^' + clean(val) + '(-|$)')));
1323
+    }
1324
+    return false;
1325
+  }
1326
+
1327
+  function _qwery(selector) {
1328
+    var r = [], ret = [], i, l,
1329
+        tokens = tokenCache.g(selector) || tokenCache.s(selector, selector.split(tokenizr));
1330
+    tokens = tokens.slice(0);
1331
+    if (!tokens.length) {
1332
+      return r;
1333
+    }
1334
+    r = loopAll(tokens);
1335
+    if (!tokens.length) {
1336
+      return r;
1337
+    }
1338
+    // loop through all descendent tokens
1339
+    for (j = 0, l = r.length, k = 0; j < l; j++) {
1340
+      node = r[j];
1341
+      p = node;
1342
+      // loop through each token
1343
+      for (i = tokens.length; i--;) {
1344
+        z: // loop through parent nodes
1345
+        while (p !== html && (p = p.parentNode)) {
1346
+          if (found = interpret.apply(p, q(tokens[i]))) {
1347
+            break z;
1348
+          }
1349
+        }
1350
+      }
1351
+      found && (ret[k++] = node);
1352
+    }
1353
+    return ret;
1354
+  }
1355
+
1356
+  function boilerPlate(selector, _root, fn) {
1357
+    var root = (typeof _root == 'string') ? fn(_root)[0] : (_root || doc);
1358
+    if (selector === window || isNode(selector)) {
1359
+      return !_root || (selector !== window && isNode(root) && isAncestor(selector, root)) ? [selector] : [];
1360
+    }
1361
+    if (selector && typeof selector === 'object' && isFinite(selector.length)) {
1362
+      return array(selector);
1363
+    }
1364
+    if (m = selector.match(idOnly)) {
1365
+      return (el = doc.getElementById(m[1])) ? [el] : [];
1366
+    }
1367
+    if (m = selector.match(tagOnly)) {
1368
+      return array(root.getElementsByTagName(m[1]));
1369
+    }
1370
+    return false;
1371
+  }
1372
+
1373
+  function isNode(el) {
1374
+    return (el && el.nodeType && (el.nodeType == 1 || el.nodeType == 9));
1375
+  }
1376
+
1377
+  function uniq(ar) {
1378
+    var a = [], i, j;
1379
+    label:
1380
+    for (i = 0; i < ar.length; i++) {
1381
+      for (j = 0; j < a.length; j++) {
1382
+        if (a[j] == ar[i]) {
1383
+          continue label;
1384
+        }
1385
+      }
1386
+      a[a.length] = ar[i];
1387
+    }
1388
+    return a;
1389
+  }
1390
+
1391
+  function qwery(selector, _root) {
1392
+    var root = (typeof _root == 'string') ? qwery(_root)[0] : (_root || doc);
1393
+    if (!root || !selector) {
1394
+      return [];
1395
+    }
1396
+    if (m = boilerPlate(selector, _root, qwery)) {
1397
+      return m;
1398
+    }
1399
+    return select(selector, root);
1400
+  }
1401
+
1402
+  var isAncestor = 'compareDocumentPosition' in html ?
1403
+    function (element, container) {
1404
+      return (container.compareDocumentPosition(element) & 16) == 16;
1405
+    } : 'contains' in html ?
1406
+    function (element, container) {
1407
+      container = container == doc || container == window ? html : container;
1408
+      return container !== element && container.contains(element);
1409
+    } :
1410
+    function (element, container) {
1411
+      while (element = element.parentNode) {
1412
+        if (element === container) {
1413
+          return 1;
1414
+        }
1415
+      }
1416
+      return 0;
1417
+    },
1418
+
1419
+  select = (doc.querySelector && doc.querySelectorAll) ?
1420
+    function (selector, root) {
1421
+      if (doc.getElementsByClassName && (m = selector.match(classOnly))) {
1422
+        return array((root).getElementsByClassName(m[1]));
1423
+      }
1424
+      return array((root).querySelectorAll(selector));
1425
+    } :
1426
+    function (selector, root) {
1427
+      var result = [], collection, collections = [], i;
1428
+      if (m = selector.match(tagAndOrClass)) {
1429
+        items = root.getElementsByTagName(m[1] || '*');
1430
+        r = classCache.g(m[2]) || classCache.s(m[2], new RegExp('(^|\\s+)' + m[2] + '(\\s+|$)'));
1431
+        for (i = 0, l = items.length, j = 0; i < l; i++) {
1432
+          r.test(items[i].className) && (result[j++] = items[i]);
1433
+        }
1434
+        return result;
1435
+      }
1436
+      for (i = 0, items = selector.split(','), l = items.length; i < l; i++) {
1437
+        collections[i] = _qwery(items[i]);
1438
+      }
1439
+      for (i = 0, l = collections.length; i < l && (collection = collections[i]); i++) {
1440
+        var ret = collection;
1441
+        if (root !== doc) {
1442
+          ret = [];
1443
+          for (j = 0, m = collection.length; j < m && (element = collection[j]); j++) {
1444
+            // make sure element is a descendent of root
1445
+            isAncestor(element, root) && ret.push(element);
1446
+          }
1447
+        }
1448
+        result = result.concat(ret);
1449
+      }
1450
+      return uniq(result);
1451
+    };
1452
+
1453
+  qwery.uniq = uniq;
1454
+  var oldQwery = context.qwery;
1455
+  qwery.noConflict = function () {
1456
+    context.qwery = oldQwery;
1457
+    return this;
1458
+  };
1459
+  context['qwery'] = qwery;
1460
+
1461
+}(this, document);!function (doc) {
1462
+  var q = qwery.noConflict();
1463
+  function create(node, root) {
1464
+    var el = (root || doc).createElement('div'), els = [];
1465
+    el.innerHTML = node;
1466
+    var nodes = el.childNodes;
1467
+    el = el.firstChild;
1468
+    els.push(el);
1469
+    while (el = el.nextSibling) {
1470
+      (el.nodeType == 1) && els.push(el);
1471
+    }
1472
+    return els;
1473
+  };
1474
+  $._select = function (s, r) {
1475
+    return /^\s*</.test(s) ? create(s, r) : q(s, r);
1476
+  };
1477
+  $.ender({
1478
+    find: function (s) {
1479
+      var r = [], i, l, j, k, els;
1480
+      for (i = 0, l = this.length; i < l; i++) {
1481
+        els = q(s, this[i]);
1482
+        for (j = 0, k = els.length; j < k; j++) {
1483
+          r.push(els[j]);
1484
+        }
1485
+      }
1486
+      return $(q.uniq(r));
1487
+    }
1488
+    , and: function (s) {
1489
+      var plus = $(s);
1490
+      for (var i = this.length, j = 0, l = this.length + plus.length; i < l; i++, j++) {
1491
+        this[i] = plus[j];
1492
+      }
1493
+      return this;
1494
+    }
1495
+  }, true);
1496
+}(document);
0 1497
new file mode 100644
... ...
@@ -0,0 +1,85 @@
0
+// jXHR.js (JSON-P XHR)
1
+// v0.1 (c) Kyle Simpson
2
+// MIT License
3
+
4
+(function(global){
5
+	var SETTIMEOUT = global.setTimeout, // for better compression
6
+		doc = global.document,
7
+		callback_counter = 0;
8
+
9
+	global.jXHR = function() {
10
+		var script_url,
11
+			script_loaded,
12
+			jsonp_callback,
13
+			scriptElem,
14
+			publicAPI = null;
15
+
16
+		function removeScript() { try { scriptElem.parentNode.removeChild(scriptElem); } catch (err) { } }
17
+
18
+		function reset() {
19
+			script_loaded = false;
20
+			script_url = "";
21
+			removeScript();
22
+			scriptElem = null;
23
+			fireReadyStateChange(0);
24
+		}
25
+
26
+		function ThrowError(msg) {
27
+			try { publicAPI.onerror.call(publicAPI,msg,script_url); } catch (err) { throw new Error(msg); }
28
+		}
29
+
30
+		function handleScriptLoad() {
31
+			if ((this.readyState && this.readyState!=="complete" && this.readyState!=="loaded") || script_loaded) { return; }
32
+			this.onload = this.onreadystatechange = null; // prevent memory leak
33
+			script_loaded = true;
34
+			if (publicAPI.readyState !== 4) ThrowError("Script failed to load ["+script_url+"].");
35
+			removeScript();
36
+		}
37
+
38
+		function fireReadyStateChange(rs,args) {
39
+			args = args || [];
40
+			publicAPI.readyState = rs;
41
+			if (typeof publicAPI.onreadystatechange === "function") publicAPI.onreadystatechange.apply(publicAPI,args);
42
+		}
43
+
44
+		publicAPI = {
45
+			onerror:null,
46
+			onreadystatechange:null,
47
+			readyState:0,
48
+			open:function(method,url){
49
+				reset();
50
+				internal_callback = "cb"+(callback_counter++);
51
+				(function(icb){
52
+					global.jXHR[icb] = function() {
53
+						try { fireReadyStateChange.call(publicAPI,4,arguments); }
54
+						catch(err) {
55
+							publicAPI.readyState = -1;
56
+							ThrowError("Script failed to run ["+script_url+"].");
57
+						}
58
+						global.jXHR[icb] = null;
59
+					};
60
+				})(internal_callback);
61
+				script_url = url.replace(/=\?/,"=jXHR."+internal_callback);
62
+				fireReadyStateChange(1);
63
+			},
64
+			send:function(){
65
+				SETTIMEOUT(function(){
66
+					scriptElem = doc.createElement("script");
67
+					scriptElem.setAttribute("type","text/javascript");
68
+					scriptElem.onload = scriptElem.onreadystatechange = function(){handleScriptLoad.call(scriptElem);};
69
+					scriptElem.setAttribute("src",script_url);
70
+					doc.getElementsByTagName("head")[0].appendChild(scriptElem);
71
+				},0);
72
+				fireReadyStateChange(2);
73
+			},
74
+			setRequestHeader:function(){}, // noop
75
+			getResponseHeader:function(){return "";}, // basically noop
76
+			getAllResponseHeaders:function(){return [];} // ditto
77
+		};
78
+
79
+		reset();
80
+
81
+		return publicAPI;
82
+	};
83
+})(window);
84
+
0 85
new file mode 100644
... ...
@@ -0,0 +1,88 @@
0
+function getNav(){
1
+  var fieldset = $('body > nav fieldset[role=site-search]').after('<fieldset role="mobile-nav"></fieldset>').next();
2
+  var select = $(fieldset).append('<select></select>').children();
3
+  select.append('<option value="">Navigate&hellip;</option>');
4
+  $($('body > nav ul[role=main-nav] a').concat($('body > nav ul[role=subscription] a'))).each(function(link) {
5
+    select.append('<option value="'+link.href+'">&bull; '+link.text+'</option>')
6
+  });
7
+  select.bind('change', function(event){
8
+    if (select.val()) window.location.href = select.val();
9
+  });
10
+}
11
+function addSidebarToggler() {
12
+  $('#articles').before('<a href="#" class="toggle-sidebar">&raquo;</a>').previous().bind('click', function(e){
13
+    e.preventDefault();
14
+    if($('body').hasClass('collapse-sidebar')){
15
+      $('body').removeClass('collapse-sidebar');
16
+      e.target.innerHTML = '&raquo;';
17
+    } else {
18
+      $('body').addClass('collapse-sidebar');
19
+      e.target.innerHTML = '&laquo;';
20
+    }
21
+  });
22
+}
23
+function testFeatures() {
24
+  var features = ['maskImage'];
25
+  $(features).map(function(feature){
26
+    if(Modernizr.testAllProps(feature)) {
27
+      $('html').addClass(feature);
28
+    } else {
29
+      $('html').addClass('no-'+feature);
30
+    }
31
+  });
32
+}
33
+
34
+function addDivLines(){
35
+  $('div.highlight pre code').each(function(el){
36
+    var content = bonzo(el).html();
37
+    var lines = content.split('\n');
38
+    var count = lines.length;
39
+    bonzo(lines).each(function(line, index){
40
+      if(line == '') line = ' ';
41
+      lines[index] = '<div class="line">' + line + '</div>';
42
+    });
43
+    $(el).html(lines.join(''));
44
+  });
45
+}
46
+function preToTable(){
47
+  $('div.highlight').each(function(code){
48
+    var tableStart = '<table cellpadding="0" cellspacing="0"><tbody><tr><td class="gutter">';
49
+    var lineNumbers = '<pre class="line-numbers">';
50
+    var tableMiddle = '</pre></td><td class="code" width="100%">';
51
+    var tableEnd = '</td></tr></tbody></table>';
52
+    var count = $('div.line', code).length;
53
+    for (i=1;i<=count; i++){
54
+      lineNumbers += '<span class="line">'+i+'</span>\n';
55
+    }
56
+    table = tableStart + lineNumbers + tableMiddle + '<pre>'+$('pre', code).html()+'</pre>' + tableEnd;
57
+    $(code).html(table);
58
+  });
59
+}
60
+$.domReady(function(){
61
+  testFeatures();
62
+  addDivLines();
63
+  preToTable();
64
+  getNav();
65
+  addSidebarToggler();
66
+});
67
+
68
+// iOS scaling bug fix
69
+// Rewritten version
70
+// By @mathias, @cheeaun and @jdalton
71
+// Source url: https://gist.github.com/901295
72
+(function(doc) {
73
+  var addEvent = 'addEventListener',
74
+  type = 'gesturestart',
75
+  qsa = 'querySelectorAll',
76
+  scales = [1, 1],
77
+  meta = qsa in doc ? doc[qsa]('meta[name=viewport]') : [];
78
+  function fix() {
79
+    meta.content = 'width=device-width,minimum-scale=' + scales[0] + ',maximum-scale=' + scales[1];
80
+    doc.removeEventListener(type, fix, true);
81
+  }
82
+  if ((meta = meta[meta.length - 1]) && addEvent in doc) {
83
+    fix();
84
+    scales = [.25, 1.6];
85
+    doc[addEvent](type, fix, true);
86
+  }
87
+}(document));
0 88
new file mode 100644
... ...
@@ -0,0 +1,56 @@
0
+function pinboardNS_fetch_script(url) {
1
+  //document.writeln('<s'+'cript type="text/javascript" src="' + url + '"></s'+'cript>');
2
+  (function(){
3
+    var pinboardLinkroll = document.createElement('script');
4
+    pinboardLinkroll.type = 'text/javascript';
5
+    pinboardLinkroll.async = true;
6
+    pinboardLinkroll.src = url;
7
+    document.getElementsByTagName('head')[0].appendChild(pinboardLinkroll);
8
+  })();
9
+}
10
+
11
+function pinboardNS_show_bmarks(r) {
12
+  var lr = new Pinboard_Linkroll();
13
+  lr.set_items(r);
14
+  lr.show_bmarks();
15
+}
16
+
17
+function Pinboard_Linkroll() {
18
+  var items;
19
+
20
+  this.set_items = function(i) {
21
+    this.items = i;
22
+  }
23
+  this.show_bmarks = function() {
24
+    var lines = [];
25
+    for (var i = 0; i < this.items.length; i++) {
26
+      var item = this.items[i];
27
+      var str = this.format_item(item);
28
+      lines.push(str);
29
+    }
30
+    document.getElementById(linkroll).innerHTML = lines.join("\n");
31
+  }
32
+  this.cook = function(v) {
33
+    return v.replace('<', '&lt;').replace('>', '&gt>');
34
+  }
35
+
36
+  this.format_item = function(it) {
37
+    var str = "<li class=\"pin-item\">";
38
+    if (!it.d) { return; }
39
+    str += "<p><a class=\"pin-title\" href=\"" + this.cook(it.u) + "\">" + this.cook(it.d) + "</a>";
40
+    if (it.n) {
41
+      str += "<span class=\"pin-description\">" + this.cook(it.n) + "</span>\n";
42
+    }
43
+    if (it.t.length > 0) {
44
+      for (var i = 0; i < it.t.length; i++) {
45
+        var tag = it.t[i];
46
+        str += " <a class=\"pin-tag\" href=\"http://pinboard.in/u:"+ this.cook(it.a) + "/t:" + this.cook(tag) + "\">" + this.cook(tag).replace(/^\s+|\s+$/g, '') + "</a> ";
47
+      }
48
+    }
49
+    str += "</p></li>\n";
50
+    return str;
51
+  }
52
+}
53
+Pinboard_Linkroll.prototype = new Pinboard_Linkroll();
54
+pinboardNS_fetch_script("http://feeds.pinboard.in/json/v1/u:"+pinboard_user+"/?cb=pinboardNS_show_bmarks\&count="+pinboard_count);
55
+
0 56
new file mode 100644
... ...
@@ -0,0 +1,80 @@
0
+// JSON-P Twitter fetcher for Octopress
1
+// (c) Brandon Mathis // MIT Lisence
2
+function getTwitterFeed(user, count, replies) {
3
+  feed = new jXHR();
4
+  feed.onerror = function (msg,url) {
5
+    $('#tweets li.loading').addClass('error').text("Twitter's busted");
6
+  }
7
+  feed.onreadystatechange = function(data){
8
+    if (feed.readyState === 4) {
9
+      var tweets = new Array();
10
+      for (i in data){
11
+        if(tweets.length < count){
12
+          if(replies || data[i].in_reply_to_user_id == null){
13
+            tweets.push(data[i]);
14
+          }
15
+        }
16
+      }
17
+      showTwitterFeed(tweets, user);
18
+    }
19
+  };
20
+  feed.open("GET","http://twitter.com/statuses/user_timeline/"+user+".json?trim_user=true&count="+(parseInt(count)+60)+"&callback=?");
21
+  feed.send();
22
+}
23
+
24
+function showTwitterFeed(tweets, twitter_user){
25
+  var timeline = document.getElementById('tweets');
26
+  timeline.innerHTML='';
27
+  for (t in tweets){
28
+    timeline.innerHTML+='<li>'+'<p>'+'<a href="http://twitter.com/'+twitter_user+'/status/'+tweets[t].id_str+'">'+prettyDate(tweets[t].created_at)+'</a>'+linkifyTweet(tweets[t].text)+'</p>'+'</li>';
29
+  }
30
+}
31
+function linkifyTweet(text){
32
+  return text.replace(/(https?:\/\/)([\w\-:;?&=+.%#\/]+)/gi, '<a href="$1$2">$2</a>')
33
+    .replace(/(^|\W)@(\w+)/g, '$1<a href="http://twitter.com/$2">@$2</a>')
34
+    .replace(/(^|\W)#(\w+)/g, '$1<a href="http://search.twitter.com/search?q=%23$2">#$2</a>');
35
+}
36
+
37
+
38
+
39
+// jXHR.js (JSON-P XHR) | v0.1 (c) Kyle Simpson | MIT License | http://mulletxhr.com/
40
+// uncompressed version available in source/javascripts/libs/jXHR.js
41
+(function(c){var b=c.setTimeout,d=c.document,a=0;c.jXHR=function(){var e,g,n,h,m=null;function l(){try{h.parentNode.removeChild(h)}catch(o){}}function k(){g=false;e="";l();h=null;i(0)}function f(p){try{m.onerror.call(m,p,e)}catch(o){throw new Error(p)}}function j(){if((this.readyState&&this.readyState!=="complete"&&this.readyState!=="loaded")||g){return}this.onload=this.onreadystatechange=null;g=true;if(m.readyState!==4){f("Script failed to load ["+e+"].")}l()}function i(o,p){p=p||[];m.readyState=o;if(typeof m.onreadystatechange==="function"){m.onreadystatechange.apply(m,p)}}m={onerror:null,onreadystatechange:null,readyState:0,open:function(p,o){k();internal_callback="cb"+(a++);(function(q){c.jXHR[q]=function(){try{i.call(m,4,arguments)}catch(r){m.readyState=-1;f("Script failed to run ["+e+"].")}c.jXHR[q]=null}})(internal_callback);e=o.replace(/=\?/,"=jXHR."+internal_callback);i(1)},send:function(){b(function(){h=d.createElement("script");h.setAttribute("type","text/javascript");h.onload=h.onreadystatechange=function(){j.call(h)};h.setAttribute("src",e);d.getElementsByTagName("head")[0].appendChild(h)},0);i(2)},setRequestHeader:function(){},getResponseHeader:function(){return""},getAllResponseHeaders:function(){return[]}};k();return m}})(window);
42
+
43
+
44
+/* Sky Slavin, Ludopoli. MIT license.  * based on JavaScript Pretty Date * Copyright (c) 2008 John Resig (jquery.com) * Licensed under the MIT license.  */
45
+
46
+function prettyDate(time) {
47
+  if (navigator.appName == 'Microsoft Internet Explorer') {
48
+    return "<span>&infin;</span>"; // because IE date parsing isn't fun.
49
+  };
50
+
51
+  var say = {};
52
+  say.just_now = " now",
53
+  say.minute_ago = "1m",
54
+  say.minutes_ago = "m",
55
+  say.hour_ago = "1h",
56
+  say.hours_ago = "h",
57
+  say.yesterday = "1d",
58
+  say.days_ago = "d",
59
+  say.weeks_ago = "w"
60
+
61
+  var current_date = new Date();
62
+  current_date_time = current_date.getTime();
63
+  current_date_full = current_date_time + (1 * 60000);
64
+  var date = new Date(time);
65
+  var diff = ((current_date_full - date.getTime()) / 1000);
66
+  var day_diff = Math.floor(diff / 86400);
67
+
68
+  if (isNaN(day_diff) || day_diff < 0 || day_diff >= 31) return;
69
+
70
+  return day_diff == 0 && (
71
+    diff < 60 && say.just_now ||
72
+    diff < 120 && say.minute_ago ||
73
+    diff < 3600 && Math.floor(diff / 60) + say.minutes_ago ||
74
+    diff < 7200 && say.hour_ago ||
75
+    diff < 86400 && Math.floor(diff / 3600) + say.hours_ago) ||
76
+    day_diff == 1 && say.yesterday ||
77
+    day_diff < 7 && day_diff + say.days_ago ||
78
+    day_diff < 31 && Math.ceil(day_diff / 7) + say.weeks_ago;
79
+}
0 80
new file mode 100644
... ...
@@ -0,0 +1 @@
0
+@charset "UTF-8";html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}body{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}#articles a,#articles + aside a{color:#1863a1}#articles a:visited,#articles + aside a:visited{color:#4f1175}#articles a:focus,#articles + aside a:focus{color:#033b6a}#articles a:hover,#articles + aside a:hover{color:#033b6a}.group,body > header,body > nav,body > footer,body #articles > article,body > nav + div,body > nav + div > div{*zoom:1}.group:after,body > header:after,body > nav:after,body > footer:after,body #articles > article:after,body > nav + div:after,body > nav + div > div:after{content:"\0020";display:block;height:0;clear:both;overflow:hidden;visibility:hidden}body{-webkit-text-size-adjust:none;max-width:1400px;position:relative;margin:0 auto}body > header,body > nav,body > footer,body #articles > article{padding-left:18px;padding-right:18px}@media only screen and (min-width: 480px){body > header,body > nav,body > footer,body #articles > article{padding-left:18px;padding-right:18px}}@media only screen and (min-width: 768px){body > header,body > nav,body > footer,body #articles > article{padding-left:24px;padding-right:24px}}@media only screen and (min-width: 992px){body > header,body > nav,body > footer,body #articles > article{padding-left:30px;padding-right:30px}}body > header{font-size:.8em;padding-top:1.5em;padding-bottom:1.5em}.toggle-sidebar{display:none}#articles{width:100%}#articles + aside{display:none}@media only screen and (min-width: 550px){body > header{font-size:1em}}@media only screen and (min-width: 768px){body{-webkit-text-size-adjust:auto}body > header{font-size:1.2em}body > nav + div{padding:0;margin:0 auto}body > nav + div > div{margin-right:240px}#articles{padding-top:12px;padding-bottom:12px;float:left}#articles + aside{width:210px;padding:0 15px 15px;display:block;float:left;margin:0 -100% 0 0}body > div > div{position:relative}.collapse-sidebar > div > div{margin-right:10px}.collapse-sidebar #articles + aside{display:none}.collapse-sidebar .toggle-sidebar{right:-1px;background-color:#eeeeee;border-right-width:0;text-indent:2px;border-left:1px solid #dcdcdc;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;-o-border-bottom-right-radius:0;-ms-border-bottom-right-radius:0;-khtml-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0.3em;-webkit-border-bottom-left-radius:0.3em;-o-border-bottom-left-radius:0.3em;-ms-border-bottom-left-radius:0.3em;-khtml-border-bottom-left-radius:0.3em;border-bottom-left-radius:0.3em;color:#aaaaaa}.collapse-sidebar .toggle-sidebar:hover{color:#888888}.toggle-sidebar{outline:none;position:absolute;right:-21px;top:0;width:20px;font-size:1.2em;line-height:1.1em;padding-bottom:.1em;text-indent:-1px;text-decoration:none;color:#cccccc;-moz-border-radius-bottomright:0.3em;-webkit-border-bottom-right-radius:0.3em;-o-border-bottom-right-radius:0.3em;-ms-border-bottom-right-radius:0.3em;-khtml-border-bottom-right-radius:0.3em;border-bottom-right-radius:0.3em;text-align:center;background:#f7f7f7;border-bottom:1px solid #dcdcdc;border-right:1px solid #dcdcdc;display:inline-block}.toggle-sidebar:hover{color:#999999}}@media only screen and (min-width: 992px){body > *{font-size:1.1em}body > header{font-size:1.3em}body > nav + div > div{margin-right:300px}#articles{padding-top:15px;padding-bottom:15px}#articles + aside{width:260px;padding:0 20px 20px}}.heading,body > header h1,h1,h2,h3,h4,h5,h6{font-family:"Georgia", "PT Sans", "Helvetica Neue", Arial, sans-serif;font-weight:bold}.sans,body > nav a,#articles + aside section,body > footer{font-family:"Helvetica Neue", Arial, sans-serif}.serif,body{font-family:Georgia, Times, "Times New Roman", serif}.mono,.pre,html .gist .gist-file .gist-syntax .gist-highlight pre,pre{font-family:Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace}body > header h1{font-size:2em;font-weight:normal;line-height:1.2em;margin-bottom:0.6667em}body{line-height:1.5em;color:black}h1,h2,h3,h4,h5,h6{text-rendering:optimizelegibility;margin-bottom:1em;font-weight:normal}h1{font-size:2em;line-height:1.3334em}h2,section h1{font-size:1.5em}h3,section h2,section section h1{font-size:1.3em}h4,section h3,section section h2,section section section h1{font-size:1em}h5,section h4,section section h3{font-size:.9em}h6,section h5,section section h4,section section section h3{font-size:.8em}p,blockquote,ul,ol{margin-bottom:1.5em}ul{list-style-type:disc}ol{list-style-type:decimal}ol ol{list-style-type:lower-alpha}ul ul,ol ol{margin-left:1.75em}li{margin-bottom:.5em}strong{font-weight:bold}em{font-style:italic}sup,sub{font-size:0.8em;position:relative;display:inline-block}sup{top:-0.5em}sub{bottom:-0.5em}q{font-style:italic}q:before{content:"\201C"}q:after{content:"\201D"}em,dfn{font-style:italic}strong,dfn{font-weight:bold}del,s{text-decoration:line-through}abbr,acronym{border-bottom:1px dotted;cursor:help}sub,sup{line-height:0}hr{margin-bottom:0.2em}small{font-size:.8em}big{font-size:1.2em}blockquote{font-style:italic;position:relative;margin-left:1.2em}blockquote > p:first-child:before{content:"\201C";position:absolute;top:0.1em;left:-0.5em;font-size:3em;color:#dddddd}blockquote > p:last-child:after{content:"\201D";position:relative;top:0.3em;line-height:0;font-size:2em;color:#dddddd}blockquote + p > cite{margin-left:1.2em;text-align:right}blockquote + p > cite:before{content:'– ';color:#555555}blockquote + p > cite a{font-style:italic}body > header{background-color:#333333}body > header h1{display:inline-block;margin:0}body > header h1 a,body > header h1 a:visited{color:#f2f2f2;text-decoration:none}body > nav{position:relative;background-color:#cccccc;background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e0e0e0), color-stop(50%, #cccccc), color-stop(100%, #b0b0b0));background:-webkit-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:-moz-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:-o-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:linear-gradient(#e0e0e0,#cccccc,#b0b0b0);border-top:1px solid #f2f2f2;border-bottom:1px solid #8c8c8c;padding-top:.35em;padding-bottom:.35em}body > nav form{-moz-background-clip:padding;-webkit-background-clip:padding;-o-background-clip:padding-box;-ms-background-clip:padding-box;-khtml-background-clip:padding-box;background-clip:padding-box;margin:0;padding:0}body > nav form .search{padding:.25em .5em 0;font-size:.85em;line-height:1em;width:95%;-moz-border-radius:0.5em;-webkit-border-radius:0.5em;-o-border-radius:0.5em;-ms-border-radius:0.5em;-khtml-border-radius:0.5em;border-radius:0.5em;-moz-background-clip:padding;-webkit-background-clip:padding;-o-background-clip:padding-box;-ms-background-clip:padding-box;-khtml-background-clip:padding-box;background-clip:padding-box;-moz-box-shadow:#d1d1d1 0 1px;-webkit-box-shadow:#d1d1d1 0 1px;-o-box-shadow:#d1d1d1 0 1px;box-shadow:#d1d1d1 0 1px;background-color:#f2f2f2;border:1px solid #b3b3b3;color:#888}body > nav form .search:focus{color:#444;border-color:#80b1df;-moz-box-shadow:#80b1df 0 0 4px, #80b1df 0 0 3px inset;-webkit-box-shadow:#80b1df 0 0 4px, #80b1df 0 0 3px inset;-o-box-shadow:#80b1df 0 0 4px, #80b1df 0 0 3px inset;box-shadow:#80b1df 0 0 4px, #80b1df 0 0 3px inset;background-color:#fff;outline:none}body > nav fieldset[role=site-search]{float:right;width:48%}body > nav fieldset[role=mobile-nav]{float:left;width:48%}body > nav fieldset[role=mobile-nav] select{width:100%;font-size:.8em;border:1px solid #888}body > nav ul{display:none}@media only screen and (min-width: 550px){body > nav{font-size:.9em}body > nav ul{margin:0;padding:0;border:0;overflow:hidden;*zoom:1;float:left;display:block;padding-top:.25em}body > nav ul li{list-style-image:none;list-style-type:none;margin-left:0px;white-space:nowrap;display:inline;float:left;padding-left:0;padding-right:0}body > nav ul li:first-child,body > nav ul li.first{padding-left:0}body > nav ul li:last-child{padding-right:0}body > nav ul li.last{padding-right:0}body > nav ul[role=subscription]{margin-left:.8em;float:right}body > nav ul[role=subscription] li:last-child a{padding-right:0}body > nav ul li{margin:0}body > nav a{color:#6b6b6b;text-shadow:#ebebeb 0 1px;float:left;text-decoration:none;font-size:.9em;padding:.1em 0;line-height:1.5em}body > nav a:visited{color:#6b6b6b}body > nav a:hover{color:#2b2b2b}body > nav li + li{border-left:1px solid #b0b0b0;margin-left:.8em}body > nav li + li a{padding-left:.8em;border-left:1px solid #dedede}body > nav fieldset[role=mobile-nav]{display:none}body > nav fieldset[role=site-search]{width:100%}body > nav form{float:right;text-align:left;width:182px;padding-left:.8em}body > nav form .search{width:93%;font-size:.95em;line-height:1.2em}}@media only screen and (min-width: 992px){body > nav form{width:235px}}.maskImage ul[role=subscription] li,.maskImage ul[role=subscription] a{border:0;padding:0}.maskImage a[rel=subscribe-rss]{position:relative;top:-2px;width:24px;height:24px;-moz-mask-image:url('/images/rss.png?1305289158');-webkit-mask-image:url('/images/rss.png?1305289158');-o-mask-image:url('/images/rss.png?1305289158');-ms-mask-image:url('/images/rss.png?1305289158');-khtml-mask-image:url('/images/rss.png?1305289158');mask-image:url('/images/rss.png?1305289158');-moz-mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;-o-mask-repeat:no-repeat;-ms-mask-repeat:no-repeat;-khtml-mask-repeat:no-repeat;mask-repeat:no-repeat;text-indent:-999999em;background-color:#dedede;border:0;padding:0}.maskImage a[rel=subscribe-rss]:hover:after{background-color:#969696}.maskImage a[rel=subscribe-rss]:after{content:"";-moz-mask-image:url('/images/rss.png?1305289158');-webkit-mask-image:url('/images/rss.png?1305289158');-o-mask-image:url('/images/rss.png?1305289158');-ms-mask-image:url('/images/rss.png?1305289158');-khtml-mask-image:url('/images/rss.png?1305289158');mask-image:url('/images/rss.png?1305289158');-moz-mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;-o-mask-repeat:no-repeat;-ms-mask-repeat:no-repeat;-khtml-mask-repeat:no-repeat;mask-repeat:no-repeat;width:24px;height:24px;position:absolute;top:-1px;left:0;background-color:#b0b0b0}html{background:#252525 url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAMAAABHPGVmAAAAb1BMVEUAAAAdHR0eHR4eHh4eHh8fHx8gICAhISEiISIiIiIjIyMkJCQlJCUlJSUmJSYmJiYnJycoKCgpKCkqKisqKywrKywsKy0sLC0tLC4tLS4tLS8uLi8uLjAvLzAwLzEAAAAAAAAAAAAAAAAAAAAAAADZ8HsjAAAAJXRSTlMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQMGCw4PcEyLoAAAAZdJREFUaN7tmFlvwkAQg4cSoClHQsvRAmkyXv7/b6w3BFH15EjmAc2DX2xZn6IIsmvZV6KhrAWIQKUMKhXt6hhFG7V9jC5sXNO5uCEmFDWgSDCgXPsuL2qICUUNKBIMKLf8xs5uiAkFBpQb/5XOa8j9UGBAaeFr8X9DTCilAUWCAaWlr/jfDTGhVAYU2RtQWjxd/d4QE4rFs8jegNLyqffnhphQ1IAiwYDSwW3ke0NMKGpA6eb+9qUh90OBAaW7e/WnhphQSgOKBANKt3vH6ZhqQCkNKBIMKN3vUKdjascUg03tdEz15c6XO1/ufLnz5c6XO1/ufLnz5c6XO1/ufLnz5c6XO1/ufLnz5c6Xu+6Xu4QaAekQmjBIGPSioq1IGPVpP0Q1dkr1gMEjNKXdpz2ghtFW9BlFO20aA5kzeKbGQJ5DMwY5gwk1pZ0rsgx4oj2hprTntV03ZrNDY0w7o6I9YYNRtKdNQ6odgw31AhQFtGDwymBNFbS3itUaWNB+o5a0l7RjtKD9Dt01jV3T2Ci2WyDaq0PjAzgEkrGstE8ZAAAAAElFTkSuQmCC') top left}body{background-color:#333333;border:0 0 1px 0 solid #181818}body > div{background-color:#eeeeee;border-bottom:1px solid #8c8c8c}body > div > div{background-color:#f7f7f7;border-right:1px solid #dcdcdc}@media only screen and (min-width: 1400px){body{border:1px solid #181818;border-top:0}}.side-shadow-border,#articles + aside section h1,#articles + aside li{-moz-box-shadow:white 0 1px;-webkit-box-shadow:white 0 1px;-o-box-shadow:white 0 1px;box-shadow:white 0 1px}#articles + aside{padding-top:1.2em}#articles + aside section{font-size:.8em;line-height:1.5em;margin-bottom:1.5em}#articles + aside section h1{margin:1.5em 0 0;padding-bottom:.2em;border-bottom:1px solid #dcdcdc}#articles + aside section h1 + p{padding-top:.4em}#articles + aside ul{margin-bottom:0.5em}#articles + aside li{list-style:none;padding:.5em 0;margin:0;border-bottom:1px solid #dcdcdc}#articles + aside li p:last-child{margin-bottom:0}#articles + aside a{color:inherit;-moz-transition-property:color;-webkit-transition-property:color;-o-transition-property:color;transition-property:color;-moz-transition-duration:0.5s;-webkit-transition-duration:0.5s;-o-transition-duration:0.5s;transition-duration:0.5s}#articles + aside:hover a,#articles + aside:hover #tweets a{color:#1863a1}#articles + aside #recent_posts time{text-transform:uppercase;font-size:.9em;color:#666}#articles + aside #tweets a{color:#666;text-decoration:none}#articles + aside #tweets a:hover{text-decoration:underline}#articles + aside #tweets li:hover a[href*='status']{color:#666}#articles + aside #tweets p{position:relative;padding-right:1.4em}#articles + aside #tweets a[href*='status']{color:#ccc;position:absolute;top:0;right:-0.5em;text-decoration:none;padding:0 .5em .1em;text-shadow:#fff 0 1px}#articles + aside #tweets a[href*='status'] span:last-child{display:none;font-size:.7em}#articles + aside #tweets a[href*='status'] span:first-child{font-size:1.1em}#articles + aside #tweets a[href*='status']:hover{background:#e5e5e5;-moz-box-shadow:#eeeeee -2px 2px 8px 8px;-webkit-box-shadow:#eeeeee -2px 2px 8px 8px;-o-box-shadow:#eeeeee -2px 2px 8px 8px;box-shadow:#eeeeee -2px 2px 8px 8px;-moz-border-radius:1em;-webkit-border-radius:1em;-o-border-radius:1em;-ms-border-radius:1em;-khtml-border-radius:1em;border-radius:1em;text-decoration:none;line-height:1.2em}#articles + aside #tweets a[href*='status']:hover span:first-child{display:none}#articles + aside #tweets a[href*='status']:hover span:last-child{display:inline-block}#articles + aside #tweets a[href*='status']:hover span:last-child{color:#444}#articles + aside #pinboard_linkroll .pin-title,#articles + aside #pinboard_linkroll .pin-description{display:block;margin-bottom:.5em}#articles + aside #pinboard_linkroll .pin-tag{text-decoration:none}#articles + aside #pinboard_linkroll .pin-tag:hover{text-decoration:underline}#articles + aside #pinboard_linkroll .pin-tag:after{content:','}#articles + aside #pinboard_linkroll .pin-tag:last-child:after{content:''}#articles + aside .delicious-posts a.delicious-link{margin-bottom:.5em;display:block}#articles + aside .delicious-posts p{font-size:1em}.aside-alt-link,#articles + aside #tweets a[href*='twitter.com/search'],#articles + aside #pinboard_linkroll .pin-tag{color:#999}.aside-alt-link:hover,#articles + aside #tweets a[href*='twitter.com/search']:hover,#articles + aside #pinboard_linkroll .pin-tag:hover{color:#555}#articles > article{padding-bottom:1em}#articles > article:last-child{margin-bottom:0;border-bottom:none}#articles > article h2{padding-top:0.8em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') top left repeat-x}#articles > article .byline + time:before,#articles > article .byline + time + time:before{content:"\2022 ";padding:0 .3em 0 .2em;display:inline-block;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=50);opacity:0.5}#articles > article header{padding-top:2em;margin-bottom:1.5em;padding-bottom:1.5em;background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAABCAYAAACsXeyTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVQIHWNIS0sr/v//PwMMDzY+ADqMahlW4J91AAAAAElFTkSuQmCC') bottom left repeat-x}#articles > article header h1{margin:0}#articles > article header h1 a{text-decoration:none}#articles > article header h1 a:hover{text-decoration:underline}#articles > article header p{font-size:.9em;color:#555555;border:none;padding-top:0;margin:0;font-style:italic;font-family:"Georgia", Palatino, Times, "Times New Roman"}#articles > article .entry-content img{max-width:100%}#articles > article .meta{border-bottom:1px dashed #dddddd;text-transform:uppercase;color:#777777;padding:8px 0 5px;margin-bottom:1.5em;font-size:75%;letter-spacing:1px}#articles > article .footer{padding-top:15px}body > footer{font-size:.8em;color:#6b6b6b;text-shadow:#d9d9d9 0 1px;background-color:#ccc;background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e0e0e0), color-stop(50%, #cccccc), color-stop(100%, #b0b0b0));background:-webkit-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:-moz-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:-o-linear-gradient(#e0e0e0,#cccccc,#b0b0b0);background:linear-gradient(#e0e0e0,#cccccc,#b0b0b0);border-top:1px solid #f2f2f2;position:relative;padding-top:1em;padding-bottom:1em;z-index:1}body > footer a{color:#6b6b6b}body > footer a:hover{color:#2b2b2b}body > footer p:last-child{margin-bottom:0}.gutter .line-numbers{text-align:right;background:#073642 !important;border-right:1px solid #00232c;-moz-box-shadow:#083e4b -1px 0 inset;-webkit-box-shadow:#083e4b -1px 0 inset;-o-box-shadow:#083e4b -1px 0 inset;box-shadow:#083e4b -1px 0 inset;text-shadow:#021014 0 -1px}.gutter .line-numbers span{color:#586e75 !important}html .gist .gist-file{margin-bottom:1.5em;border:none}html .gist .gist-file .gist-syntax{border-bottom:1px solid #515151 !important}html .gist .gist-file .gist-syntax .gist-highlight{background:#002b36 !important}html .gist .gist-file .gist-syntax .gist-highlight pre{overflow-y:hidden;overflow-x:auto}html .gist .gist-file .gist-meta{background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b0b0b0), color-stop(100%, #a7a7a7));background:-webkit-linear-gradient(#b0b0b0,#a7a7a7);background:-moz-linear-gradient(#b0b0b0,#a7a7a7);background:-o-linear-gradient(#b0b0b0,#a7a7a7);background:linear-gradient(#b0b0b0,#a7a7a7);padding:0.5em;background-color:#bababa !important;border:1px solid #9c9c9c;border-top:1px solid #d0d0d0;border-bottom:1px solid #777777;font-size:.7em !important;font-family:"Helvetica Neue", Arial, sans-serif !important;color:#464646 !important;line-height:1.4em}.pre,html .gist .gist-file .gist-syntax .gist-highlight pre,pre{font-size:.8em;line-height:1.45em;padding:1em 1.2em !important;background:#002b36 !important;color:#93a1a1 !important}.pre span,html .gist .gist-file .gist-syntax .gist-highlight pre span,pre span{color:#93a1a1 !important}.pre span,html .gist .gist-file .gist-syntax .gist-highlight pre span,pre span{font-style:normal !important;font-weight:normal !important}.pre .c,html .gist .gist-file .gist-syntax .gist-highlight pre .c,pre .c{color:#586e75 !important;font-style:italic !important}.pre .cm,html .gist .gist-file .gist-syntax .gist-highlight pre .cm,pre .cm{color:#586e75 !important;font-style:italic !important}.pre .cp,html .gist .gist-file .gist-syntax .gist-highlight pre .cp,pre .cp{color:#586e75 !important;font-style:italic !important}.pre .c1,html .gist .gist-file .gist-syntax .gist-highlight pre .c1,pre .c1{color:#586e75 !important;font-style:italic !important}.pre .cs,html .gist .gist-file .gist-syntax .gist-highlight pre .cs,pre .cs{color:#586e75 !important;font-weight:bold !important;font-style:italic !important}.pre .err,html .gist .gist-file .gist-syntax .gist-highlight pre .err,pre .err{color:#dc322f !important;background:none !important}.pre .k,html .gist .gist-file .gist-syntax .gist-highlight pre .k,pre .k{color:#cb4b16 !important}.pre .o,html .gist .gist-file .gist-syntax .gist-highlight pre .o,pre .o{color:#93a1a1 !important;font-weight:bold !important}.pre .p,html .gist .gist-file .gist-syntax .gist-highlight pre .p,pre .p{color:#93a1a1 !important}.pre .ow,html .gist .gist-file .gist-syntax .gist-highlight pre .ow,pre .ow{color:#2aa198 !important;font-weight:bold !important}.pre .gd,html .gist .gist-file .gist-syntax .gist-highlight pre .gd,pre .gd{color:#93a1a1 !important;background-color:#372c34 !important;display:block}.pre .gd .x,html .gist .gist-file .gist-syntax .gist-highlight pre .gd .x,pre .gd .x{color:#93a1a1 !important;background-color:#4d2d33 !important;display:block}.pre .ge,html .gist .gist-file .gist-syntax .gist-highlight pre .ge,pre .ge{color:#93a1a1 !important;font-style:italic !important}.pre .gh,html .gist .gist-file .gist-syntax .gist-highlight pre .gh,pre .gh{color:#586e75 !important}.pre .gi,html .gist .gist-file .gist-syntax .gist-highlight pre .gi,pre .gi{color:#93a1a1 !important;background-color:#1a412b !important;display:block}.pre .gi .x,html .gist .gist-file .gist-syntax .gist-highlight pre .gi .x,pre .gi .x{color:#93a1a1 !important;background-color:#355720 !important;display:block}.pre .gs,html .gist .gist-file .gist-syntax .gist-highlight pre .gs,pre .gs{color:#93a1a1 !important;font-weight:bold !important}.pre .gu,html .gist .gist-file .gist-syntax .gist-highlight pre .gu,pre .gu{color:#6c71c4 !important}.pre .kc,html .gist .gist-file .gist-syntax .gist-highlight pre .kc,pre .kc{color:#859900 !important;font-weight:bold !important}.pre .kd,html .gist .gist-file .gist-syntax .gist-highlight pre .kd,pre .kd{color:#268bd2 !important}.pre .kp,html .gist .gist-file .gist-syntax .gist-highlight pre .kp,pre .kp{color:#cb4b16 !important;font-weight:bold !important}.pre .kr,html .gist .gist-file .gist-syntax .gist-highlight pre .kr,pre .kr{color:#d33682 !important;font-weight:bold !important}.pre .kt,html .gist .gist-file .gist-syntax .gist-highlight pre .kt,pre .kt{color:#2aa198 !important}.pre .n,html .gist .gist-file .gist-syntax .gist-highlight pre .n,pre .n{color:#268bd2 !important}.pre .na,html .gist .gist-file .gist-syntax .gist-highlight pre .na,pre .na{color:#268bd2 !important}.pre .nb,html .gist .gist-file .gist-syntax .gist-highlight pre .nb,pre .nb{color:#859900 !important}.pre .no,html .gist .gist-file .gist-syntax .gist-highlight pre .no,pre .no{color:#b58900 !important}.pre .ne,html .gist .gist-file .gist-syntax .gist-highlight pre .ne,pre .ne{color:#268bd2 !important;font-weight:bold !important}.pre .nf,html .gist .gist-file .gist-syntax .gist-highlight pre .nf,pre .nf{color:#268bd2 !important;font-weight:bold !important}.pre .nn,html .gist .gist-file .gist-syntax .gist-highlight pre .nn,pre .nn{color:#b58900 !important}.pre .nt,html .gist .gist-file .gist-syntax .gist-highlight pre .nt,pre .nt{color:#268bd2 !important;font-weight:bold !important}.pre .nx,html .gist .gist-file .gist-syntax .gist-highlight pre .nx,pre .nx{color:#b58900 !important}.pre .vg,html .gist .gist-file .gist-syntax .gist-highlight pre .vg,pre .vg{color:#268bd2 !important}.pre .vi,html .gist .gist-file .gist-syntax .gist-highlight pre .vi,pre .vi{color:#268bd2 !important}.pre .nv,html .gist .gist-file .gist-syntax .gist-highlight pre .nv,pre .nv{color:#268bd2 !important}.pre .mf,html .gist .gist-file .gist-syntax .gist-highlight pre .mf,pre .mf{color:#2aa198 !important}.pre .m,html .gist .gist-file .gist-syntax .gist-highlight pre .m,pre .m{color:#2aa198 !important}.pre .mh,html .gist .gist-file .gist-syntax .gist-highlight pre .mh,pre .mh{color:#2aa198 !important}.pre .mi,html .gist .gist-file .gist-syntax .gist-highlight pre .mi,pre .mi{color:#2aa198 !important}.pre .s,html .gist .gist-file .gist-syntax .gist-highlight pre .s,pre .s{color:#2aa198 !important}.pre .sd,html .gist .gist-file .gist-syntax .gist-highlight pre .sd,pre .sd{color:#2aa198 !important}.pre .s2,html .gist .gist-file .gist-syntax .gist-highlight pre .s2,pre .s2{color:#2aa198 !important}.pre .se,html .gist .gist-file .gist-syntax .gist-highlight pre .se,pre .se{color:#dc322f !important}.pre .si,html .gist .gist-file .gist-syntax .gist-highlight pre .si,pre .si{color:#268bd2 !important}.pre .sr,html .gist .gist-file .gist-syntax .gist-highlight pre .sr,pre .sr{color:#2aa198 !important}.pre .s1,html .gist .gist-file .gist-syntax .gist-highlight pre .s1,pre .s1{color:#2aa198 !important}.highlight{margin-bottom:1.5em;overflow-y:hidden}.highlight .gutter pre{padding-left:.8em !important;padding-right:.8em !important}h3.filename{font-size:13px;line-height:2em;text-align:center;text-shadow:#cbcccc 0 1px 0;color:#474747;font-style:normal;margin-bottom:0;-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;-o-border-top-left-radius:5px;-ms-border-top-left-radius:5px;-khtml-border-top-left-radius:5px;border-top-left-radius:5px;-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px;-o-border-top-right-radius:5px;-ms-border-top-right-radius:5px;-khtml-border-top-right-radius:5px;border-top-right-radius:5px;font-family:"Helvetica Neue",Arial, "Lucida Grande", "Lucida Sans Unicode", Lucida, sans-serif;background:#aaaaaa url('/images/code_bg.png?1270921258') top repeat-x;border:1px solid #565656;border-top-color:#cbcbcb;border-left-color:#a5a5a5;border-right-color:#a5a5a5;border-bottom:0}
0 1
new file mode 100644
... ...
@@ -0,0 +1,397 @@
0
+---
1
+layout: default
2
+layout: page
3
+nometa: true
4
+title: Syntax Highlighting Debug
5
+---
6
+
7
+<h3 class="filename">gist_syntax_test.rb</h3>
8
+{% gist 996818 test.rb %}
9
+
10
+<h3 class="filename">syntax_test.diff</h3>
11
+{% highlight diff %}
12
+@@ -590,7 +590,7 @@ class SpritesTest < Test::Unit::TestCase
13
+   it "should generate a sprite from nested folders" do
14
+     css = render <<-SCSS
15
+-      @import "nested/*.png";
16
++      @import "nested/**/*.png";
17
+       @include all-nested-sprites;
18
+     SCSS
19
+     assert_correct css, <<-CSS
20
+
21
+{% endhighlight %}
22
+
23
+<h3 class="filename">syntax_test.html</h3>
24
+{% highlight html %}
25
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
26
+<html><head>
27
+<title>A Tiny Page</title>
28
+<style type="text/css">
29
+<!--
30
+      p { font-size:15pt; color:#000 }
31
+    -->
32
+</style></head><!-- real comment -->
33
+<body bgcolor="#FFFFFF" text="#000000" link="#0000CC">
34
+<script language="javascript" type="text/javascript">
35
+      function changeHeight(h) {
36
+        var tds = document.getElementsByTagName("td");
37
+        for(var i = 0; i < tds.length; i++) {
38
+          tds[i].setAttribute("height", h + "px");
39
+      }}
40
+</script>
41
+<h1>abc</h1>
42
+<h2>def</h2>
43
+<p>Testing page</p>
44
+</body></html>
45
+{% endhighlight %}
46
+
47
+<h3 class="filename">syntax_test.js</h3>
48
+{% highlight js %}
49
+
50
+/**
51
+sample javascript from xui
52
+*/
53
+
54
+var undefined,
55
+    xui,
56
+    window     = this,
57
+    string     = new String('string'),
58
+    document   = window.document,
59
+    simpleExpr = /^#?([\w-]+)$/,
60
+    idExpr     = /^#/,
61
+    tagExpr    = /<([\w:]+)/,
62
+    slice      = function (e) { return [].slice.call(e, 0); };
63
+    try { var a = slice(document.documentElement.childNodes)[0].nodeType; }
64
+    catch(e){ slice = function (e) { var ret=[]; for (var i=0; e[i]; i++)
65
+        ret.push(e[i]); return ret; }; }
66
+
67
+window.x$ = window.xui = xui = function(q, context) {
68
+    return new xui.fn.find(q, context);
69
+};
70
+
71
+
72
+{% endhighlight %}
73
+
74
+<h3 class="filename">syntax_test.rb</h3>
75
+{% highlight ruby %}
76
+
77
+include Enumerable
78
+
79
+def initialize(rbconfig)
80
+@rbconfig = rbconfig
81
+@no_harm = false
82
+end
83
+
84
+def load_savefile
85
+begin
86
+    File.foreach(savefile()) do |line|
87
+    k, v = *line.split(/=/, 2)
88
+    self[k] = v.strip
89
+    end
90
+rescue Errno::ENOENT
91
+    setup_rb_error $!.message + "\n#{File.basename($0)} config first"
92
+end
93
+end
94
+
95
+if c['rubylibdir']
96
+    # V > 1.6.3
97
+    libruby         = "#{c['prefix']}/lib/ruby"
98
+    siterubyverarch = c['sitearchdir']
99
+end
100
+parameterize = lambda {|path|
101
+    path.sub(/\A#{Regexp.quote(c['prefix'])}/, '$prefix')
102
+}
103
+
104
+if arg = c['configure_args'].split.detect {|arg| /--with-make-prog=/ =~ arg }
105
+    makeprog = arg.sub(/'/, '').split(/=/, 2)[1]
106
+else
107
+    makeprog = 'make'
108
+end
109
+
110
+def setup_rb_error(msg)
111
+  raise SetupError, msg
112
+end
113
+
114
+if $0 == __FILE__
115
+  begin
116
+    ToplevelInstaller.invoke
117
+  rescue SetupError
118
+    raise if $DEBUG
119
+    $stderr.puts $!.message
120
+    $stderr.puts "Try 'ruby #{$0} --help' for detailed usage."
121
+    exit 1
122
+  end
123
+end
124
+{% endhighlight %}
125
+
126
+<h3 class="filename">syntax_test.php</h3>
127
+{% highlight php %}
128
+<?php
129
+require_once($GLOBALS['g_campsiteDir']. "/$ADMIN_DIR/country/common.php");
130
+require_once($GLOBALS['g_campsiteDir']. "/classes/SimplePager.php");
131
+camp_load_translation_strings("api");
132
+
133
+$f_country_language_selected = camp_session_get('f_language_selected', '');
134
+$f_country_offset = camp_session_get('f_country_offset', 0);
135
+if (empty($f_country_language_selected)) {
136
+	$f_country_language_selected = null;
137
+}
138
+$ItemsPerPage = 20;
139
+$languages = Language::GetLanguages(null, null, null, array(), array(), true);
140
+$numCountries = Country::GetNumCountries($f_country_language_selected);
141
+
142
+$pager = new SimplePager($numCountries, $ItemsPerPage, "index.php?");
143
+
144
+$crumbs = array();
145
+$crumbs[] = array(getGS("Configure"), "");
146
+$crumbs[] = array(getGS("Countries"), "");
147
+echo camp_html_breadcrumbs($crumbs);
148
+
149
+?>
150
+
151
+<?php  if ($g_user->hasPermission("ManageCountries")) { ?>
152
+<table BORDER="0" CELLSPACING="0" CELLPADDING="1">
153
+    <tr>
154
+        <td><a href="add.php"><?php putGS("Add new"); ?></a></td>
155
+    </tr>
156
+</table>
157
+{% endhighlight %}
158
+
159
+
160
+<h3 class="filename">syntax_test.hs</h3>
161
+{% highlight hs %}
162
+{-# LANGUAGE OverloadedStrings #-}
163
+module Main where
164
+
165
+--import Prelude hiding (id)
166
+--import Control.Category (id)
167
+import Control.Arrow ((>>>), (***), arr)
168
+import Control.Monad (forM_)
169
+-- import Data.Monoid (mempty, mconcat)
170
+
171
+-- import System.FilePath
172
+
173
+import Hakyll
174
+
175
+
176
+main :: IO ()
177
+main = hakyll $ do
178
+
179
+    route   "css/*" $ setExtension "css"
180
+    compile "css/*" $ byExtension (error "Not a (S)CSS file")
181
+        [ (".css",  compressCssCompiler)
182
+        , (".scss", sass)
183
+        ]
184
+
185
+    route   "js/**" idRoute
186
+    compile "js/**" copyFileCompiler
187
+
188
+    route   "img/*" idRoute
189
+    compile "img/*" copyFileCompiler
190
+
191
+    compile "templates/*" templateCompiler
192
+
193
+    forM_ ["test.md", "index.md"] $ \page -> do
194
+        route   page $ setExtension "html"
195
+        compile page $ pageCompiler
196
+            >>> applyTemplateCompiler "templates/default.html"
197
+            >>> relativizeUrlsCompiler
198
+
199
+sass :: Compiler Resource String
200
+sass = getResourceString >>> unixFilter "sass" ["-s", "--scss"]
201
+                         >>> arr compressCss
202
+
203
+{% endhighlight %}
204
+
205
+<h3 class="filename">syntax_test.sh</h3>
206
+{% highlight sh %}
207
+#!/bin/bash
208
+
209
+cd $ROOT_DIR
210
+DOT_FILES="lastpass weechat ssh Xauthority"
211
+for dotfile in $DOT_FILES; do conform_link "$DATA_DIR/$dotfile" ".$dotfile"; done
212
+
213
+# TODO: refactor with suffix variables (or common cron values)
214
+
215
+case "$PLATFORM" in
216
+	linux)
217
+        #conform_link "$CONF_DIR/shell/zshenv" ".zshenv"
218
+        crontab -l > $ROOT_DIR/tmp/crontab-conflict-arch
219
+        cd $ROOT_DIR/$CONF_DIR/cron
220
+        if [[ "$(diff ~/tmp/crontab-conflict-arch crontab-current-arch)" == ""
221
+            ]];
222
+            then # no difference with current backup
223
+                logger "$LOG_PREFIX: crontab live settings match stored "\
224
+                    "settings; no restore required"
225
+                rm ~/tmp/crontab-conflict-arch
226
+            else # current crontab settings in file do not match live settings
227
+                crontab $ROOT_DIR/$CONF_DIR/cron/crontab-current-arch
228
+                logger "$LOG_PREFIX: crontab stored settings conflict with "\
229
+                    "live settings; stored settings restored. "\
230
+                    "Previous settings recorded in ~/tmp/crontab-conflict-arch."
231
+        fi
232
+    ;;
233
+
234
+{% endhighlight %}
235
+
236
+<h3 class="filename">syntax_test.py</h3>
237
+{% highlight py %}
238
+# test python (sample from offlineimap)
239
+
240
+class ExitNotifyThread(Thread):
241
+    """This class is designed to alert a "monitor" to the fact that a thread has
242
+    exited and to provide for the ability for it to find out why."""
243
+    def run(self):
244
+        global exitthreads, profiledir
245
+        self.threadid = thread.get_ident()
246
+        try:
247
+            if not profiledir:          # normal case
248
+                Thread.run(self)
249
+            else:
250
+                try:
251
+                    import cProfile as profile
252
+                except ImportError:
253
+                    import profile
254
+                prof = profile.Profile()
255
+                try:
256
+                    prof = prof.runctx("Thread.run(self)", globals(), locals())
257
+                except SystemExit:
258
+                    pass
259
+                prof.dump_stats( \
260
+                            profiledir + "/" + str(self.threadid) + "_" + \
261
+                            self.getName() + ".prof")
262
+        except:
263
+            self.setExitCause('EXCEPTION')
264
+            if sys:
265
+                self.setExitException(sys.exc_info()[1])
266
+                tb = traceback.format_exc()
267
+                self.setExitStackTrace(tb)
268
+        else:
269
+            self.setExitCause('NORMAL')
270
+        if not hasattr(self, 'exitmessage'):
271
+            self.setExitMessage(None)
272
+
273
+        if exitthreads:
274
+            exitthreads.put(self, True)
275
+
276
+    def setExitCause(self, cause):
277
+        self.exitcause = cause
278
+    def getExitCause(self):
279
+        """Returns the cause of the exit, one of:
280
+        'EXCEPTION' -- the thread aborted because of an exception
281
+        'NORMAL' -- normal termination."""
282
+        return self.exitcause
283
+    def setExitException(self, exc):
284
+        self.exitexception = exc
285
+    def getExitException(self):
286
+        """If getExitCause() is 'EXCEPTION', holds the value from
287
+        sys.exc_info()[1] for this exception."""
288
+        return self.exitexception
289
+    def setExitStackTrace(self, st):
290
+        self.exitstacktrace = st
291
+    def getExitStackTrace(self):
292
+        """If getExitCause() is 'EXCEPTION', returns a string representing
293
+        the stack trace for this exception."""
294
+        return self.exitstacktrace
295
+    def setExitMessage(self, msg):
296
+        """Sets the exit message to be fetched by a subsequent call to
297
+        getExitMessage.  This message may be any object or type except
298
+        None."""
299
+        self.exitmessage = msg
300
+    def getExitMessage(self):
301
+        """For any exit cause, returns the message previously set by
302
+        a call to setExitMessage(), or None if there was no such message
303
+        set."""
304
+        return self.exitmessage
305
+
306
+{% endhighlight %}
307
+
308
+<h3 class="filename">syntax_test.pl</h3>
309
+{% highlight perl %}
310
+#!perl -w
311
+
312
+# Time-stamp: <2002/04/06, 13:12:13 (EST), maverick, csvformat.pl>
313
+# Two pass CSV file to table formatter
314
+
315
+$delim = $#ARGV >= 1 ? $ARGV[1] : ',';
316
+print STDERR "Split pattern: $delim\n";
317
+
318
+# first pass
319
+open F, "<$ARGV[0]" or die;
320
+while(<F>)
321
+{
322
+  chomp;
323
+  $i = 0;
324
+  map { $max[$_->[1]] = $_->[0] if $_->[0] > ($max[$_->[1]] || 0) }
325
+    (map {[length $_, $i++]} split($delim));
326
+}
327
+close F;
328
+
329
+print STDERR 'Field width:   ', join(', ', @max), "\n";
330
+print STDERR join(' ', map {'-' x $_} @max);
331
+
332
+# second pass
333
+open F, "<$ARGV[0]" or die;
334
+while(<F>)
335
+  {
336
+  chomp;
337
+  $i = 0;
338
+  map { printf("%-$max[$_->[1]]s ", $_->[0]) }
339
+    (map {[$_, $i++]} split($delim));
340
+  print "\n";
341
+}
342
+close F;
343
+
344
+{% endhighlight %}
345
+
346
+<h3 class="filename">syntax_test.java</h3>
347
+{% highlight java %}
348
+import java.util.Map;
349
+import java.util.TreeSet;
350
+
351
+public class GetEnv {
352
+  /**
353
+   * let's test generics
354
+   * @param args the command line arguments
355
+   */
356
+  public static void main(String[] args) {
357
+    // get a map of environment variables
358
+    Map<String, String> env = System.getenv();
359
+    // build a sorted set out of the keys and iterate
360
+    for(String k: new TreeSet<String>(env.keySet())) {
361
+      System.out.printf("%s = %s\n", k, env.get(k));
362
+    }
363
+  }    }
364
+{% endhighlight %}
365
+
366
+<h3 class="filename">syntax_test.c</h3>
367
+{% highlight c %}
368
+#define UNICODE
369
+#include <windows.h>
370
+
371
+int main(int argc, char **argv) {
372
+  int speed = 0, speed1 = 0, speed2 = 0; // 1-20
373
+  printf("Set Mouse Speed by Maverick\n");
374
+
375
+  SystemParametersInfo(SPI_GETMOUSESPEED, 0, &speed, 0);
376
+  printf("Current speed: %2d\n", speed);
377
+
378
+  if (argc == 1) return 0;
379
+  if (argc >= 2) sscanf(argv[1], "%d", &speed1);
380
+  if (argc >= 3) sscanf(argv[2], "%d", &speed2);
381
+
382
+  if (argc == 2) // set speed to first value
383
+    speed = speed1;
384
+  else if (speed == speed1 || speed == speed2) // alternate
385
+    speed = speed1 + speed2 - speed;
386
+  else
387
+    speed = speed1;  // start with first value
388
+
389
+  SystemParametersInfo(SPI_SETMOUSESPEED, 0,  speed, 0);
390
+  SystemParametersInfo(SPI_GETMOUSESPEED, 0, &speed, 0);
391
+  printf("New speed:     %2d\n", speed);
392
+  return 0;
393
+}
394
+
395
+{% endhighlight %}
396
+
0 397
new file mode 100644
... ...
@@ -0,0 +1,114 @@
0
+---
1
+layout: page
2
+title: Typography Testing
3
+sidebar: none
4
+---
5
+
6
+%h1 Level 01 Heading
7
+%h2 Level 02 Heading
8
+%h3 Level 03 Heading
9
+%h4 Level 04 Heading
10
+%h5 Level 05 Heading
11
+%h6 Level 06 Heading
12
+
13
+
14
+%p
15
+  Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Fusce sodales ligula sed urna. Aliquam posuere arcu
16
+  viverra erat. Pellentesque et enim dapibus ante facilisis bibendum. Nam congue dapibus urna. Vestibulum consequat
17
+  arcu at magna. Nunc faucibus mollis lacus. Nulla tempor luctus tellus. Donec blandit lobortis pede. Vestibulum
18
+  vel pede ut urna eleifend lacinia.
19
+
20
+%h2 Level 02 Heading
21
+
22
+%p
23
+  Maecenas ligula nibh, imperdiet at, interdum eget, sagittis eu, enim. Vivamus vel urna. Donec fringilla
24
+  ullamcorper sem. In risus arcu, pellentesque cursus, faucibus cursus, consequat quis, est. Aliquam id erat.
25
+  Aliquam arcu. Phasellus vulputate. Integer sem diam, mattis vel, viverra ullamcorper, ultricies quis, nisl. Sed
26
+  sollicitudin quam ut nisi. Vivamus velit sapien, volutpat eu, faucibus id, nonummy id, urna.
27
+
28
+%h3 Level 03 Heading
29
+
30
+%p
31
+  Take it<sub>2</sub> to the power of<sup>3</sup>
32
+  Praesent iaculis pellentesque est. Nulla facilisi. Etiam fringilla vehicula orci. Aliquam fermentum ipsum id
33
+  nulla. Aliquam interdum laoreet leo. Cras accumsan. Nam pharetra diam id nunc. Integer blandit tellus vulputate
34
+  felis. Cras aliquam, eros in euismod aliquam, enim nisl mollis metus, quis fringilla ipsum diam ut pede. Mauris a
35
+  libero ac velit interdum pulvinar. Nunc ipsum mauris, semper rhoncus, feugiat ut, egestas id, diam. Nullam
36
+  porttitor condimentum risus. Vivamus nec enim eget nisi commodo euismod. Ut turpis. Nullam malesuada rutrum
37
+  neque. Nam sodales porta elit. Mauris mollis nisl vel augue.
38
+
39
+%p
40
+  And we were like <q>Woah</q>, and he was like <q>Woah</q>, and they were like <q>WOAH!</q> <code><\reference></code>
41
+
42
+%p
43
+  %abbr(title="For The Win!") FTW!
44
+%p
45
+
46
+%h3 Unordered lists
47
+%ul
48
+  %li Lorem ipsum dolor sit amet
49
+  %li Consectetur adipisicing elit
50
+  %li Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua
51
+  %li Ut enim ad minim veniam
52
+
53
+%h3 Ordered lists
54
+%ol
55
+  %li Consectetur adipisicing elit
56
+  %li Sed do eiusmod tempor incididunt ut labore
57
+  %li Et dolore magna aliqua
58
+
59
+%h3 Blockquotes
60
+%blockquote
61
+  %p
62
+    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore
63
+    magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
64
+    consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
65
+    Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
66
+
67
+%h3 Tables
68
+%table
69
+  %caption
70
+    Jimi Hendrix - albums
71
+    %thead
72
+      %tr
73
+        %th Album
74
+        %th Year
75
+        %th Price
76
+    %tfoot
77
+      %tr
78
+        %td Album
79
+        %td Year
80
+        %td Price
81
+    %tbody
82
+      %tr
83
+        %td Are You Experienced
84
+        %td 1967
85
+        %td $10.00
86
+      %tr
87
+        %td Axis: Bold as Love
88
+        %td 1967
89
+        %td $12.00
90
+      %tr
91
+        %td Electric Ladyland
92
+        %td 1968
93
+        %td $10.00
94
+      %tr
95
+        %td Band of Gypsys
96
+        %td 1970
97
+        %td $12.00
98
+%p
99
+  %a(href="#")Link
100
+  %br/
101
+  %strong &lt;strong&gt;
102
+  %br/
103
+  %del &lt;del&gt; deleted
104
+  %br/
105
+  %dfn &lt;dfn&gt; dfn
106
+  %br/
107
+  %em &lt;em&gt; emphasis
108
+  %br/
109
+
110
+%tt
111
+  &lt;tt&gt;
112
+  Pellentesque tempor, dui ut ultrices viverra, neque urna blandit nisi, id accumsan dolor est vitae risus.
113
+%hr