[
  {
    "path": ".github/CODEOWNERS",
    "content": "# Require maintainer's :+1: for changes to the .github/ repo-config files\n# mainly due to https://github.com/probot/settings privilege escalation\n.github/* @pages-themes/maintainers\n"
  },
  {
    "path": ".github/config.yml",
    "content": "# Behaviorbot config. See https://github.com/behaviorbot/ for more information.\n# Note: Please Don't edit this file directly.\n# Edit https://github.com/pages-themes/maintenance-scripts instead.\n\n# Configuration for update-docs - https://github.com/behaviorbot/update-docs\nupdateDocsComment: \"Thanks for the pull request! If you are making any changes to the user-facing functionality, please be sure to update the documentation in the `README` or `docs/` folder alongside your change. :heart:\"\n\n# Configuration for request-info - https://github.com/behaviorbot/request-info\nrequestInfoReplyComment: Thanks for this. Do you mind providing a bit more information about what problem you're trying to solve?\nrequestInfoLabelToAdd: more-information-needed\n\n# Configuration for new-issue-welcome - https://github.com/behaviorbot/new-issue-welcome\n#newIssueWelcomeComment: >\n#  Welcome!\n\n# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome\nnewPRWelcomeComment: Welcome! Congrats on your first pull request to the Leap Day theme. If you haven't already, please be sure to check out [the contributing guidelines](https://github.com/pages-themes/leap-day/blob/master/docs/CONTRIBUTING.md).\n\n# Configuration for first-pr-merge - https://github.com/behaviorbot/first-pr-merge\nfirstPRMergeComment: \"Congrats on getting your first pull request to the Leap Day theme merged! Without amazing humans like you submitting pull requests, we couldn’t run this project. You rock! :tada:<br /><br />If you're interested in tackling another bug or feature, take a look at [the open issues](https://github.com/pages-themes/leap-day/issues), especially those [labeled `help wanted`](https://github.com/pages-themes/leap-day/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22).\"\n"
  },
  {
    "path": ".github/no-response.yml",
    "content": "# Configuration for probot-no-response - https://github.com/probot/no-response\n\n# Number of days of inactivity before an Issue is closed for lack of response\ndaysUntilClose: 14\n# Label requiring a response\nresponseRequiredLabel: more-information-needed\n# Comment to post when closing an Issue for lack of response. Set to `false` to disable\ncloseComment: >\n  This issue has been automatically closed because there has been no response\n  to our request for more information from the original author. With only the\n  information that is currently in the issue, we don't have enough information\n  to take action. Please reach out if you have or find the answers we need so\n  that we can investigate further.\n"
  },
  {
    "path": ".github/settings.yml",
    "content": "# Repository settings set via https://github.com/probot/settings\n\nrepository:\n  has_issues: true\n  has_wiki: false\n  has_projects: false\n  has_downloads: false\n\nlabels:\n  - name: help wanted\n    oldname: help-wanted\n    color: 0e8a16\n  - name: more-information-needed\n    color: d93f0b\n  - name: bug\n    color: b60205\n  - name: feature\n    color: 1d76db\n  - name: good first issue\n    color: \"5319e7\"\n\n# Not currently implemented by probot/settings, but manually implemented in script/deploy\nbranch_protection:\n  restrictions: null\n  enforce_admins: false\n  required_status_checks:\n    strict: true\n    contexts:\n      - \"script/cibuild\" # GitHub Actions CI workflow\n  required_pull_request_reviews:\n    require_code_owner_reviews: true\n"
  },
  {
    "path": ".github/stale.yml",
    "content": "# Configuration for probot-stale - https://github.com/probot/stale\n\n# Number of days of inactivity before an Issue or Pull Request becomes stale\ndaysUntilStale: 60\n\n# Number of days of inactivity before a stale Issue or Pull Request is closed\ndaysUntilClose: 7\n\n# Issues or Pull Requests with these labels will never be considered stale\nexemptLabels:\n  - pinned\n  - security\n\n# Label to use when marking as stale\nstaleLabel: wontfix\n\n# Comment to post when marking as stale. Set to `false` to disable\nmarkComment: >\n  This issue has been automatically marked as stale because it has not had\n  recent activity. It will be closed if no further activity occurs. Thank you\n  for your contributions.\n\n# Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable\ncloseComment: false\n\n# Limit to only `issues` or `pulls`\n# only: issues\n"
  },
  {
    "path": ".github/workflows/ci.yaml",
    "content": "on:\n  push:\n  pull_request:\n    types: [opened, synchronize]\njobs:\n  build:\n    runs-on: ubuntu-latest\n    name: script/cibuild\n    steps:\n      - uses: actions/checkout@v2\n      - uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: 3.2.0\n          bundler-cache: true\n      - name: build\n        run: script/bootstrap\n      - name: test\n        run: script/cibuild\n"
  },
  {
    "path": ".github/workflows/publish-gem.yml",
    "content": "name: Publish Gem\n\non:\n  release:\n    types: [released]\n\njobs:\n  release:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n      - name: Setup Ruby\n        uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: '3.2.0'\n      - name: Build gem\n        run: |\n          gem build github-pages.gemspec\n      - name: Publish\n        run: |\n          gem push github-pages.gem --key ${{ secrets.PAGES_GEM_PUBLISH }}\n"
  },
  {
    "path": ".gitignore",
    "content": "_site\n.sass-cache\nGemfile.lock\n*.gem\n.jekyll-cache\n"
  },
  {
    "path": ".rubocop.yml",
    "content": "inherit_gem:\n  rubocop-github:\n    - config/default.yml\n\nAllCops:\n  Exclude:\n    - _site/**/*\n    - vendor/**/*\n\nLayout/LineLength:\n  Enabled: false\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: ruby\ncache: bundler\nrvm: 2.6\n\ninstall: script/bootstrap\nscript: script/cibuild\n"
  },
  {
    "path": "Gemfile",
    "content": "# frozen_string_literal: true\n\nsource \"https://rubygems.org\"\n\ngemspec\n"
  },
  {
    "path": "LICENSE",
    "content": "CC0 1.0 Universal\n\nStatement of Purpose\n\nThe laws of most jurisdictions throughout the world automatically confer\nexclusive Copyright and Related Rights (defined below) upon the creator and\nsubsequent owner(s) (each and all, an \"owner\") of an original work of\nauthorship and/or a database (each, a \"Work\").\n\nCertain owners wish to permanently relinquish those rights to a Work for the\npurpose of contributing to a commons of creative, cultural and scientific\nworks (\"Commons\") that the public can reliably and without fear of later\nclaims of infringement build upon, modify, incorporate in other works, reuse\nand redistribute as freely as possible in any form whatsoever and for any\npurposes, including without limitation commercial purposes. These owners may\ncontribute to the Commons to promote the ideal of a free culture and the\nfurther production of creative, cultural and scientific works, or to gain\nreputation or greater distribution for their Work in part through the use and\nefforts of others.\n\nFor these and/or other purposes and motivations, and without any expectation\nof additional consideration or compensation, the person associating CC0 with a\nWork (the \"Affirmer\"), to the extent that he or she is an owner of Copyright\nand Related Rights in the Work, voluntarily elects to apply CC0 to the Work\nand publicly distribute the Work under its terms, with knowledge of his or her\nCopyright and Related Rights in the Work and the meaning and intended legal\neffect of CC0 on those rights.\n\n1. Copyright and Related Rights. A Work made available under CC0 may be\nprotected by copyright and related or neighboring rights (\"Copyright and\nRelated Rights\"). Copyright and Related Rights include, but are not limited\nto, the following:\n\n  i. the right to reproduce, adapt, distribute, perform, display, communicate,\n  and translate a Work;\n\n  ii. moral rights retained by the original author(s) and/or performer(s);\n\n  iii. publicity and privacy rights pertaining to a person's image or likeness\n  depicted in a Work;\n\n  iv. rights protecting against unfair competition in regards to a Work,\n  subject to the limitations in paragraph 4(a), below;\n\n  v. rights protecting the extraction, dissemination, use and reuse of data in\n  a Work;\n\n  vi. database rights (such as those arising under Directive 96/9/EC of the\n  European Parliament and of the Council of 11 March 1996 on the legal\n  protection of databases, and under any national implementation thereof,\n  including any amended or successor version of such directive); and\n\n  vii. other similar, equivalent or corresponding rights throughout the world\n  based on applicable law or treaty, and any national implementations thereof.\n\n2. Waiver. To the greatest extent permitted by, but not in contravention of,\napplicable law, Affirmer hereby overtly, fully, permanently, irrevocably and\nunconditionally waives, abandons, and surrenders all of Affirmer's Copyright\nand Related Rights and associated claims and causes of action, whether now\nknown or unknown (including existing as well as future claims and causes of\naction), in the Work (i) in all territories worldwide, (ii) for the maximum\nduration provided by applicable law or treaty (including future time\nextensions), (iii) in any current or future medium and for any number of\ncopies, and (iv) for any purpose whatsoever, including without limitation\ncommercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes\nthe Waiver for the benefit of each member of the public at large and to the\ndetriment of Affirmer's heirs and successors, fully intending that such Waiver\nshall not be subject to revocation, rescission, cancellation, termination, or\nany other legal or equitable action to disrupt the quiet enjoyment of the Work\nby the public as contemplated by Affirmer's express Statement of Purpose.\n\n3. Public License Fallback. Should any part of the Waiver for any reason be\njudged legally invalid or ineffective under applicable law, then the Waiver\nshall be preserved to the maximum extent permitted taking into account\nAffirmer's express Statement of Purpose. In addition, to the extent the Waiver\nis so judged Affirmer hereby grants to each affected person a royalty-free,\nnon transferable, non sublicensable, non exclusive, irrevocable and\nunconditional license to exercise Affirmer's Copyright and Related Rights in\nthe Work (i) in all territories worldwide, (ii) for the maximum duration\nprovided by applicable law or treaty (including future time extensions), (iii)\nin any current or future medium and for any number of copies, and (iv) for any\npurpose whatsoever, including without limitation commercial, advertising or\npromotional purposes (the \"License\"). The License shall be deemed effective as\nof the date CC0 was applied by Affirmer to the Work. Should any part of the\nLicense for any reason be judged legally invalid or ineffective under\napplicable law, such partial invalidity or ineffectiveness shall not\ninvalidate the remainder of the License, and in such case Affirmer hereby\naffirms that he or she will not (i) exercise any of his or her remaining\nCopyright and Related Rights in the Work or (ii) assert any associated claims\nand causes of action with respect to the Work, in either case contrary to\nAffirmer's express Statement of Purpose.\n\n4. Limitations and Disclaimers.\n\n  a. No trademark or patent rights held by Affirmer are waived, abandoned,\n  surrendered, licensed or otherwise affected by this document.\n\n  b. Affirmer offers the Work as-is and makes no representations or warranties\n  of any kind concerning the Work, express, implied, statutory or otherwise,\n  including without limitation warranties of title, merchantability, fitness\n  for a particular purpose, non infringement, or the absence of latent or\n  other defects, accuracy, or the present or absence of errors, whether or not\n  discoverable, all to the greatest extent permissible under applicable law.\n\n  c. Affirmer disclaims responsibility for clearing rights of other persons\n  that may apply to the Work or any use thereof, including without limitation\n  any person's Copyright and Related Rights in the Work. Further, Affirmer\n  disclaims responsibility for obtaining any necessary consents, permissions\n  or other rights required for any use of the Work.\n\n  d. Affirmer understands and acknowledges that Creative Commons is not a\n  party to this document and has no duty or obligation with respect to this\n  CC0 or use of the Work.\n\nFor more information, please see\n<http://creativecommons.org/publicdomain/zero/1.0/>\n"
  },
  {
    "path": "README.md",
    "content": "# The Leap day theme\n\n[![.github/workflows/ci.yaml](https://github.com/pages-themes/leap-day/actions/workflows/ci.yaml/badge.svg)](https://github.com/pages-themes/leap-day/actions/workflows/ci.yaml) [![Gem Version](https://badge.fury.io/rb/jekyll-theme-leap-day.svg)](https://badge.fury.io/rb/jekyll-theme-leap-day)\n\n*Leap day is a Jekyll theme for GitHub Pages. You can [preview the theme to see what it looks like](http://pages-themes.github.io/leap-day), or even [use it today](#usage).*\n\n![Thumbnail of Leap day](thumbnail.png)\n\n## Usage\n\nTo use the Leap day theme:\n\n1. Add the following to your site's `_config.yml`:\n\n    ```yml\n    remote_theme: pages-themes/leap-day@v0.2.0\n    plugins:\n    - jekyll-remote-theme # add this line to the plugins list if you already have one\n    ```\n\n2. Optionally, if you'd like to preview your site on your computer, add the following to your site's `Gemfile`:\n\n    ```ruby\n    gem \"github-pages\", group: :jekyll_plugins\n    ```\n\n## Customizing\n\n### Configuration variables\n\nLeap day will respect the following variables, if set in your site's `_config.yml`:\n\n```yml\ntitle: [The title of your site]\ndescription: [A short description of your site's purpose]\n```\n\nAdditionally, you may choose to set the following optional variables:\n\n```yml\nshow_downloads: [\"true\" or \"false\" (unquoted) to indicate whether to provide a download URL]\ngoogle_analytics: [Your Google Analytics tracking ID]\n```\n\n### Stylesheet\n\nIf you'd like to add your own custom styles:\n\n1. Create a file called `/assets/css/style.scss` in your site\n2. Add the following content to the top of the file, exactly as shown:\n    ```scss\n    ---\n    ---\n\n    @import \"{{ site.theme }}\";\n    ```\n3. Add any custom CSS (or Sass, including imports) you'd like immediately after the `@import` line\n\n*Note: If you'd like to change the theme's Sass variables, you must set new values before the `@import` line in your stylesheet.*\n\n### Layouts\n\nIf you'd like to change the theme's HTML layout:\n\n1. For some changes such as a custom `favicon`, you can add custom files in your local `_includes` folder. The files [provided with the theme](https://github.com/pages-themes/leap-day/tree/master/_includes) provide a starting point and are included by the [original layout template](https://github.com/pages-themes/leap-day/blob/master/_layouts/default.html).\n2. For more extensive changes, [copy the original template](https://github.com/pages-themes/leap-day/blob/master/_layouts/default.html) from the theme's repository<br />(*Pro-tip: click \"raw\" to make copying easier*)\n3. Create a file called `/_layouts/default.html` in your site\n4. Paste the default layout content copied in the first step\n5. Customize the layout as you'd like\n\n### Customizing Google Analytics code\n\nGoogle has released several iterations to their Google Analytics code over the years since this theme was first created. If you would like to take advantage of the latest code, paste it into `_includes/head-custom-google-analytics.html` in your Jekyll site.\n\n### Overriding GitHub-generated URLs\n\nTemplates often rely on URLs supplied by GitHub such as links to your repository or links to download your project. If you'd like to override one or more default URLs:\n\n1. Look at [the template source](https://github.com/pages-themes/leap-day/blob/master/_layouts/default.html) to determine the name of the variable. It will be in the form of `{{ site.github.zip_url }}`.\n2. Specify the URL that you'd like the template to use in your site's `_config.yml`. For example, if the variable was `site.github.url`, you'd add the following:\n    ```yml\n    github:\n      zip_url: http://example.com/download.zip\n      another_url: another value\n    ```\n3. When your site is built, Jekyll will use the URL you specified, rather than the default one provided by GitHub.\n\n*Note: You must remove the `site.` prefix, and each variable name (after the `github.`) should be indent with two space below `github:`.*\n\nFor more information, see [the Jekyll variables documentation](https://jekyllrb.com/docs/variables/).\n\n## Roadmap\n\nSee the [open issues](https://github.com/pages-themes/leap-day/issues) for a list of proposed features (and known issues).\n\n## Project philosophy\n\nThe Leap day theme is intended to make it quick and easy for GitHub Pages users to create their first (or 100th) website. The theme should meet the vast majority of users' needs out of the box, erring on the side of simplicity rather than flexibility, and provide users the opportunity to opt-in to additional complexity if they have specific needs or wish to further customize their experience (such as adding custom CSS or modifying the default layout). It should also look great, but that goes without saying.\n\n## Contributing\n\nInterested in contributing to Leap day? We'd love your help. Leap day is an open source project, built one contribution at a time by users like you. See [the CONTRIBUTING file](docs/CONTRIBUTING.md) for instructions on how to contribute.\n\n### Previewing the theme locally\n\nIf you'd like to preview the theme locally (for example, in the process of proposing a change):\n\n1. Clone down the theme's repository (`git clone https://github.com/pages-themes/leap-day`)\n2. `cd` into the theme's directory\n3. Run `script/bootstrap` to install the necessary dependencies\n4. Run `bundle exec jekyll serve` to start the preview server\n5. Visit [`localhost:4000`](http://localhost:4000) in your browser to preview the theme\n\n### Running tests\n\nThe theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run `script/cibuild`. You'll need to run `script/bootstrap` once before the test script will work.\n"
  },
  {
    "path": "_config.yml",
    "content": "title: Leap Day theme\ndescription: Leap Day is a theme for GitHub Pages.\nshow_downloads: true\ngoogle_analytics:\ntheme: jekyll-theme-leap-day"
  },
  {
    "path": "_includes/head-custom-google-analytics.html",
    "content": "{% if site.google_analytics %}\n  <script>\n    (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n    (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n            m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n        })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n    ga('create', '{{ site.google_analytics }}', 'auto');\n    ga('send', 'pageview');\n  </script>\n{% endif %}\n"
  },
  {
    "path": "_includes/head-custom.html",
    "content": "<!-- start custom head snippets, customize with your own _includes/head-custom.html file -->\n\n<!-- Setup Google Analytics -->\n{% include head-custom-google-analytics.html %}\n\n<!-- You can set your favicon here -->\n<!-- link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"{{ '/favicon.ico' | relative_url }}\" -->\n\n<!-- end custom head snippets -->\n"
  },
  {
    "path": "_layouts/default.html",
    "content": "<!doctype html>\n<html lang=\"{{ site.lang | default: \"en-US\" }}\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n\n{% seo %}\n    <link rel=\"stylesheet\" href=\"{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}\">\n    <script src=\"https://code.jquery.com/jquery-3.3.0.min.js\" integrity=\"sha256-RTQy8VOmNlT6b2PIRur37p6JEBZUE7o8wPgMvu18MC4=\" crossorigin=\"anonymous\"></script>\n    <script src=\"{{ '/assets/js/main.js' | relative_url }}\"></script>\n    <!--[if lt IE 9]>\n      <script src=\"https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js\" integrity=\"sha256-3Jy/GbSLrg0o9y5Z5n1uw0qxZECH7C6OQpVBgNFYa0g=\" crossorigin=\"anonymous\"></script>\n    <![endif]-->\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, user-scalable=no\">\n\n    {% include head-custom.html %}\n  </head>\n  <body>\n\n      <header>\n        <h1>{{ page.title | default: site.title | default: site.github.repository_name }}</h1>\n        <p>{{ page.description | default: site.description | default: site.github.project_tagline }}</p>\n      </header>\n\n      <div id=\"banner\">\n        <span id=\"logo\"></span>\n\n        <a href=\"{{ site.github.repository_url }}\" class=\"button fork\"><strong>View On GitHub</strong></a>\n        {% if site.show_downloads %}\n          <div class=\"downloads\">\n            <span>Downloads:</span>\n            <ul>\n              <li><a href=\"{{ site.github.zip_url }}\" class=\"button\">ZIP</a></li>\n              <li><a href=\"{{ site.github.tar_url }}\" class=\"button\">TAR</a></li>\n            </ul>\n          </div>\n        {% endif %}\n      </div><!-- end banner -->\n\n    <div class=\"wrapper\">\n      <nav>\n        <ul></ul>\n      </nav>\n      <section>\n        {{ content }}\n\n      </section>\n      <footer>\n        {% if site.github.is_project_page %}\n          <p>Project maintained by <a href=\"{{ site.github.owner_url }}\">{{ site.github.owner_name }}</a></p>\n        {% endif %}\n        <p><small>Hosted on GitHub Pages &mdash; Theme by <a href=\"https://twitter.com/mattgraham\">mattgraham</a></small></p>\n      </footer>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "_sass/fonts.scss",
    "content": "\n@font-face {\n    font-family: 'Quattrocento Sans';\n    src: url('../fonts/quattrocentosans-bold-webfont.eot');\n    src: url('../fonts/quattrocentosans-bold-webfont.eot?#iefix') format('embedded-opentype'),\n         url('../fonts/quattrocentosans-bold-webfont.woff') format('woff'),\n         url('../fonts/quattrocentosans-bold-webfont.ttf') format('truetype'),\n         url('../fonts/quattrocentosans-bold-webfont.svg#QuattrocentoSansBold') format('svg');\n    font-weight: bold;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Quattrocento Sans';\n    src: url('../fonts/quattrocentosans-bolditalic-webfont.eot');\n    src: url('../fonts/quattrocentosans-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),\n         url('../fonts/quattrocentosans-bolditalic-webfont.woff') format('woff'),\n         url('../fonts/quattrocentosans-bolditalic-webfont.ttf') format('truetype'),\n         url('../fonts/quattrocentosans-bolditalic-webfont.svg#QuattrocentoSansBoldItalic') format('svg');\n    font-weight: bold;\n    font-style: italic;\n}\n\n@font-face {\n    font-family: 'Quattrocento Sans';\n    src: url('../fonts/quattrocentosans-italic-webfont.eot');\n    src: url('../fonts/quattrocentosans-italic-webfont.eot?#iefix') format('embedded-opentype'),\n         url('../fonts/quattrocentosans-italic-webfont.woff') format('woff'),\n         url('../fonts/quattrocentosans-italic-webfont.ttf') format('truetype'),\n         url('../fonts/quattrocentosans-italic-webfont.svg#QuattrocentoSansItalic') format('svg');\n    font-weight: normal;\n    font-style: italic;\n}\n\n@font-face {\n    font-family: 'Quattrocento Sans';\n    src: url('../fonts/quattrocentosans-regular-webfont.eot');\n    src: url('../fonts/quattrocentosans-regular-webfont.eot?#iefix') format('embedded-opentype'),\n         url('../fonts/quattrocentosans-regular-webfont.woff') format('woff'),\n         url('../fonts/quattrocentosans-regular-webfont.ttf') format('truetype'),\n         url('../fonts/quattrocentosans-regular-webfont.svg#QuattrocentoSansRegular') format('svg');\n    font-weight: normal;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Copse';\n    src: url('../fonts/copse-regular-webfont.eot');\n    src: url('../fonts/copse-regular-webfont.eot?#iefix') format('embedded-opentype'),\n         url('../fonts/copse-regular-webfont.woff') format('woff'),\n         url('../fonts/copse-regular-webfont.ttf') format('truetype'),\n         url('../fonts/copse-regular-webfont.svg#CopseRegular') format('svg');\n    font-weight: normal;\n    font-style: normal;\n}\n"
  },
  {
    "path": "_sass/jekyll-theme-leap-day.scss",
    "content": "/*\nLeap Day for GitHub Pages\nby Matt Graham\n*/\n\n@import \"normalize\";\n@import \"fonts\";\n@import \"rouge-base16-dark\";\n\nbody {\n  font:14px/22px 'Quattrocento Sans', \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n  color:#2b2b2b;\n  font-weight:300;\n  margin: 0px;\n  padding:0px 0 20px 0px;\n  background: url(../images/body-background.png) #eae6d1;\n}\n\nh1, h2, h3, h4, h5, h6 {\n  color:#333;\n  margin:0 0 10px;\n}\n\np, ul, ol, table, pre, dl {\n  margin:0 0 20px;\n}\n\nh1, h2, h3 {\n  line-height:1.1;\n}\n\nh1 {\n  font-size:28px;\n}\n\nh2 {\n  font-size: 24px;\n  color:#393939;\n}\n\nh3, h4, h5, h6 {\n  color:#666666;\n}\n\nh3 {\n  font-size: 18px;\n  line-height: 24px;\n}\n\na {\n  color:#4276b6;\n  font-weight:400;\n  text-decoration:none;\n}\n\na small {\n  font-size:11px;\n  color:#666;\n  margin-top:-0.6em;\n  display:block;\n}\n\nul{\n  list-style-image:url('../images/bullet.png');\n}\n\nstrong {\n  font-weight: bold;\n  color: #333;\n}\n\n.wrapper {\n  width:650px;\n  margin:0 auto;\n  position:relative;\n}\n\nsection img {\n  max-width: 100%;\n}\n\nblockquote {\n  border-left:1px solid #ffcc00;\n  margin:0;\n  padding:0 0 0 20px;\n  font-style:italic;\n}\n\ncode {\n  font-family: 'Lucida Sans', Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal;\n  font-size:13px;\n  color:#efefef;\n  text-shadow: 0px 1px 0px #000;\n  margin: 0 4px;\n  padding: 2px 6px;\n  background: #333;\n  border-radius: 2px;\n}\n\npre {\n  padding:8px 15px;\n  background: #333333;\n  border-radius: 3px;\n  border:1px solid #c7c7c7;\n  overflow: auto;\n  overflow-y: hidden;\n\n  code {\n    margin: 0px;\n    padding: 0px;\n  }\n}\n\nkbd {\n  background-color: #fafbfc;\n  border: 1px solid #c6cbd1;\n  border-bottom-color: #959da5;\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 #959da5;\n  color: #444d56;\n  display: inline-block;\n  font-size: 11px;\n  line-height: 10px;\n  padding: 3px 5px;\n  vertical-align: middle;\n}\n\ntable {\n  width:100%;\n  border-collapse:collapse;\n}\n\nth {\n  text-align:left;\n  padding:5px 10px;\n  border-bottom:1px solid #e5e5e5;\n  color: #444;\n}\n\ntd {\n  text-align:left;\n  padding:5px 10px;\n  border-bottom:1px solid #e5e5e5;\n  border-right: 1px solid #ffcc00;\n\n  &:first-child {\n    border-left: 1px solid #ffcc00;\n  }\n}\n\nhr {\n  border: 0;\n  outline: none;\n  height: 11px;\n  background: transparent url('../images/hr.gif') center center repeat-x;\n  margin: 0 0 20px;\n}\n\ndt {\n  color:#444;\n  font-weight:700;\n}\n\nheader {\n  padding: 25px 20px 40px 20px;\n  margin: 0;\n  position: fixed;\n  top: 0;\n  left:0;\n  right:0;\n  width: 100%;\n  text-align: center;\n  background: url(../images/background.png) #4276b6;\n  box-shadow: 1px 0px 2px rgba(0,0,0,.75);\n  z-index:99;\n  -webkit-font-smoothing:antialiased;\n  min-height: 76px;\n\n  h1 {\n    font: 40px/48px 'Copse', \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n    color: #f3f3f3;\n    text-shadow: 0px 2px 0px #235796;\n    margin: 0px;\n    white-space: nowrap;\n    overflow: hidden;\n    text-overflow: ellipsis;\n    -o-text-overflow: ellipsis;\n    -ms-text-overflow: ellipsis;\n  }\n\n  p {\n    color: #d8d8d8;\n    text-shadow:rgba(#000, 0.2) 0 1px 0;\n    font-size: 18px;\n    margin: 0px;\n  }\n}\n\n#banner {\n  z-index: 100;\n  left:0;\n  right:50%;\n  height: 50px;\n  margin-right:-382px;\n  position: fixed;\n  top: 115px;\n  background: #ffcc00;\n  border: 1px solid #f0b500;\n  box-shadow: 0px 1px 3px rgba(0,0,0,.25);\n  border-radius: 0px 2px 2px 0px;\n  padding-right: 10px;\n\n  .button {\n    border: 1px solid #dba500;\n    background: linear-gradient(rgb(255, 231, 136), rgb(255, 206, 56));\n    border-radius: 2px;\n    box-shadow: inset 0px 1px 0px rgba(255,255,255,.4), 0px 1px 1px rgba(0,0,0,.1);\n    background-color: #FFE788;\n    margin-left: 5px;\n    padding: 10px 12px;\n    margin-top: 6px;\n    line-height:14px;\n    font-size:14px;\n    color:#333;\n    font-weight: bold;\n    display:inline-block;\n    text-align:center;\n\n    &:hover {\n      background: linear-gradient(rgb(255, 231, 136), rgb(255, 231, 136));\n      background-color: #ffeca0;\n    }\n  }\n\n  .fork {\n    position:fixed;\n    left:50%;\n    margin-left:-325px;\n    padding: 10px 12px;\n    margin-top: 6px;\n    line-height:14px;\n    font-size:14px;\n    background-color: #FFE788;\n  }\n\n  .downloads {\n    float: right;\n    margin:0 45px 0 0;\n\n    span {\n      float:left;\n      line-height:52px;\n      font-size:90%;\n      color:#9d7f0d;\n      text-transform:uppercase;\n      text-shadow:rgba(#fff, 0.2) 0 1px 0;\n    }\n  }\n\n  ul {\n    list-style:none;\n    height:40px;\n    padding:0;\n    float: left;\n    margin-left:10px;\n\n    li {\n      display:inline;\n\n      a.button {\n        background-color: #FFE788;\n      }\n    }\n  }\n\n  #logo {\n    position:absolute;\n    height: 36px;\n    width: 36px;\n    right:7px;\n    top:7px;\n    display: block;\n    background: url(../images/octocat-logo.svg);\n  }\n}\n\nsection {\n  width:590px;\n  padding: 30px 30px 50px 30px;\n  margin: 20px 0;\n  margin-top: 190px;\n  position:relative;\n  background: #fbfbfb;\n  border-radius: 3px;\n  border: 1px solid #cbcbcb;\n  box-shadow: 0px 1px 2px rgba(0,0,0,.09), inset 0px 0px 2px 2px rgba(255,255,255,.5), inset 0 0 5px 5px rgba(255,255,255,.4);\n}\n\nsmall {\n  font-size:12px;\n}\n\nnav {\n  width: 230px;\n  position: fixed;\n  top: 220px;\n  left:50%;\n  margin-left:-580px;\n  text-align: right;\n\n  ul {\n    list-style: none;\n    list-style-image:none;\n    font-size: 14px;\n    line-height:24px;\n\n    li {\n      padding: 5px 0px;\n      line-height: 16px;\n      // padding-right:17px;\n      // position:relative;\n      // right:-12px;\n\n      &.tag-h1 {\n        font-size: 1.2em;\n\n        a {\n          font-weight: bold;\n          color: #333;\n        }\n\n        + .tag-h2 {\n\n        }\n      }\n\n      &.tag-h2 {\n\n        + .tag-h1 {\n          margin-top:10px;\n        }\n      }\n    }\n\n    a {\n      color: #666;\n\n      &:hover { color: #999; }\n    }\n\n    // .active {\n    //   border-right:solid 4px #39C;\n    //   padding-right:13px;\n    // }\n  }\n}\n\nfooter {\n  width:180px;\n  position: fixed;\n  left:50%;\n  margin-left:-530px;\n  bottom:20px;\n  text-align: right;\n  line-height: 16px;\n}\n\n@media print, screen and (max-width: 1060px) {\n\n  div.wrapper {\n    width:auto;\n    margin:0;\n  }\n\n  nav{\n    display: none;\n  }\n\n  header, section, footer {\n    float:none;\n\n    h1 {\n      white-space: nowrap;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      -o-text-overflow: ellipsis;\n      -ms-text-overflow: ellipsis;\n    }\n  }\n\n  #banner {\n    width: 100%;\n\n    .downloads {\n        margin-right: 60px;\n      }\n\n    .fork {\n    }\n\n    #logo {\n      margin-right: 15px;\n    }\n  }\n\n  section {\n    border:1px solid #e5e5e5;\n    border-width:1px 0;\n    padding:20px 0;\n    margin: 190px auto 20px;\n    max-width: 600px;\n  }\n\n  footer{\n    text-align: center;\n    margin: 20px auto;\n    position: relative;\n    left:auto;\n    bottom:auto;\n    width:auto;\n    }\n}\n\n@media print, screen and (max-width: 720px) {\n  body {\n    word-wrap:break-word;\n  }\n\n  header {\n    padding:20px 20px;\n    margin: 0;\n\n    h1 {\n      font-size: 32px;\n      white-space: nowrap;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      -o-text-overflow: ellipsis;\n      -ms-text-overflow: ellipsis;\n    }\n\n    p { display: none;}\n  }\n\n  #banner {\n    top: 80px;\n\n    .fork {\n      float: left;\n      display: inline-block;\n      margin-left: 0px;\n    position:fixed;\n    left:20px;\n\n      }\n  }\n\n  section {\n    margin-top: 130px;\n    margin-bottom: 0px;\n    width: auto;\n  }\n\n  header ul, header p.view {\n    position:static;\n  }\n}\n\n@media print, screen and (max-width: 480px) {\n  body {\n  }\n\n  header{\n    position: relative;\n    padding: 5px 0px;\n    min-height: 0px;\n\n    h1 {\n      font-size: 24px;\n      white-space: nowrap;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      -o-text-overflow: ellipsis;\n      -ms-text-overflow: ellipsis;\n    }\n  }\n  section {\n    margin-top: 5px;\n  }\n\n  #banner { display: none;}\n  header ul {\n    display:none;\n  }\n}\n\n@media print {\n  body {\n    padding:0.4in;\n    font-size:12pt;\n    color:#444;\n  }\n}\n\n@media print, screen and (max-height: 680px) {\n\n  footer {\n    text-align: center;\n    margin: 20px auto;\n    position: relative;\n    left:auto;\n    bottom:auto;\n    width:auto;\n  }\n}\n\n@media print, screen and (max-height: 480px) {\n  nav {\n    display: none;\n  }\n\n  footer {\n    text-align: center;\n    margin: 20px auto;\n    position: relative;\n    left:auto;\n    bottom:auto;\n    width:auto;\n  }\n}\n"
  },
  {
    "path": "_sass/leap-day.scss",
    "content": "// Placeholder file. If your site uses\n//     @import \"{{ site.theme }}\";\n// Then using this theme with jekyll-remote-theme will work fine.\n@import \"jekyll-theme-leap-day\";\n"
  },
  {
    "path": "_sass/normalize.scss",
    "content": "/*! normalize.css 2012-02-07T12:37 UTC - https://github.com/necolas/normalize.css */\n\n/* =============================================================================\n   HTML5 display definitions\n   ========================================================================== */\n\n/*\n * Corrects block display not defined in IE6/7/8/9 & FF3\n */\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nnav,\nsection,\nsummary {\n    display: block;\n}\n\n/*\n * Corrects inline-block display not defined in IE6/7/8/9 & FF3\n */\n\naudio,\ncanvas,\nvideo {\n    display: inline-block;\n    *display: inline;\n    *zoom: 1;\n}\n\n/*\n * Prevents modern browsers from displaying 'audio' without controls\n */\n\naudio:not([controls]) {\n    display: none;\n}\n\n/*\n * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4\n * Known issue: no IE6 support\n */\n\n[hidden] {\n    display: none;\n}\n\n\n/* =============================================================================\n   Base\n   ========================================================================== */\n\n/*\n * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units\n *    http://clagnut.com/blog/348/#c790\n * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom\n *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/\n */\n\nhtml {\n    font-size: 100%; /* 1 */\n    -webkit-text-size-adjust: 100%; /* 2 */\n    -ms-text-size-adjust: 100%; /* 2 */\n}\n\n/*\n * Addresses font-family inconsistency between 'textarea' and other form elements.\n */\n\nhtml,\nbutton,\ninput,\nselect,\ntextarea {\n    font-family: sans-serif;\n}\n\n/*\n * Addresses margins handled incorrectly in IE6/7\n */\n\nbody {\n    margin: 0;\n}\n\n\n/* =============================================================================\n   Links\n   ========================================================================== */\n\n/*\n * Addresses outline displayed oddly in Chrome\n */\n\na:focus {\n    outline: thin dotted;\n}\n\n/*\n * Improves readability when focused and also mouse hovered in all browsers\n * people.opera.com/patrickl/experiments/keyboard/test\n */\n\na:hover,\na:active {\n    outline: 0;\n}\n\n\n/* =============================================================================\n   Typography\n   ========================================================================== */\n\n/*\n * Addresses font sizes and margins set differently in IE6/7\n * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5\n */\n\nh1 {\n    font-size: 2em;\n    margin: 0.67em 0;\n}\n\nh2 {\n    font-size: 1.5em;\n    margin: 0.83em 0;\n}\n\nh3 {\n    font-size: 1.17em;\n    margin: 1em 0;\n}\n\nh4 {\n    font-size: 1em;\n    margin: 1.33em 0;\n}\n\nh5 {\n    font-size: 0.83em;\n    margin: 1.67em 0;\n}\n\nh6 {\n    font-size: 0.75em;\n    margin: 2.33em 0;\n}\n\n/*\n * Addresses styling not present in IE7/8/9, S5, Chrome\n */\n\nabbr[title] {\n    border-bottom: 1px dotted;\n}\n\n/*\n * Addresses style set to 'bolder' in FF3+, S4/5, Chrome\n*/\n\nb,\nstrong {\n    font-weight: bold;\n}\n\nblockquote {\n    margin: 1em 40px;\n}\n\n/*\n * Addresses styling not present in S5, Chrome\n */\n\ndfn {\n    font-style: italic;\n}\n\n/*\n * Addresses styling not present in IE6/7/8/9\n */\n\nmark {\n    background: #ff0;\n    color: #000;\n}\n\n/*\n * Addresses margins set differently in IE6/7\n */\n\np,\npre {\n    margin: 1em 0;\n}\n\n/*\n * Corrects font family set oddly in IE6, S4/5, Chrome\n * en.wikipedia.org/wiki/User:Davidgothberg/Test59\n */\n\npre,\ncode,\nkbd,\nsamp {\n    font-family: monospace, serif;\n    _font-family: 'courier new', monospace;\n    font-size: 1em;\n}\n\n/*\n * 1. Addresses CSS quotes not supported in IE6/7\n * 2. Addresses quote property not supported in S4\n */\n\n/* 1 */\n\nq {\n    quotes: none;\n}\n\n/* 2 */\n\nq:before,\nq:after {\n    content: '';\n    content: none;\n}\n\nsmall {\n    font-size: 75%;\n}\n\n/*\n * Prevents sub and sup affecting line-height in all browsers\n * gist.github.com/413930\n */\n\nsub,\nsup {\n    font-size: 75%;\n    line-height: 0;\n    position: relative;\n    vertical-align: baseline;\n}\n\nsup {\n    top: -0.5em;\n}\n\nsub {\n    bottom: -0.25em;\n}\n\n\n/* =============================================================================\n   Lists\n   ========================================================================== */\n\n/*\n * Addresses margins set differently in IE6/7\n */\n\ndl,\nmenu,\nol,\nul {\n    margin: 1em 0;\n}\n\ndd {\n    margin: 0 0 0 40px;\n}\n\n/*\n * Addresses paddings set differently in IE6/7\n */\n\nmenu,\nol,\nul {\n    padding: 0 0 0 40px;\n}\n\n/*\n * Corrects list images handled incorrectly in IE7\n */\n\nnav ul,\nnav ol {\n    list-style: none;\n    list-style-image: none;\n}\n\n\n/* =============================================================================\n   Embedded content\n   ========================================================================== */\n\n/*\n * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3\n * 2. Improves image quality when scaled in IE7\n *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/\n */\n\nimg {\n    border: 0; /* 1 */\n    -ms-interpolation-mode: bicubic; /* 2 */\n}\n\n/*\n * Corrects overflow displayed oddly in IE9\n */\n\nsvg:not(:root) {\n    overflow: hidden;\n}\n\n\n/* =============================================================================\n   Figures\n   ========================================================================== */\n\n/*\n * Addresses margin not present in IE6/7/8/9, S5, O11\n */\n\nfigure {\n    margin: 0;\n}\n\n\n/* =============================================================================\n   Forms\n   ========================================================================== */\n\n/*\n * Corrects margin displayed oddly in IE6/7\n */\n\nform {\n    margin: 0;\n}\n\n/*\n * Define consistent border, margin, and padding\n */\n\nfieldset {\n    border: 1px solid #c0c0c0;\n    margin: 0 2px;\n    padding: 0.35em 0.625em 0.75em;\n}\n\n/*\n * 1. Corrects color not being inherited in IE6/7/8/9\n * 2. Corrects text not wrapping in FF3 \n * 3. Corrects alignment displayed oddly in IE6/7\n */\n\nlegend {\n    border: 0; /* 1 */\n    padding: 0;\n    white-space: normal; /* 2 */\n    *margin-left: -7px; /* 3 */\n}\n\n/*\n * 1. Corrects font size not being inherited in all browsers\n * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome\n * 3. Improves appearance and consistency in all browsers\n */\n\nbutton,\ninput,\nselect,\ntextarea {\n    font-size: 100%; /* 1 */\n    margin: 0; /* 2 */\n    vertical-align: baseline; /* 3 */\n    *vertical-align: middle; /* 3 */\n}\n\n/*\n * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet\n */\n\nbutton,\ninput {\n    line-height: normal; /* 1 */\n}\n\n/*\n * 1. Improves usability and consistency of cursor style between image-type 'input' and others\n * 2. Corrects inability to style clickable 'input' types in iOS\n * 3. Removes inner spacing in IE7 without affecting normal text inputs\n *    Known issue: inner spacing remains in IE6\n */\n\nbutton,\ninput[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n    cursor: pointer; /* 1 */\n    -webkit-appearance: button; /* 2 */\n    *overflow: visible;  /* 3 */\n}\n\n/*\n * Re-set default cursor for disabled elements\n */\n\nbutton[disabled],\ninput[disabled] {\n    cursor: default;\n}\n\n/*\n * 1. Addresses box sizing set to content-box in IE8/9\n * 2. Removes excess padding in IE8/9\n * 3. Removes excess padding in IE7\n      Known issue: excess padding remains in IE6\n */\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n    box-sizing: border-box; /* 1 */\n    padding: 0; /* 2 */\n    *height: 13px; /* 3 */\n    *width: 13px; /* 3 */\n}\n\n/*\n * 1. Addresses appearance set to searchfield in S5, Chrome\n * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)\n */\n\ninput[type=\"search\"] {\n    -webkit-appearance: textfield; /* 1 */\n    -moz-box-sizing: content-box;\n    -webkit-box-sizing: content-box; /* 2 */\n    box-sizing: content-box;\n}\n\n/*\n * Removes inner padding and search cancel button in S5, Chrome on OS X\n */\n\ninput[type=\"search\"]::-webkit-search-decoration,\ninput[type=\"search\"]::-webkit-search-cancel-button {\n    -webkit-appearance: none;\n}\n\n/*\n * Removes inner padding and border in FF3+\n * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/\n */\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n    border: 0;\n    padding: 0;\n}\n\n/*\n * 1. Removes default vertical scrollbar in IE6/7/8/9\n * 2. Improves readability and alignment in all browsers\n */\n\ntextarea {\n    overflow: auto; /* 1 */\n    vertical-align: top; /* 2 */\n}\n\n\n/* =============================================================================\n   Tables\n   ========================================================================== */\n\n/*\n * Remove most spacing between table cells\n */\n\ntable {\n    border-collapse: collapse;\n    border-spacing: 0;\n}"
  },
  {
    "path": "_sass/rouge-base16-dark.scss",
    "content": "/*\n   generated by rouge http://rouge.jneen.net/\n   original base16 by Chris Kempson (https://github.com/chriskempson/base16)\n*/\n\n.highlight table td { padding: 5px; }\n.highlight table pre { margin: 0; }\n.highlight, .highlight .w {\n  color: #d0d0d0;\n}\n.highlight .err {\n  color: #151515;\n  background-color: #ac4142;\n}\n.highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {\n  color: #888;\n}\n.highlight .cp {\n  color: #f4bf75;\n}\n.highlight .nt {\n  color: #f4bf75;\n}\n.highlight .o, .highlight .ow {\n  color: #d0d0d0;\n}\n.highlight .p, .highlight .pi {\n  color: #d0d0d0;\n}\n.highlight .gi {\n  color: #90a959;\n}\n.highlight .gd {\n  color: #ac4142;\n}\n.highlight .gh {\n  color: #6a9fb5;\n  font-weight: bold;\n}\n.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {\n  color: #aa759f;\n}\n.highlight .kc {\n  color: #d28445;\n}\n.highlight .kt {\n  color: #d28445;\n}\n.highlight .kd {\n  color: #d28445;\n}\n.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {\n  color: #90a959;\n}\n.highlight .sr {\n  color: #75b5aa;\n}\n.highlight .si {\n  color: #8f5536;\n}\n.highlight .se {\n  color: #8f5536;\n}\n.highlight .nn {\n  color: #f4bf75;\n}\n.highlight .nc {\n  color: #f4bf75;\n}\n.highlight .no {\n  color: #f4bf75;\n}\n.highlight .na {\n  color: #6a9fb5;\n}\n.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {\n  color: #90a959;\n}\n.highlight .ss {\n  color: #90a959;\n}\n"
  },
  {
    "path": "another-page.md",
    "content": "---\nlayout: default\n---\n\n## Welcome to another page\n\n_yay_\n\n[back](./)\n"
  },
  {
    "path": "assets/css/style.scss",
    "content": "---\n---\n\n@import 'jekyll-theme-leap-day';\n"
  },
  {
    "path": "assets/js/main.js",
    "content": "var sectionHeight = function() {\n  var total    = $(window).height(),\n      $section = $('section').css('height','auto');\n\n  if ($section.outerHeight(true) < total) {\n    var margin = $section.outerHeight(true) - $section.height();\n    $section.height(total - margin - 20);\n  } else {\n    $section.css('height','auto');\n  }\n}\n\n$(window).resize(sectionHeight);\n\n$(function() {\n  $(\"section h1, section h2, section h3\").each(function(){\n    $(\"nav ul\").append(\"<li class='tag-\" + this.nodeName.toLowerCase() + \"'><a href='#\" + $(this).text().toLowerCase().replace(/ /g, '-').replace(/[^\\w-]+/g,'') + \"'>\" + $(this).text() + \"</a></li>\");\n    $(this).attr(\"id\",$(this).text().toLowerCase().replace(/ /g, '-').replace(/[^\\w-]+/g,''));\n    $(\"nav ul li:first-child a\").parent().addClass(\"active\");\n  });\n\n  $(\"nav ul li\").on(\"click\", \"a\", function(event) {\n    var position = $($(this).attr(\"href\")).offset().top - 190;\n    $(\"html, body\").animate({scrollTop: position}, 400);\n    $(\"nav ul li a\").parent().removeClass(\"active\");\n    $(this).parent().addClass(\"active\");\n    event.preventDefault();\n  });\n\n  sectionHeight();\n\n  $('img').on('load', sectionHeight);\n});\n"
  },
  {
    "path": "docs/CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment include:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.\n\nProject maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at opensource@github.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\n\n[homepage]: http://contributor-covenant.org\n[version]: http://contributor-covenant.org/version/1/4/\n"
  },
  {
    "path": "docs/CONTRIBUTING.md",
    "content": "# Contributing to the Leap Day theme\n\nHi there! We're thrilled that you'd like to contribute to the Leap Day theme. Your help is essential for keeping it great.\n\nthe Leap Day theme is an open source project supported by the efforts of an entire community and built one contribution at a time by users like you. We'd love for you to get involved. Whatever your level of skill or however much time you can give, your contribution is greatly appreciated. There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests, helping other users by commenting on issues, or writing code which can be incorporated into the Leap Day theme itself.\n\nFollowing these guidelines helps to communicate that you respect the time of the developers managing and developing this open source project. In return, they should reciprocate that respect in addressing your issue, assessing changes, and helping you finalize your pull requests.\n\n\n## Looking for support?\n\nWe'd love to help. Check out [the support guidelines](SUPPORT.md).\n\n## How to report a bug\n\nThink you found a bug? Please check [the list of open issues](https://github.com/pages-themes/leap-day/issues) to see if your bug has already been reported. If it hasn't please [submit a new issue](https://github.com/pages-themes/leap-day/issues/new).\n\nHere are a few tips for writing *great* bug reports:\n\n* Describe the specific problem (e.g., \"widget doesn't turn clockwise\" versus \"getting an error\")\n* Include the steps to reproduce the bug, what you expected to happen, and what happened instead\n* Check that you are using the latest version of the project and its dependencies\n* Include what version of the project your using, as well as any relevant dependencies\n* Only include one bug per issue. If you have discovered two bugs, please file two issues\n* Even if you don't know how to fix the bug, including a failing test may help others track it down\n\n**If you find a security vulnerability, do not open an issue. Please email security@github.com instead.**\n\n## How to suggest a feature or enhancement\n\nIf you find yourself wishing for a feature that doesn't exist in the Leap Day theme, you are probably not alone. There are bound to be others out there with similar needs. Many of the features that the Leap Day theme has today have been added because our users saw the need.\n\nFeature requests are welcome. But take a moment to find out whether your idea fits with the scope and goals of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Please provide as much detail and context as possible, including describing the problem you're trying to solve.\n\n[Open an issue](https://github.com/pages-themes/leap-day/issues/new) which describes the feature you would like to see, why you want it, how it should work, etc.\n\n\n\n## Your first contribution\n\nWe'd love for you to contribute to the project. Unsure where to begin contributing to the Leap Day theme? You can start by looking through these \"good first issue\" and \"help wanted\" issues:\n\n* [Good first issues](https://github.com/pages-themes/leap-day/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22) - issues which should only require a few lines of code and a test or two\n* [Help wanted issues](https://github.com/pages-themes/leap-day/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22) - issues which may be a bit more involved, but are specifically seeking community contributions\n\n*p.s. Feel free to ask for help; everyone is a beginner at first* :smiley_cat:\n\n## How to propose changes\n\nHere's a few general guidelines for proposing changes:\n\n* If you are making visual changes, include a screenshot of what the affected element looks like, both before and after.\n* Follow the [Jekyll style guide](https://ben.balter.com/jekyll-style-guide).\n* If you are changing any user-facing functionality, please be sure to update the documentation\n* Each pull request should implement **one** feature or bug fix. If you want to add or fix more than one thing, submit more than one pull request\n* Do not commit changes to files that are irrelevant to your feature or bug fix\n* Don't bump the version number in your pull request (it will be bumped prior to release)\n* Write [a good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)\n\nAt a high level, [the process for proposing changes](https://guides.github.com/introduction/flow/) is:\n\n1. [Fork](https://github.com/pages-themes/leap-day/fork) and clone the project\n2. Configure and install the dependencies: `script/bootstrap`\n3. Make sure the tests pass on your machine: `script/cibuild`\n4. Create a new branch: `git checkout -b my-branch-name`\n5. Make your change, add tests, and make sure the tests still pass\n6. Push to your fork and [submit a pull request](https://github.com/pages-themes/leap-day/compare)\n7. Pat your self on the back and wait for your pull request to be reviewed and merged\n\n**Interesting in submitting your first Pull Request?** It's easy! You can learn how from this *free* series [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github)\n\n## Bootstrapping your local development environment\n\n`script/bootstrap`\n\n## Running tests\n\n`script/cibuild`\n\n## Publishing Gem\nIn order to publish the Gem bump the version in *this file*, commit, create a tag with the new version number, and finally push the commit and tag to the repo.\n\n## Code of conduct\n\nThis project is governed by [the Contributor Covenant Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.\n\n## Additional Resources\n\n* [Contributing to Open Source on GitHub](https://guides.github.com/activities/contributing-to-open-source/)\n* [Using Pull Requests](https://help.github.com/articles/using-pull-requests/)\n* [GitHub Help](https://help.github.com)\n"
  },
  {
    "path": "docs/SUPPORT.md",
    "content": "## Where to get help\n\nIf you think you've found a bug in the Leap Day theme, please [check the existing issues](https://github.com/pages-themes/leap-day/issues), and if no one has reported the problem, [open a new issue](https://github.com/pages-themes/leap-day/issues/new).\n\nIf you have a general question about the theme, how to implement it, or how to customize it for your site you have two options:\n\n1. Search for your query on [`support.github.com`](https://support.github.com/?q=pages+Leap Day+theme), which will also look for similar topics on [`github.community`](https://github.community/search?q=pages+Leap Day+theme)\n2. Ask your question of the Jekyll community on [talk.jekyllrb.com](https://talk.jekyllrb.com/)\n3. [Contact GitHub Support](https://github.com/contact?form%5Bsubject%5D=GitHub%20Pages%20theme%20pages-themes/leap-day)\n"
  },
  {
    "path": "index.md",
    "content": "---\nlayout: default\n---\n\nText can be **bold**, _italic_, or ~~strikethrough~~.\n\n[Link to another page](./another-page.html).\n\nThere should be whitespace between paragraphs.\n\nThere should be whitespace between paragraphs. We recommend including a README, or a file with information about your project.\n\n# Header 1\n\nThis is a normal paragraph following a header. GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere.\n\n## Header 2\n\n> This is a blockquote following a header.\n>\n> When something is important enough, you do it even if the odds are not in your favor.\n\n### Header 3\n\n```js\n// Javascript code with syntax highlighting.\nvar fun = function lang(l) {\n  dateformat.i18n = require('./lang/' + l)\n  return true;\n}\n```\n\n```ruby\n# Ruby code with syntax highlighting\nGitHubPages::Dependencies.gems.each do |gem, version|\n  s.add_dependency(gem, \"= #{version}\")\nend\n```\n\n#### Header 4\n\n*   This is an unordered list following a header.\n*   This is an unordered list following a header.\n*   This is an unordered list following a header.\n\n##### Header 5\n\n1.  This is an ordered list following a header.\n2.  This is an ordered list following a header.\n3.  This is an ordered list following a header.\n\n###### Header 6\n\n| head1        | head two          | three |\n|:-------------|:------------------|:------|\n| ok           | good swedish fish | nice  |\n| out of stock | good and plenty   | nice  |\n| ok           | good `oreos`      | hmm   |\n| ok           | good `zoute` drop | yumm  |\n\n### There's a horizontal rule below this.\n\n* * *\n\n### Here is an unordered list:\n\n*   Item foo\n*   Item bar\n*   Item baz\n*   Item zip\n\n### And an ordered list:\n\n1.  Item one\n1.  Item two\n1.  Item three\n1.  Item four\n\n### And a nested list:\n\n- level 1 item\n  - level 2 item\n  - level 2 item\n    - level 3 item\n    - level 3 item\n- level 1 item\n  - level 2 item\n  - level 2 item\n  - level 2 item\n- level 1 item\n  - level 2 item\n  - level 2 item\n- level 1 item\n\n### Small image\n\n![Octocat](https://github.githubassets.com/images/icons/emoji/octocat.png)\n\n### Large image\n\n![Branching](https://guides.github.com/activities/hello-world/branching.png)\n\n\n### Definition lists can be used with HTML syntax.\n\n<dl>\n<dt>Name</dt>\n<dd>Godzilla</dd>\n<dt>Born</dt>\n<dd>1952</dd>\n<dt>Birthplace</dt>\n<dd>Japan</dd>\n<dt>Color</dt>\n<dd>Green</dd>\n</dl>\n\n```\nLong, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.\n```\n\n```\nThe final element.\n```\n"
  },
  {
    "path": "jekyll-theme-leap-day.gemspec",
    "content": "# frozen_string_literal: true\n\nGem::Specification.new do |s|\n  s.name          = \"jekyll-theme-leap-day\"\n  s.version       = \"0.2.0\"\n  s.license       = \"CC0-1.0\"\n  s.authors       = [\"Matt Graham\", \"GitHub, Inc.\"]\n  s.email         = [\"opensource+jekyll-theme-leap-day@github.com\"]\n  s.homepage      = \"https://github.com/pages-themes/leap-day\"\n  s.summary       = \"Leap Day is a Jekyll theme for GitHub Pages\"\n\n  s.files         = `git ls-files -z`.split(\"\\x0\").select do |f|\n    f.match(%r{^((_includes|_layouts|_sass|assets)/|(LICENSE|README)((\\.(txt|md|markdown)|$)))}i)\n  end\n\n  s.required_ruby_version = \">= 2.4.0\"\n\n  s.platform = Gem::Platform::RUBY\n  s.add_runtime_dependency \"jekyll\", \"> 3.5\", \"< 5.0\"\n  s.add_runtime_dependency \"jekyll-seo-tag\", \"~> 2.0\"\n  s.add_development_dependency \"html-proofer\", \"~> 3.0\"\n  s.add_development_dependency \"rubocop-github\", \"~> 0.16\"\n  s.add_development_dependency \"w3c_validators\", \"~> 1.3\"\nend\n"
  },
  {
    "path": "script/bootstrap",
    "content": "#!/bin/sh\n\nset -e\n\ngem install bundler\nbundle install\n"
  },
  {
    "path": "script/cibuild",
    "content": "#!/bin/sh\n\nset -e\n\nbundle exec jekyll build\nbundle exec htmlproofer ./_site --check-html --check-sri --typhoeus-config='{\"headers\":{\"User-Agent\":\"Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/81.0\"}}'\nbundle exec rubocop -D --config .rubocop.yml\nbundle exec script/validate-html\ngem build jekyll-theme-leap-day.gemspec\n"
  },
  {
    "path": "script/release",
    "content": "#!/bin/sh\n# Tag and push a release.\n\nset -e\n\n# Make sure we're in the project root.\n\ncd $(dirname \"$0\")/..\n\n# Make sure the darn thing works\n\nbundle update\n\n# Build a new gem archive.\n\nrm -rf jekyll-theme-leap-day-*.gem\ngem build -q jekyll-theme-leap-day.gemspec\n\n# Make sure we're on the master branch.\n\n(git branch | grep -q 'master') || {\n  echo \"Only release from the master branch.\"\n  exit 1\n}\n\n# Figure out what version we're releasing.\n\ntag=v`ls jekyll-theme-leap-day-*.gem | sed 's/^jekyll-theme-leap-day-\\(.*\\)\\.gem$/\\1/'`\n\n# Make sure we haven't released this version before.\n\ngit fetch -t origin\n\n(git tag -l | grep -q \"$tag\") && {\n  echo \"Whoops, there's already a '${tag}' tag.\"\n  exit 1\n}\n\n# Tag it and bag it.\n\ngem push jekyll-theme-leap-day-*.gem && git tag \"$tag\" &&\n  git push origin master && git push origin \"$tag\"\n"
  },
  {
    "path": "script/validate-html",
    "content": "#!/usr/bin/env ruby\n# frozen_string_literal: true\n\nrequire \"w3c_validators\"\n\ndef validator(file)\n  extension = File.extname(file)\n  if extension == \".html\"\n    W3CValidators::NuValidator.new\n  elsif extension == \".css\"\n    W3CValidators::CSSValidator.new\n  end\nend\n\ndef validate(file)\n  puts \"Checking #{file}...\"\n\n  path = File.expand_path \"../_site/#{file}\", __dir__\n  results = validator(file).validate_file(path)\n\n  return puts \"Valid!\" if results.errors.empty?\n\n  results.errors.each { |err| puts err }\n  exit 1\nend\n\nvalidate \"index.html\"\nvalidate File.join \"assets\", \"css\", \"style.css\"\n"
  }
]