[
  {
    "path": ".gitignore",
    "content": "_site"
  },
  {
    "path": "Gemfile",
    "content": "gem 'jekyll-paginate'\n"
  },
  {
    "path": "README.md",
    "content": "Solar Theme for Jekyll\n======================\n\nA stylish theme for [Jekyll](http://jekyllrb.com/) blogs, based on the [Solarized](http://ethanschoonover.com/solarized) color palette.\n\n![Screenshot](http://i.imgur.com/UnnRhkt.png)\n\n\nFeatures\n-------\n\n* **Two color schemes** — One for Solarized Dark and one for Solarized Light. Just swap the reference to the `colors-dark.css` file with `colors-light.css` if you don't like light-on-dark.\n* **Linkblog support** — Solar will turn your post title into an external link if you add `external-url: http://example.org` to a post's YAML front matter.\n* **Responsive Design** — Solarized adapts to fit any screen size.\n\n\nInstallation\n--------------\n\nThere are two ways to use Solar. You can either clone-and-go, copying the repository and tweaking the contents to taste, or you can cherry-pick the files you want and integrate them into an existing Jekyll instance. \n\nIf you're starting a new blog, you want to clone-and-go. Just `git clone https://github.com/redwallhp/solar-theme-jekyll.git`, make any changes you want to the template, pages or `_config.yml` and start blogging with Jekyll. Easy.\n\nIf you're wanting to replace the theme of an existing Jekyll blog, either option should work. If you want to replace files individually, the files and directories you want to make sure to copy are:\n\n1. `_layouts`\n2. `archives`\n3. `assets`\n4. `feed.xml`\n5. `index.xml`\n\nYou'll also want to compare Solar's `_config.yml` with your own, making any appropriate changes.\n\n\nDemo\n-------\n\nYou can see a demo of Solar [right here on GitHub Pages.](http://mattvh.github.io/solar-theme-jekyll/)\n\n\nLicense\n---------\n\nGPLv2 or higher\n"
  },
  {
    "path": "_config.yml",
    "content": "name: Solar Theme\nurl: http://example.org\ndescription: A stylish blog using the Solarized color palette\n\npermalink: /:year/:month/:day/:title/\npaginate: 10\n\ngems: [jekyll-paginate]\nexclude: ['README.md', 'Gemfile.lock', 'Gemfile', 'Rakefile']\n"
  },
  {
    "path": "_layouts/default.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n\n  <meta charset=\"UTF-8\">\n  <title>{{ page.title }}</title>\n  <meta name=\"viewport\" content=\"width=device-width\">\n\n  <!--[if lt IE 9]>\n    <script src=\"http://html5shiv.googlecode.com/svn/trunk/html5.js\"></script>\n  <![endif]-->\n\n  <link href=\"/assets/css/style.css\" rel=\"stylesheet\" />\n  <link href=\"/assets/css/colors-dark.css\" rel=\"stylesheet\" />\n\n</head>\n\n<body>\n\n\n\n  <header id=\"header\">\n    <h1><a href=\"/\"><i class=\"icon-sun\"></i> {{ site.name }}</a></h1>\n    <p>{{ site.description }}</p>\n  </header>\n\n\n\n  <div id=\"page\">\n\n\n\n    <div id=\"sidebar\">\n      <nav>\n        <ul>\n          <li><a href=\"/\">Home</a></li>\n          <li><a href=\"/archives\">Archive</a></li>\n          <li><a href=\"/about\">About</a></li>\n          <li><a href=\"http://twitter.com/redwall_hp\">Twitter</a></li>\n          <li><a href=\"/feed.xml\">RSS Feed</a></li>\n        </ul>\n      </nav>\n    </div>\n\n\n\n    <div id=\"content\">\n      {{ content }}\n    </div>\n\n\n\n  </div>\n\n\n\n  <footer id=\"footer\">\n    <p class=\"copyright\">Copyright &copy; {{ site.time | date: '%Y' }} {{ site.name }}. Powered by <a href=\"http://jekyllrb.com\">Jekyll</a>, theme by <a href=\"http://www.webmaster-source.com\">Matt Harzewski</a></p>\n  </footer>\n\n\n\n  <script src=\"//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js\"></script>\n  <script src=\"/assets/js/jquery.mobilemenu.min.js\"></script>\n\n  <script>\n    $(document).ready(function(){\n      $('#sidebar nav ul').mobileMenu({'topOptionText': 'Menu', 'prependTo': '#sidebar nav'});\n    });\n  </script>\n\n\n\n</body>\n</html>"
  },
  {
    "path": "_layouts/post.html",
    "content": "---\nlayout: default\n---\n<article class=\"post\">\n\n\t{% if page.external-url %}\n\t\t<h1>\n\t\t\t<a href=\"{{ page.external-url }}\">{{ page.title }}</a> \n\t\t\t<a class=\"anchor\" href=\"{{ page.url }}\"><i class=\"icon-anchor\"></i></a>\n\t\t</h1>\n\t{% else %}\n\t\t<h1><a href=\"{{ page.url }}\">{{ page.title }}</a></h1>\n\t{% endif %}\n\n\t<div class=\"post-content\">{{ content }}</div>\n\n\t<p class=\"meta\">Posted on <span class=\"postdate\">{{ page.date | date: \"%b %d, %Y\" }}</span></p>\n\n</article>"
  },
  {
    "path": "_posts/2013-06-05-france-removes-internet-cut-off.markdown",
    "content": "---\nlayout: post\ntitle:  \"France Removes Internet Cut-Off Threat From its Anti-Piracy Law\"\ndate:   2013-06-05 20:33:11\nexternal-url: http://arstechnica.com/tech-policy/2013/06/france-removes-internet-cut-off-threat-from-its-anti-piracy-law/\n---\n"
  },
  {
    "path": "_posts/2013-06-05-jekyll-documentation.markdown",
    "content": "---\nlayout: post\ntitle:  \"Jekyll Documentation\"\ndate:   2013-06-05 20:03:11\nexternal-url: http://jekyllrb.com/docs/home/\n---\n"
  },
  {
    "path": "_posts/2013-06-05-welcome-to-jekyll.markdown",
    "content": "---\nlayout: post\ntitle:  \"Welcome to Jekyll!\"\ndate:   2013-06-05 17:06:25\ncategories: jekyll update\n---\n\nYou'll find this post in your `_posts` directory - edit this post and re-build (or run with the `-w` switch) to see your changes!\nTo add new posts, simply add a file in the `_posts` directory that follows the convention: YYYY-MM-DD-name-of-post.ext.\n\nJekyll also offers powerful support for code snippets:\n\n{% highlight ruby %}\ndef print_hi(name)\n  puts \"Hi, #{name}\"\nend\nprint_hi('Tom')\n#=> prints 'Hi, Tom' to STDOUT.\n{% endhighlight %}\n\nCheck out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll's GitHub repo][jekyll-gh].\n\n[jekyll-gh]: https://github.com/mojombo/jekyll\n[jekyll]:    http://jekyllrb.com\n"
  },
  {
    "path": "about/index.markdown",
    "content": "---\nlayout: default\ntitle: About\n---\n\nThis is where you would but a short bio, and/or a description of your site. It also serves as an example of how to set up a standalone page. For example:\n\n<img src=\"/images/shakespeare.png\" class=\"right\" />\n**William Shakespeare** (26 April 1564 – 23 April 1616) was an English poet and playwright, widely regarded as the greatest writer in the English language and the world's pre-eminent dramatist. He is often called England's national poet and the \"Bard of Avon\". His extant works, including some collaborations, consist of about 38 plays, 154 sonnets, two long narrative poems, and a few other verses, the authorship of some of which is uncertain. His plays have been translated into every major living language and are performed more often than those of any other playwright.\n\nShakespeare was born and brought up in Stratford-upon-Avon. At the age of 18, he married Anne Hathaway—no, not *that* Anne Hathaway—with whom he had three children."
  },
  {
    "path": "archives/index.html",
    "content": "---\nlayout: default\ntitle: Archives\n---\n\n<div id=\"blog-archives\">\n\n\t{% for post in site.posts %}\n\t\t<article class=\"post\">\n\t\t\t{% if post.external-url %}\n\t\t\t\t<h1>\n\t\t\t\t\t<a href=\"{{ post.external-url }}\">{{ post.title }}</a> \n\t\t\t\t\t<a class=\"anchor\" href=\"{{ post.url }}\"><i class=\"icon-anchor\"></i></a>\n\t\t\t\t</h1>\n\t\t\t{% else %}\n\t\t\t\t<h1><a href=\"{{ post.url }}\">{{ post.title }}</a></h1>\n\t\t\t{% endif %}\n\t\t</article>\n\t{% endfor %}\n\n</div>\n"
  },
  {
    "path": "assets/css/colors-dark.css",
    "content": "html, body {\n\tbackground-color: #002a35;\n\tcolor: #839496;\n}\n\na, a:visited, a:active {\n\tcolor: #2aa198;\n\tborder-color: #073642;\n}\n\na:hover {\n\tbackground-color: #073642;\n\tborder-color: #073642;\n\tcolor: #2aa198;\n}\n\nh1, h2, h3 {\n\tcolor: #cb4b16;\n}\n\nh1 a, h1 a:visited, h1 a:active {\n\tcolor: #cb4b16;\n}\n\nh1 a:hover {\n\tbackground-color: #073642;\n\tborder-color: #073642;\n\tcolor: #cb4b16;\n}\n\narticle h1 a.anchor {\n\tcolor: #2aa198;\n}\n\nblockquote {\n\tborder-color: #cb4b16;\n}\n\n#sidebar a:hover {\n\tcolor: #2aa198;\n\tbackground-color: #073642;\n}\n\n#footer {\n\tborder-color: #073642;\n}\n\n\n\n/*** Pygments ***/\n.highlight{\n\tbackground-color: #073642;\n\tcolor: #93a1a1;\n\tborder: 1px solid #2d6472;\n    border-radius: 3px 3px 3px 3px;\n    overflow: auto;\n    padding: 6px 10px;\n}\n.highlight .c{color:#586e75 !important;font-style:italic !important}.highlight .cm{color:#586e75 !important;font-style:italic !important}.highlight .cp{color:#586e75 !important;font-style:italic !important}.highlight .c1{color:#586e75 !important;font-style:italic !important}.highlight .cs{color:#586e75 !important;font-weight:bold !important;font-style:italic !important}.highlight .err{color:#dc322f !important;background:none !important}.highlight .k{color:#cb4b16 !important}.highlight .o{color:#93a1a1 !important;font-weight:bold !important}.highlight .p{color:#93a1a1 !important}.highlight .ow{color:#2aa198 !important;font-weight:bold !important}.highlight .gd{color:#93a1a1 !important;background-color:#372c34 !important;display:inline-block}.highlight .gd .x{color:#93a1a1 !important;background-color:#4d2d33 !important;display:inline-block}.highlight .ge{color:#93a1a1 !important;font-style:italic !important}.highlight .gr{color:#aa0000}.highlight .gh{color:#586e75 !important}.highlight .gi{color:#93a1a1 !important;background-color:#1a412b !important;display:inline-block}.highlight .gi .x{color:#93a1a1 !important;background-color:#355720 !important;display:inline-block}.highlight .go{color:#888888}.highlight .gp{color:#555555}.highlight .gs{color:#93a1a1 !important;font-weight:bold !important}.highlight .gu{color:#6c71c4 !important}.highlight .gt{color:#aa0000}.highlight .kc{color:#859900 !important;font-weight:bold !important}.highlight .kd{color:#268bd2 !important}.highlight .kp{color:#cb4b16 !important;font-weight:bold !important}.highlight .kr{color:#d33682 !important;font-weight:bold !important}.highlight .kt{color:#2aa198 !important}.highlight .n{color:#268bd2 !important}.highlight .na{color:#268bd2 !important}.highlight .nb{color:#859900 !important}.highlight .nc{color:#d33682 !important}.highlight .no{color:#b58900 !important}.highlight .ni{color:#800080}.highlight .nl{color:#859900 !important}.highlight .ne{color:#268bd2 !important;font-weight:bold !important}.highlight .nf{color:#268bd2 !important;font-weight:bold !important}.highlight .nn{color:#b58900 !important}.highlight .nt{color:#268bd2 !important;font-weight:bold !important}.highlight .nx{color:#b58900 !important}.highlight .bp{color:#999999}.highlight .vc{color:#008080}.highlight .vg{color:#268bd2 !important}.highlight .vi{color:#268bd2 !important}.highlight .nv{color:#268bd2 !important}.highlight .w{color:#bbbbbb}.highlight .mf{color:#2aa198 !important}.highlight .m{color:#2aa198 !important}.highlight .mh{color:#2aa198 !important}.highlight .mi{color:#2aa198 !important}.highlight .mo{color:#009999}.highlight .s{color:#2aa198 !important}.highlight .sb{color:#d14}.highlight .sc{color:#d14}.highlight .sd{color:#2aa198 !important}.highlight .s2{color:#2aa198 !important}.highlight .se{color:#dc322f !important}.highlight .sh{color:#d14}.highlight .si{color:#268bd2 !important}.highlight .sx{color:#d14}.highlight .sr{color:#2aa198 !important}.highlight .s1{color:#2aa198 !important}.highlight .ss{color:#990073}.highlight .il{color:#009999}.highlight div .gd,.highlight div .gd .x,.highlight div .gi,.highlight div .gi .x{display:inline-block;width:100%}"
  },
  {
    "path": "assets/css/colors-light.css",
    "content": "html, body {\n\tbackground-color: #fdf6e3;\n\tcolor: #839496;\n}\n\na, a:visited, a:active {\n\tcolor: #2aa198;\n\tborder-color: #eee8d5;\n}\n\na:hover {\n\tbackground-color: #eee8d5;\n\tborder-color: #eee8d5;\n\tcolor: #2aa198;\n}\n\nh1, h2, h3 {\n\tcolor: #cb4b16;\n}\n\nh1 a, h1 a:visited, h1 a:active {\n\tcolor: #cb4b16;\n}\n\nh1 a:hover {\n\tbackground-color: #eee8d5;\n\tborder-color: #eee8d5;\n}\n\narticle h1 a.anchor {\n\tcolor: #2aa198;\n}\n\nblockquote {\n\tborder-color: #cb4b16;\n}\n\n#sidebar a:hover {\n\tcolor: #2aa198;\n\tbackground-color: #eee8d5;\n}\n\n#footer {\n\tborder-color: #eee8d5;\n}\n\n\n\n/*** Pygments ***/\n.highlight{\n\tbackground-color: #eee8d5;\n\tcolor: #657b83;\n\tborder: 1px solid #d6ceb6;\n    border-radius: 3px 3px 3px 3px;\n    overflow: auto;\n    padding: 6px 10px;\n}\n.highlight .c { color: #586E75 } .highlight .err { color: #93A1A1 } .highlight .g { color: #93A1A1 } .highlight .k { color: #859900 } .highlight .l { color: #93A1A1 } .highlight .n { color: #93A1A1 } .highlight .o { color: #859900 } .highlight .x { color: #CB4B16 } .highlight .p { color: #93A1A1 } .highlight .cm { color: #586E75 } .highlight .cp { color: #859900 } .highlight .c1 { color: #586E75 } .highlight .cs { color: #859900 } .highlight .gd { color: #2AA198 } .highlight .ge { color: #93A1A1; font-style: italic } .highlight .gr { color: #DC322F } .highlight .gh { color: #CB4B16 } .highlight .gi { color: #859900 } .highlight .go { color: #93A1A1 } .highlight .gp { color: #93A1A1 } .highlight .gs { color: #93A1A1; font-weight: bold } .highlight .gu { color: #CB4B16 } .highlight .gt { color: #93A1A1 } .highlight .kc { color: #CB4B16 } .highlight .kd { color: #268BD2 } .highlight .kn { color: #859900 } .highlight .kp { color: #859900 } .highlight .kr { color: #268BD2 } .highlight .kt { color: #DC322F } .highlight .ld { color: #93A1A1 } .highlight .m { color: #2AA198 } .highlight .s { color: #2AA198 } .highlight .na { color: #93A1A1 } .highlight .nb { color: #B58900 } .highlight .nc { color: #268BD2 } .highlight .no { color: #CB4B16 } .highlight .nd { color: #268BD2 } .highlight .ni { color: #CB4B16 } .highlight .ne { color: #CB4B16 } .highlight .nf { color: #268BD2 } .highlight .nl { color: #93A1A1 } .highlight .nn { color: #93A1A1 } .highlight .nx { color: #93A1A1 } .highlight .py { color: #93A1A1 } .highlight .nt { color: #268BD2 } .highlight .nv { color: #268BD2 } .highlight .ow { color: #859900 } .highlight .w { color: #93A1A1 } .highlight .mf { color: #2AA198 } .highlight .mh { color: #2AA198 } .highlight .mi { color: #2AA198 } .highlight .mo { color: #2AA198 } .highlight .sb { color: #586E75 } .highlight .sc { color: #2AA198 } .highlight .sd { color: #93A1A1 } .highlight .s2 { color: #2AA198 } .highlight .se { color: #CB4B16 } .highlight .sh { color: #93A1A1 } .highlight .si { color: #2AA198 } .highlight .sx { color: #2AA198 } .highlight .sr { color: #DC322F } .highlight .s1 { color: #2AA198 } .highlight .ss { color: #2AA198 } .highlight .bp { color: #268BD2 } .highlight .vc { color: #268BD2 } .highlight .vg { color: #268BD2 } .highlight .vi { color: #268BD2 } .highlight .il { color: #2AA198 } "
  },
  {
    "path": "assets/css/style.css",
    "content": "/*** Reset ***/\nhtml, 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 {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\tfont-size: 100%;\n\tfont: inherit;\n\tvertical-align: baseline;\n}\narticle, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {\n\tdisplay: block;\n}\nbody {\n\tline-height: 1;\n}\nol, ul {\n\tlist-style: bullet;\n}\nblockquote, q {\n\tquotes: none;\n}\nblockquote:before, blockquote:after, q:before, q:after {\n\tcontent: '';\n\tcontent: none;\n}\ntable {\n\tborder-collapse: collapse;\n\tborder-spacing: 0;\n}\n\n\n\n/*** Basics ***/\nbody {\n\tfont-family: Verdana, serif;\n\tfont-size: 13px;\n\tline-height: 1.7;\n}\n\na, a:active, a:visited {\n\ttext-decoration: none;\n\tborder-bottom: 1px solid #839496;\n\tpadding-bottom: 2px;\n}\na:hover {\n\tbackground-color: #839496;\n\tcolor: #000000;\n}\n\np, pre { margin-bottom: 15px; }\nul, ol { padding: 0 0 18px 30px; }\nol li, ul li { margin-top: 10px; margin-bottom: 10px; }\nem, i { font-style: italic; }\nstrong, b { font-weight: bold; }\nsmall { font-size: 0.85em; }\nsup { vertical-align: super; font-size: 0.85em; }\nsub { vertical-align: sub; font-size: 0.85em; }\n\ncode {\n    font: 0.85em Monaco, Courier, Monospace;\n}\n\nblockquote {\n    margin: 22px 22px;\n    padding: 0 20px;\n    border-left: 2px solid #000000;\n    font-size: 1.2em;\n    font-style: italic;\n    line-height: 1.5em;\n}\n\nacronym, abbr {\n\tcursor: help;\n\tletter-spacing: 1px;\n\tborder-bottom: 1px dashed;\n}\n\n\nh1 {\n\tfont-size: 17px;\n\tmargin: 0 0 10px 0;\n}\nh2 {\n\tfont-size: 15px;\n\tmargin: 0 0 10px 0;\n}\nh3 {\n\tfont-size: 14px;\n\tmargin: 0 0 10px 0;\n}\n\n\n\n/*** Useful Classes ***/\n.clear { clear: both; }\n.float-left { float: left; }\n.float-right { float: right; }\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.img-left { float: left; margin: 4px 10px 4px 0; }\n.img-right { float: right; margin: 4px 0 4px 10px; }\n.img-middle { vertical-align: middle; }\n.nopadding { padding: 0; }\n.nounderline { text-decoration: underline; }\n\n\n\n/*** Structure ***/\n#page {\n\twidth: 500px;\n\tmargin: 0 auto;\n\tposition: relative;\n}\n\n#header {\n\twidth: 500px;\n\tmargin: 40px auto 50px auto;\n}\n#header h1 {\n\tfont-size: 32px;\n\tmargin-bottom: 4px;\n}\n#header h1 a {\n\tborder: none;\n}\n\n#footer {\n\twidth: 500px;\n\tmargin: 50px auto 20px auto;\n\tpadding-top: 10px;\n\tfont-size: 0.85em;\n\tborder-top: 1px solid #073642;\n}\n\n#content {\n\twidth: 500px;\n\tmargin: 0 auto;\n}\n\n#sidebar {\n\tposition: absolute;\n\ttext-align: right;\n\twidth: 160px;\n\ttop: 0;\n\tleft: -240px;\n}\n\n#sidebar li {\n\tlist-style: none;\n\tmargin: 2px 0;\n}\n\n#sidebar a {\n\tborder: none;\n\tfont-family: \"Helvetica Neue\", \"Helvetica\", serif;\n\tfont-size: 1.2em;\n\tpadding: 2px 4px;\n}\n\n\n\n/*** Posts ***/\narticle {\n\tmargin-bottom: 40px;\n}\n\narticle h1 {\n\tfont-size: 17px;\n\tmargin: 0 0 10px 0;\n}\narticle h1 a {\n\tborder: none;\n}\narticle h1 a.anchor {\n\tmargin-left: 8px;\n}\n\narticle img {\n\tdisplay: block;\n\ttext-align: center;\n\tmargin: 0 auto 1em auto;\n}\n\narticle .meta {\n\tpadding-top: 6px;\n\tfont-size: 0.85em;\n\tfont-style: italic;\n}\n\nimg.left {\n\tfloat: left;\n\tmargin: 0 1em 1em 0;\n}\nimg.right {\n\tfloat: right;\n\tmargin: 0 0 1em 1em;\n}\nimg.center {\n\tdisplay: block;\n\ttext-align: center;\n\tmargin: 0 auto 1em auto;\n}\n\n\n\n/*** Pagination ***/\n.postnavigation {\n\tpadding-top: 10px;\n    text-align: center;\n    font-size: 0.85em;\n}\n\n.postnavigation .left {\n\tfloat: left;\n}\n\n.postnavigation .right {\n\tfloat: right;\n}\n\n\n\n/*** Media Queries ***/\n@media all and (max-width: 870px) {\n\n\t#page, #header, #content, #footer {\n\t\twidth: inherit;\n\t\tpadding-left: 10px;\n\t\tpadding-right: 10px;\n\t}\n\n\t#sidebar {\n\t\tposition: relative;\n\t\ttext-align: left;\n\t\twidth: 100%;\n\t\tleft: 0;\n\t\tmargin: 10px 10px 20px 10px;\n\t}\n\n\t#sidebar nav select.mnav {\n\t\tdisplay: block;\n\t\tmargin-bottom: 15px;\n\t}\n\n}\n\n\n\n/*** Icons ***/\n@font-face {\n  font-family: 'solarthemeicons';\n  src: url('../fonts/solarthemeicons.eot');\n  src: url('../fonts/solarthemeicons.eot#iefix') format('embedded-opentype'),\n       url('../fonts/solarthemeicons.woff') format('woff'),\n       url('../fonts/solarthemeicons.ttf') format('truetype'),\n       url('../fonts/solarthemeicons.svg#solarthemeicons') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"icon-\"]:before, [class*=\" icon-\"]:before {\n  font-family: \"solarthemeicons\";\n  font-style: normal;\n  font-weight: normal;\n  speak: none;\n  display: inline-block;\n  text-decoration: inherit;\n  width: 1em;\n  margin-right: .2em;\n  text-align: center;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1.7;\n}\n \n.icon-sun:before { content: '\\e801'; }\n.icon-anchor:before { content: '\\e800'; }\n.icon-anchor {\n\tfont-size: 65%;\n}\n"
  },
  {
    "path": "assets/fonts/config.json",
    "content": "{\n  \"name\": \"solarthemeicons\",\n  \"css_prefix_text\": \"icon-\",\n  \"css_use_suffix\": false,\n  \"glyphs\": [\n    {\n      \"uid\": \"7a9d73c640892d4b917c706ad95d6fec\",\n      \"css\": \"anchor\",\n      \"code\": 59392,\n      \"src\": \"fontawesome\"\n    },\n    {\n      \"uid\": \"c1306ee779029bed4f5a2b9b4f5c79e8\",\n      \"css\": \"sun\",\n      \"code\": 59393,\n      \"src\": \"meteocons\"\n    }\n  ]\n}"
  },
  {
    "path": "feed.xml",
    "content": "---\nlayout: null\n---\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<rss version=\"2.0\" xmlns:atom=\"http://www.w3.org/2005/Atom\">\n  <channel>\n    <title>{{ site.title | xml_escape }}</title>\n    <description>{{ site.description | xml_escape }}</description>\n    <link>{{ site.url }}{{ site.baseurl }}/</link>\n    <atom:link href=\"{{ \"/feed.xml\" | prepend: site.baseurl | prepend: site.url }}\" rel=\"self\" type=\"application/rss+xml\"/>\n    <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>\n    <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>\n    <generator>Jekyll v{{ jekyll.version }}</generator>\n    {% for post in site.posts limit:10 %}\n      <item>\n        <title>{{ post.title | xml_escape }}</title>\n        <description>{{ post.content | xml_escape }}</description>\n        <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>\n        <link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>\n        <guid isPermaLink=\"true\">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>\n        {% for tag in post.tags %}\n        <category>{{ tag | xml_escape }}</category>\n        {% endfor %}\n        {% for cat in post.categories %}\n        <category>{{ cat | xml_escape }}</category>\n        {% endfor %}\n      </item>\n    {% endfor %}\n  </channel>\n</rss>\n"
  },
  {
    "path": "index.html",
    "content": "---\nlayout: default\ntitle: Solar Theme\n---\n\n{% for post in paginator.posts %}\n\n\t<article class=\"post\">\n\n\t\t{% if post.external-url %}\n\t\t\t<h1>\n\t\t\t\t<a href=\"{{ post.external-url }}\">{{ post.title }}</a>\n\t\t\t\t<a class=\"anchor\" href=\"{{ post.url }}\"><i class=\"icon-anchor\"></i></a>\n\t\t\t</h1>\n\t\t{% else %}\n\t\t\t<h1><a href=\"{{ post.url }}\">{{ post.title }}</a></h1>\n\t\t{% endif %}\n\n\t\t<div class=\"post-content\">{{ post.content }}</div>\n\n\t</article>\n\n{% endfor %}\n\n\n\n{% if paginator.total_pages > 1 %}\n\t<div class=\"postnavigation\">\n\n\t\t{% if paginator.previous_page %}\n\t\t\t{% if paginator.page == 2 %}\n\t\t\t\t<a class=\"prev left\" href=\"/\">&larr; Newer</a>\n\t\t\t{% else %}\n\t\t\t\t<a class=\"prev left\" href=\"/page{{paginator.previous_page}}/\">&larr; Newer</a>\n\t\t\t{% endif %}\n\t\t{% else %}\n\t\t\t<span class=\"nope left\">&larr; Newer</span>\n\t\t{% endif %}\n\n\t\t<span class=\"pages\">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>\n\n\t\t{% if paginator.next_page %}\n\t\t\t<a class=\"next right\" href=\"/page{{paginator.next_page}}/\">Older &rarr;</a>\n\t\t{% else %}\n\t\t\t<span class=\"nope right\">Older &rarr;</span>\n\t\t{% endif %}\n\n\t</div>\n{% endif %}"
  }
]