jekyll-docs 3.6.0 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/jekyll.rb +195 -0
- data/lib/jekyll/cleaner.rb +110 -0
- data/lib/jekyll/collection.rb +230 -0
- data/lib/jekyll/command.rb +78 -0
- data/lib/jekyll/commands/build.rb +102 -0
- data/lib/jekyll/commands/clean.rb +43 -0
- data/lib/jekyll/commands/doctor.rb +153 -0
- data/lib/jekyll/commands/help.rb +34 -0
- data/lib/jekyll/commands/new.rb +156 -0
- data/lib/jekyll/commands/new_theme.rb +40 -0
- data/lib/jekyll/commands/serve.rb +245 -0
- data/lib/jekyll/commands/serve/servlet.rb +62 -0
- data/lib/jekyll/configuration.rb +410 -0
- data/lib/jekyll/converter.rb +54 -0
- data/lib/jekyll/converters/identity.rb +23 -0
- data/lib/jekyll/converters/markdown.rb +104 -0
- data/lib/jekyll/converters/markdown/kramdown_parser.rb +123 -0
- data/lib/jekyll/converters/markdown/rdiscount_parser.rb +35 -0
- data/lib/jekyll/converters/markdown/redcarpet_parser.rb +108 -0
- data/lib/jekyll/converters/smartypants.rb +36 -0
- data/lib/jekyll/convertible.rb +251 -0
- data/lib/jekyll/deprecator.rb +52 -0
- data/lib/jekyll/document.rb +507 -0
- data/lib/jekyll/drops/collection_drop.rb +22 -0
- data/lib/jekyll/drops/document_drop.rb +69 -0
- data/lib/jekyll/drops/drop.rb +214 -0
- data/lib/jekyll/drops/excerpt_drop.rb +15 -0
- data/lib/jekyll/drops/jekyll_drop.rb +33 -0
- data/lib/jekyll/drops/site_drop.rb +47 -0
- data/lib/jekyll/drops/static_file_drop.rb +13 -0
- data/lib/jekyll/drops/unified_payload_drop.rb +25 -0
- data/lib/jekyll/drops/url_drop.rb +88 -0
- data/lib/jekyll/entry_filter.rb +123 -0
- data/lib/jekyll/errors.rb +20 -0
- data/lib/jekyll/excerpt.rb +126 -0
- data/lib/jekyll/external.rb +74 -0
- data/lib/jekyll/filters.rb +430 -0
- data/lib/jekyll/filters/grouping_filters.rb +65 -0
- data/lib/jekyll/filters/url_filters.rb +60 -0
- data/lib/jekyll/frontmatter_defaults.rb +197 -0
- data/lib/jekyll/generator.rb +5 -0
- data/lib/jekyll/hooks.rb +104 -0
- data/lib/jekyll/layout.rb +62 -0
- data/lib/jekyll/liquid_extensions.rb +24 -0
- data/lib/jekyll/liquid_renderer.rb +49 -0
- data/lib/jekyll/liquid_renderer/file.rb +56 -0
- data/lib/jekyll/liquid_renderer/table.rb +96 -0
- data/lib/jekyll/log_adapter.rb +147 -0
- data/lib/jekyll/mime.types +825 -0
- data/lib/jekyll/page.rb +187 -0
- data/lib/jekyll/plugin.rb +98 -0
- data/lib/jekyll/plugin_manager.rb +113 -0
- data/lib/jekyll/publisher.rb +23 -0
- data/lib/jekyll/reader.rb +134 -0
- data/lib/jekyll/readers/collection_reader.rb +22 -0
- data/lib/jekyll/readers/data_reader.rb +77 -0
- data/lib/jekyll/readers/layout_reader.rb +71 -0
- data/lib/jekyll/readers/page_reader.rb +25 -0
- data/lib/jekyll/readers/post_reader.rb +72 -0
- data/lib/jekyll/readers/static_file_reader.rb +25 -0
- data/lib/jekyll/readers/theme_assets_reader.rb +49 -0
- data/lib/jekyll/regenerator.rb +201 -0
- data/lib/jekyll/related_posts.rb +52 -0
- data/lib/jekyll/renderer.rb +269 -0
- data/lib/jekyll/site.rb +471 -0
- data/lib/jekyll/static_file.rb +162 -0
- data/lib/jekyll/stevenson.rb +61 -0
- data/lib/jekyll/tags/highlight.rb +141 -0
- data/lib/jekyll/tags/include.rb +215 -0
- data/lib/jekyll/tags/link.rb +37 -0
- data/lib/jekyll/tags/post_url.rb +103 -0
- data/lib/jekyll/theme.rb +68 -0
- data/lib/jekyll/theme_builder.rb +119 -0
- data/lib/jekyll/url.rb +161 -0
- data/lib/jekyll/utils.rb +337 -0
- data/lib/jekyll/utils/ansi.rb +59 -0
- data/lib/jekyll/utils/exec.rb +27 -0
- data/lib/jekyll/utils/platforms.rb +82 -0
- data/lib/jekyll/utils/rouge.rb +21 -0
- data/lib/jekyll/utils/win_tz.rb +75 -0
- data/lib/jekyll/version.rb +5 -0
- data/lib/site_template/404.html +24 -0
- data/lib/site_template/_config.yml +43 -0
- data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +25 -0
- data/lib/site_template/about.md +18 -0
- data/lib/site_template/index.md +6 -0
- data/lib/theme_template/CODE_OF_CONDUCT.md.erb +74 -0
- data/lib/theme_template/Gemfile +4 -0
- data/lib/theme_template/LICENSE.txt.erb +21 -0
- data/lib/theme_template/README.md.erb +52 -0
- data/lib/theme_template/_layouts/default.html +1 -0
- data/lib/theme_template/_layouts/page.html +5 -0
- data/lib/theme_template/_layouts/post.html +5 -0
- data/lib/theme_template/example/_config.yml.erb +1 -0
- data/lib/theme_template/example/_post.md +12 -0
- data/lib/theme_template/example/index.html +14 -0
- data/lib/theme_template/example/style.scss +7 -0
- data/lib/theme_template/gitignore.erb +5 -0
- data/lib/theme_template/theme.gemspec.erb +19 -0
- metadata +103 -156
- data/lib/jekyll-docs.rb +0 -31
- data/site/404.html +0 -153
- data/site/CNAME +0 -1
- data/site/community/index.html +0 -299
- data/site/conduct/index.html +0 -10
- data/site/css/screen.css +0 -1
- data/site/docs/assets/index.html +0 -724
- data/site/docs/code_of_conduct/index.html +0 -730
- data/site/docs/collections/index.html +0 -1097
- data/site/docs/conduct/index.html +0 -744
- data/site/docs/configuration/index.html +0 -1403
- data/site/docs/continuous-integration/buddyworks/index.html +0 -726
- data/site/docs/continuous-integration/circleci/index.html +0 -757
- data/site/docs/continuous-integration/index.html +0 -681
- data/site/docs/continuous-integration/travis-ci/index.html +0 -891
- data/site/docs/contributing/index.html +0 -863
- data/site/docs/datafiles/index.html +0 -780
- data/site/docs/deployment-methods/index.html +0 -875
- data/site/docs/drafts/index.html +0 -636
- data/site/docs/extras/index.html +0 -689
- data/site/docs/frontmatter/index.html +0 -807
- data/site/docs/github-pages/index.html +0 -819
- data/site/docs/history/index.html +0 -3955
- data/site/docs/home/index.html +0 -644
- data/site/docs/includes/index.html +0 -800
- data/site/docs/index.html +0 -10
- data/site/docs/installation/index.html +0 -732
- data/site/docs/maintaining/affinity-team-captain/index.html +0 -706
- data/site/docs/maintaining/avoiding-burnout/index.html +0 -709
- data/site/docs/maintaining/becoming-a-maintainer/index.html +0 -717
- data/site/docs/maintaining/index.html +0 -713
- data/site/docs/maintaining/merging-a-pull-request/index.html +0 -747
- data/site/docs/maintaining/reviewing-a-pull-request/index.html +0 -725
- data/site/docs/maintaining/special-labels/index.html +0 -705
- data/site/docs/maintaining/triaging-an-issue/index.html +0 -735
- data/site/docs/migrations/index.html +0 -647
- data/site/docs/pages/index.html +0 -695
- data/site/docs/pagination/index.html +0 -870
- data/site/docs/permalinks/index.html +0 -1027
- data/site/docs/plugins/index.html +0 -1800
- data/site/docs/posts/index.html +0 -858
- data/site/docs/quickstart/index.html +0 -650
- data/site/docs/resources/index.html +0 -769
- data/site/docs/sites/index.html +0 -702
- data/site/docs/static-files/index.html +0 -720
- data/site/docs/structure/index.html +0 -822
- data/site/docs/templates/index.html +0 -1208
- data/site/docs/themes/index.html +0 -935
- data/site/docs/troubleshooting/index.html +0 -893
- data/site/docs/upgrading/0-to-2/index.html +0 -826
- data/site/docs/upgrading/2-to-3/index.html +0 -824
- data/site/docs/upgrading/index.html +0 -693
- data/site/docs/usage/index.html +0 -705
- data/site/docs/variables/index.html +0 -1048
- data/site/docs/windows/index.html +0 -799
- data/site/favicon.ico +0 -0
- data/site/feed.xml +0 -372
- data/site/fonts/FontAwesome.eot +0 -0
- data/site/fonts/FontAwesome.svg +0 -12
- data/site/fonts/FontAwesome.ttf +0 -0
- data/site/fonts/FontAwesome.woff +0 -0
- data/site/github.html +0 -10
- data/site/help/index.html +0 -244
- data/site/icomoon-selection.json +0 -96
- data/site/img/article-footer.png +0 -0
- data/site/img/footer-arrow.png +0 -0
- data/site/img/footer-logo.png +0 -0
- data/site/img/jekyll-sticker.jpg +0 -0
- data/site/img/jekylllayoutconcept.png +0 -0
- data/site/img/logo-2x.png +0 -0
- data/site/img/logo-rss.png +0 -0
- data/site/img/octojekyll.png +0 -0
- data/site/index.html +0 -267
- data/site/issues.html +0 -10
- data/site/js/html5shiv.min.js +0 -4
- data/site/js/respond.min.js +0 -5
- data/site/latest_version.txt +0 -1
- data/site/news/2013/05/05/jekyll-1-0-0-released/index.html +0 -570
- data/site/news/2013/05/08/jekyll-1-0-1-released/index.html +0 -570
- data/site/news/2013/05/12/jekyll-1-0-2-released/index.html +0 -571
- data/site/news/2013/06/07/jekyll-1-0-3-released/index.html +0 -568
- data/site/news/2013/07/14/jekyll-1-1-0-released/index.html +0 -570
- data/site/news/2013/07/24/jekyll-1-1-1-released/index.html +0 -569
- data/site/news/2013/07/25/jekyll-1-0-4-released/index.html +0 -565
- data/site/news/2013/07/25/jekyll-1-1-2-released/index.html +0 -565
- data/site/news/2013/09/06/jekyll-1-2-0-released/index.html +0 -572
- data/site/news/2013/09/14/jekyll-1-2-1-released/index.html +0 -566
- data/site/news/2013/10/28/jekyll-1-3-0-rc1-released/index.html +0 -564
- data/site/news/2013/11/04/jekyll-1-3-0-released/index.html +0 -599
- data/site/news/2013/11/26/jekyll-1-3-1-released/index.html +0 -568
- data/site/news/2013/12/07/jekyll-1-4-0-released/index.html +0 -583
- data/site/news/2013/12/09/jekyll-1-4-1-released/index.html +0 -565
- data/site/news/2013/12/16/jekyll-1-4-2-released/index.html +0 -564
- data/site/news/2014/01/13/jekyll-1-4-3-released/index.html +0 -573
- data/site/news/2014/03/24/jekyll-1-5-0-released/index.html +0 -564
- data/site/news/2014/03/27/jekyll-1-5-1-released/index.html +0 -569
- data/site/news/2014/05/06/jekyll-turns-2-0-0/index.html +0 -585
- data/site/news/2014/05/08/jekyll-2-0-3-released/index.html +0 -565
- data/site/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/index.html +0 -567
- data/site/news/2014/06/28/jekyll-turns-21-i-mean-2-1-0/index.html +0 -582
- data/site/news/2014/07/01/jekyll-2-1-1-released/index.html +0 -579
- data/site/news/2014/07/29/jekyll-2-2-0-released/index.html +0 -568
- data/site/news/2014/08/10/jekyll-2-3-0-released/index.html +0 -588
- data/site/news/2014/09/09/jekyll-2-4-0-released/index.html +0 -574
- data/site/news/2014/11/05/jekylls-midlife-crisis-jekyll-turns-2-5-0/index.html +0 -597
- data/site/news/2014/11/09/jekyll-2-5-1-released/index.html +0 -575
- data/site/news/2014/11/12/jekyll-2-5-2-released/index.html +0 -565
- data/site/news/2014/12/17/alfredxing-welcome-to-jekyll-core/index.html +0 -572
- data/site/news/2014/12/22/jekyll-2-5-3-released/index.html +0 -567
- data/site/news/2015/01/20/jekyll-meet-and-greet/index.html +0 -568
- data/site/news/2015/01/24/jekyll-3-0-0-beta1-released/index.html +0 -588
- data/site/news/2015/02/26/introducing-jekyll-talk/index.html +0 -563
- data/site/news/2015/10/26/jekyll-3-0-released/index.html +0 -592
- data/site/news/2015/11/17/jekyll-3-0-1-released/index.html +0 -576
- data/site/news/2016/01/20/jekyll-3-0-2-released/index.html +0 -566
- data/site/news/2016/01/24/jekyll-3-1-0-released/index.html +0 -599
- data/site/news/2016/01/28/jekyll-3-1-1-released/index.html +0 -583
- data/site/news/2016/02/08/jekyll-3-0-3-released/index.html +0 -578
- data/site/news/2016/02/19/jekyll-3-1-2-released/index.html +0 -569
- data/site/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/index.html +0 -565
- data/site/news/2016/04/19/jekyll-3-0-4-released/index.html +0 -571
- data/site/news/2016/04/19/jekyll-3-1-3-released/index.html +0 -566
- data/site/news/2016/04/26/jekyll-3-0-5-released/index.html +0 -572
- data/site/news/2016/05/18/jekyll-3-1-4-released/index.html +0 -576
- data/site/news/2016/05/18/jekyll-3-1-5-released/index.html +0 -564
- data/site/news/2016/05/19/jekyll-3-1-6-released/index.html +0 -566
- data/site/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/index.html +0 -567
- data/site/news/2016/07/26/jekyll-3-2-0-released/index.html +0 -676
- data/site/news/2016/08/02/jekyll-3-2-1-released/index.html +0 -571
- data/site/news/2016/08/24/jekyll-admin-initial-release/index.html +0 -566
- data/site/news/2016/10/06/jekyll-3-3-is-here/index.html +0 -645
- data/site/news/2016/11/14/jekyll-3-3-1-released/index.html +0 -569
- data/site/news/2017/01/18/jekyll-3-4-0-released/index.html +0 -592
- data/site/news/2017/03/02/jekyll-3-4-1-released/index.html +0 -649
- data/site/news/2017/03/09/jekyll-3-4-2-released/index.html +0 -598
- data/site/news/2017/03/21/jekyll-3-4-3-released/index.html +0 -594
- data/site/news/2017/06/15/jekyll-3-5-0-released/index.html +0 -589
- data/site/news/2017/07/17/jekyll-3-5-1-released/index.html +0 -569
- data/site/news/2017/08/12/jekyll-3-5-2-released/index.html +0 -573
- data/site/news/2017/09/21/jekyll-3-6-0-released/index.html +0 -565
- data/site/news/index.html +0 -3609
- data/site/news/releases/index.html +0 -3344
- data/site/philosophy.html +0 -46
- data/site/readme.md +0 -23
- data/site/robots.txt +0 -1
- data/site/sitemap.xml +0 -485
- data/site/tutorials/convert-site-to-jekyll/index.html +0 -793
- data/site/tutorials/custom-404-page/index.html +0 -358
- data/site/tutorials/home/index.html +0 -323
- data/site/tutorials/index.html +0 -10
- data/site/tutorials/navigation/index.html +0 -872
- data/site/tutorials/orderofinterpretation/index.html +0 -441
data/site/CNAME
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
jekyllrb.com
|
data/site/community/index.html
DELETED
|
@@ -1,299 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE HTML>
|
|
2
|
-
<html lang="en-US">
|
|
3
|
-
<head>
|
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
5
|
-
<meta charset="UTF-8">
|
|
6
|
-
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
7
|
-
<meta name="generator" content="Jekyll v3.6.0">
|
|
8
|
-
<link type="application/atom+xml" rel="alternate" href="https://jekyllrb.com/feed.xml" title="Jekyll • Simple, blog-aware, static sites">
|
|
9
|
-
<link rel="alternate" type="application/atom+xml" title="Recent commits to Jekyll’s master branch" href="https://github.com/jekyll/jekyll/commits/master.atom">
|
|
10
|
-
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
|
|
11
|
-
<link rel="stylesheet" href="/css/screen.css">
|
|
12
|
-
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
13
|
-
<!-- Begin Jekyll SEO tag v2.3.0 -->
|
|
14
|
-
<title>Community | Jekyll • Simple, blog-aware, static sites</title>
|
|
15
|
-
<meta property="og:title" content="Community">
|
|
16
|
-
<meta property="og:locale" content="en_US">
|
|
17
|
-
<meta name="description" content="Transform your plain text into static websites and blogs">
|
|
18
|
-
<meta property="og:description" content="Transform your plain text into static websites and blogs">
|
|
19
|
-
<link rel="canonical" href="https://jekyllrb.com/community/">
|
|
20
|
-
<meta property="og:url" content="https://jekyllrb.com/community/">
|
|
21
|
-
<meta property="og:site_name" content="Jekyll • Simple, blog-aware, static sites">
|
|
22
|
-
<meta name="twitter:card" content="summary">
|
|
23
|
-
<meta name="twitter:site" content="@jekyllrb">
|
|
24
|
-
<meta name="google-site-verification" content="onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY">
|
|
25
|
-
<script type="application/ld+json">
|
|
26
|
-
{"name":null,"description":"Transform your plain text into static websites and blogs","url":"https://jekyllrb.com/community/","headline":"Community","dateModified":null,"datePublished":null,"sameAs":null,"@type":"WebPage","author":null,"image":null,"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://jekyllrb.com/img/logo-2x.png"}},"mainEntityOfPage":null,"@context":"http://schema.org"}</script>
|
|
27
|
-
<!-- End Jekyll SEO tag -->
|
|
28
|
-
|
|
29
|
-
<!--[if lt IE 9]>
|
|
30
|
-
<script src="/js/html5shiv.min.js"></script>
|
|
31
|
-
<script src="/js/respond.min.js"></script>
|
|
32
|
-
<![endif]-->
|
|
33
|
-
</head>
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
<body class="wrap">
|
|
37
|
-
<header>
|
|
38
|
-
<nav class="mobile-nav show-on-mobiles">
|
|
39
|
-
<ul>
|
|
40
|
-
<li class="">
|
|
41
|
-
<a href="/">Home</a>
|
|
42
|
-
</li>
|
|
43
|
-
<li class="">
|
|
44
|
-
<a href="/docs/home/">Docs</a>
|
|
45
|
-
</li>
|
|
46
|
-
<li class="">
|
|
47
|
-
<a href="/news/">News</a>
|
|
48
|
-
</li>
|
|
49
|
-
<li class="current">
|
|
50
|
-
<a href="/community/">Community</a>
|
|
51
|
-
</li>
|
|
52
|
-
<li class="">
|
|
53
|
-
<a href="/help/">Help</a>
|
|
54
|
-
</li>
|
|
55
|
-
<li>
|
|
56
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
|
57
|
-
</li>
|
|
58
|
-
</ul>
|
|
59
|
-
|
|
60
|
-
</nav>
|
|
61
|
-
<div class="grid">
|
|
62
|
-
<div class="unit one-third center-on-mobiles">
|
|
63
|
-
<h1>
|
|
64
|
-
<a href="/">
|
|
65
|
-
<span class="sr-only">Jekyll</span>
|
|
66
|
-
<img src="/img/logo-2x.png" width="249" height="115" alt="Jekyll Logo">
|
|
67
|
-
</a>
|
|
68
|
-
</h1>
|
|
69
|
-
</div>
|
|
70
|
-
<nav class="main-nav unit two-thirds hide-on-mobiles">
|
|
71
|
-
<ul>
|
|
72
|
-
<li class="">
|
|
73
|
-
<a href="/">Home</a>
|
|
74
|
-
</li>
|
|
75
|
-
<li class="">
|
|
76
|
-
<a href="/docs/home/">Docs</a>
|
|
77
|
-
</li>
|
|
78
|
-
<li class="">
|
|
79
|
-
<a href="/news/">News</a>
|
|
80
|
-
</li>
|
|
81
|
-
<li class="current">
|
|
82
|
-
<a href="/community/">Community</a>
|
|
83
|
-
</li>
|
|
84
|
-
<li class="">
|
|
85
|
-
<a href="/help/">Help</a>
|
|
86
|
-
</li>
|
|
87
|
-
<li>
|
|
88
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
|
89
|
-
</li>
|
|
90
|
-
</ul>
|
|
91
|
-
|
|
92
|
-
</nav>
|
|
93
|
-
</div>
|
|
94
|
-
</header>
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
<section class="standalone">
|
|
98
|
-
<div class="grid">
|
|
99
|
-
|
|
100
|
-
<div class="unit whole">
|
|
101
|
-
<article>
|
|
102
|
-
<h1>Community</h1>
|
|
103
|
-
<p><a href="http://jekyllconf.com">JekyllConf</a> is a free, online conference for all things Jekyll hosted by <a href="http://cloudcannon.com">CloudCannon</a>. Each year members of the Jekyll community speak about interesting use cases, tricks they’ve learned, or meta Jekyll topics.</p>
|
|
104
|
-
|
|
105
|
-
<h2 id="featured">Featured</h2>
|
|
106
|
-
|
|
107
|
-
<p>Using Jekyll for Rapid CSS Testing - <a href="https://twitter.com/ireaderinokun">Ire Aderinokun</a></p>
|
|
108
|
-
<div class="videoWrapper">
|
|
109
|
-
<iframe width="420" height="315" src="https://www.youtube.com/embed/PRKV5IGKF2c" frameborder="0" allowfullscreen=""></iframe>
|
|
110
|
-
</div>
|
|
111
|
-
|
|
112
|
-
<h2 id="2016">2016</h2>
|
|
113
|
-
|
|
114
|
-
<ul>
|
|
115
|
-
<li>
|
|
116
|
-
<p><a href="https://youtu.be/Rsc0Mmp1qc8">Elasticsearch for Jekyll</a> - <a href="https://twitter.com/allizad">Allison Zadrozny</a></p>
|
|
117
|
-
</li>
|
|
118
|
-
<li>
|
|
119
|
-
<p><a href="https://youtu.be/HR12JiUI2Zc">Jekyll for Technical Documentation</a> - <a href="https://twitter.com/amybeukenex">Amy Johnston</a></p>
|
|
120
|
-
</li>
|
|
121
|
-
<li>
|
|
122
|
-
<p><a href="https://youtu.be/A1nTuNjoNbg">Real World Content Strategy with Jekyll</a> - <a href="https://twitter.com/budparr">Bud Parr</a></p>
|
|
123
|
-
</li>
|
|
124
|
-
<li>
|
|
125
|
-
<p><a href="https://youtu.be/skb_XWABEDc">Building client-editable Jekyll sites</a> - <a href="https://twitter.com/gphillips_nz">George Phillips</a></p>
|
|
126
|
-
</li>
|
|
127
|
-
<li>
|
|
128
|
-
<p><a href="https://youtu.be/PRKV5IGKF2c">Using Jekyll for Rapid CSS Testing</a> - <a href="https://twitter.com/ireaderinokun">Ire Aderinokun</a></p>
|
|
129
|
-
</li>
|
|
130
|
-
<li>
|
|
131
|
-
<p><a href="https://youtu.be/vDeKPs6xpOM">Stack Overflow on Jekyll</a> - <a href="https://twitter.com/JonHMChan">Jon Chan</a></p>
|
|
132
|
-
</li>
|
|
133
|
-
<li>
|
|
134
|
-
<p><a href="https://youtu.be/SOMonG8Iqak">Jekyll on AWS</a> - <a href="https://twitter.com/jmfaerman">Julio Faerman</a></p>
|
|
135
|
-
</li>
|
|
136
|
-
<li>
|
|
137
|
-
<p><a href="https://youtu.be/s84wFRD8vfE">Unconventional use cases for Jekyll</a> - <a href="https://twitter.com/katydecorah">Katy DeCorah</a></p>
|
|
138
|
-
</li>
|
|
139
|
-
<li>
|
|
140
|
-
<p><a href="https://youtu.be/Y4qwpN40Dvg">Doing a lot with a little</a> - <a href="https://twitter.com/DavidDarnes">David Darnes</a></p>
|
|
141
|
-
</li>
|
|
142
|
-
<li>
|
|
143
|
-
<p><a href="https://youtu.be/TteAQq25_Ns">Designing fast websites with Jekyll</a> - <a href="https://twitter.com/hunvreus">Ronan Berder</a></p>
|
|
144
|
-
</li>
|
|
145
|
-
<li>
|
|
146
|
-
<p><a href="https://youtu.be/wMlPlKCZfEk">Continuous deployment of Jekyll sites powered by Docker</a> - <a href="https://twitter.com/davidvlsea">David Von Lehman</a></p>
|
|
147
|
-
</li>
|
|
148
|
-
<li>
|
|
149
|
-
<p><a href="https://youtu.be/4XxYQ7efk0E">Building our agency site with Jekyll</a> - <a href="https://twitter.com/d_jones">David Jones</a></p>
|
|
150
|
-
</li>
|
|
151
|
-
<li>
|
|
152
|
-
<p><a href="https://youtu.be/qSd3pXQaPsE">Jekyll For Every Case</a> - <a href="https://twitter.com/scotthewitt">Scott Hewitt</a></p>
|
|
153
|
-
</li>
|
|
154
|
-
<li>
|
|
155
|
-
<p><a href="https://youtu.be/ivMML1J4ABY">Algolia search on Jekyll sites</a> - <a href="https://twitter.com/pixelastic">Tim Carry</a></p>
|
|
156
|
-
</li>
|
|
157
|
-
<li>
|
|
158
|
-
<p><a href="https://youtu.be/DtNMjuv6Rbo">Building a living brand guide with Jekyll and Hologram</a> - <a href="https://twitter.com/nilsborchers">Nils Borchers</a></p>
|
|
159
|
-
</li>
|
|
160
|
-
<li>
|
|
161
|
-
<p><a href="https://youtu.be/rJ5EhVmTR7I">Learning resources for the Jekyll community</a> - <a href="https://twitter.com/mikeneumegen">Mike Neumegen</a></p>
|
|
162
|
-
</li>
|
|
163
|
-
<li>
|
|
164
|
-
<p><a href="https://youtu.be/BIf6oNpGl74">Responsive srcset images with imgix</a> - <a href="https://twitter.com/olivermakes">Oliver Pattison</a></p>
|
|
165
|
-
</li>
|
|
166
|
-
<li>
|
|
167
|
-
<p><a href="https://youtu.be/F4bJRLEvXIc">Jekyll, Your Website’s Baseplate</a> - <a href="https://twitter.com/michaelsoolee">Michael Lee</a></p>
|
|
168
|
-
</li>
|
|
169
|
-
<li>
|
|
170
|
-
<p><a href="https://youtu.be/BRB5DgAE5nM">Deploy Jekyll Like A Boss</a> - <a href="https://twitter.com/NetOpWibby">Paul Webb</a></p>
|
|
171
|
-
</li>
|
|
172
|
-
<li>
|
|
173
|
-
<p><a href="https://youtu.be/nq1AUB72GCQ">Overcoming challenges in using Jekyll for documentation projects</a> - <a href="https://twitter.com/tomjohnson">Tom Johnson</a></p>
|
|
174
|
-
</li>
|
|
175
|
-
</ul>
|
|
176
|
-
|
|
177
|
-
<h2 id="2015">2015</h2>
|
|
178
|
-
|
|
179
|
-
<ul>
|
|
180
|
-
<li>
|
|
181
|
-
<p><a href="https://youtu.be/Z-37y1qaoxc">GitHub Pages behind the scenes</a> - <a href="https://twitter.com/BenBalter">Ben Balter</a></p>
|
|
182
|
-
</li>
|
|
183
|
-
<li>
|
|
184
|
-
<p><a href="https://youtu.be/KS6e4XxY2H4">What the heck is Octopress and why should I care?</a> - <a href="https://twitter.com/imathis">Brandon Mathis</a></p>
|
|
185
|
-
</li>
|
|
186
|
-
<li>
|
|
187
|
-
<p><a href="https://youtu.be/vT7DhK5zbv0">Comparing Jekyll with the Competition</a> - <a href="https://twitter.com/remotesynth">Brian Rinaldi</a></p>
|
|
188
|
-
</li>
|
|
189
|
-
<li>
|
|
190
|
-
<p><a href="https://youtu.be/ia8vsuiXiL0">Meet the Obama Campaign’s $250 Million Fundraising Platform</a> - <a href="https://twitter.com/kylerush">Kyle Rush</a></p>
|
|
191
|
-
</li>
|
|
192
|
-
<li>
|
|
193
|
-
<p><a href="https://youtu.be/8zSHG6XU_xY">Building Living Style Guides with Jekyll</a> - <a href="https://twitter.com/mjovel">Michael Jovel</a></p>
|
|
194
|
-
</li>
|
|
195
|
-
<li>
|
|
196
|
-
<p><a href="https://youtu.be/NuChR_YdjrI">A CMS for Jekyll</a> - <a href="https://twitter.com/mikeneumegen">Mike Neumegen</a></p>
|
|
197
|
-
</li>
|
|
198
|
-
<li>
|
|
199
|
-
<p><a href="https://youtu.be/y2SbOIQ5nSA">Jekyll 3 and Beyond</a> - <a href="https://twitter.com/parkr">Parker Moore</a></p>
|
|
200
|
-
</li>
|
|
201
|
-
<li>
|
|
202
|
-
<p><a href="https://youtu.be/BMve1OCKj6M">Some crazy ideas I have for the future of static sites</a> - <a href="https://twitter.com/mojombo">Tom Preston-Werner</a></p>
|
|
203
|
-
</li>
|
|
204
|
-
</ul>
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
</article>
|
|
208
|
-
</div>
|
|
209
|
-
|
|
210
|
-
<div class="clear"></div>
|
|
211
|
-
|
|
212
|
-
</div>
|
|
213
|
-
</section>
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
<footer>
|
|
217
|
-
<div class="grid">
|
|
218
|
-
<div class="unit one-third center-on-mobiles">
|
|
219
|
-
<p>The contents of this website are <br>© 2017 under the terms of the <a href="https://github.com/jekyll/jekyll/blob/master/LICENSE">MIT License</a>.</p>
|
|
220
|
-
</div>
|
|
221
|
-
<div class="unit two-thirds align-right center-on-mobiles">
|
|
222
|
-
<p>
|
|
223
|
-
Proudly hosted by
|
|
224
|
-
<a href="https://github.com">
|
|
225
|
-
<img src="/img/footer-logo.png" width="100" height="30" alt="GitHub • Social coding">
|
|
226
|
-
</a>
|
|
227
|
-
</p>
|
|
228
|
-
</div>
|
|
229
|
-
</div>
|
|
230
|
-
</footer>
|
|
231
|
-
|
|
232
|
-
<script>
|
|
233
|
-
var anchorForId = function (id) {
|
|
234
|
-
var anchor = document.createElement("a");
|
|
235
|
-
anchor.className = "header-link";
|
|
236
|
-
anchor.href = "#" + id;
|
|
237
|
-
anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
|
|
238
|
-
anchor.title = "Permalink";
|
|
239
|
-
return anchor;
|
|
240
|
-
};
|
|
241
|
-
|
|
242
|
-
var linkifyAnchors = function (level, containingElement) {
|
|
243
|
-
var headers = containingElement.getElementsByTagName("h" + level);
|
|
244
|
-
for (var h = 0; h < headers.length; h++) {
|
|
245
|
-
var header = headers[h];
|
|
246
|
-
|
|
247
|
-
if (typeof header.id !== "undefined" && header.id !== "") {
|
|
248
|
-
header.appendChild(anchorForId(header.id));
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
};
|
|
252
|
-
|
|
253
|
-
document.onreadystatechange = function () {
|
|
254
|
-
if (this.readyState === "complete") {
|
|
255
|
-
var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
|
|
256
|
-
if (!contentBlock) {
|
|
257
|
-
return;
|
|
258
|
-
}
|
|
259
|
-
for (var level = 1; level <= 6; level++) {
|
|
260
|
-
linkifyAnchors(level, contentBlock);
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
};
|
|
264
|
-
</script>
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
<!-- Gauges (http://get.gaug.es/) -->
|
|
268
|
-
<script>
|
|
269
|
-
var _gauges = _gauges || [];
|
|
270
|
-
(function() {
|
|
271
|
-
var t = document.createElement('script');
|
|
272
|
-
t.type = 'text/javascript';
|
|
273
|
-
t.async = true;
|
|
274
|
-
t.id = 'gauges-tracker';
|
|
275
|
-
t.setAttribute('data-site-id', '503c5af6613f5d0f19000027');
|
|
276
|
-
t.src = '//secure.gaug.es/track.js';
|
|
277
|
-
var s = document.getElementsByTagName('script')[0];
|
|
278
|
-
s.parentNode.insertBefore(t, s);
|
|
279
|
-
})();
|
|
280
|
-
</script>
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
<!-- Google Analytics (https://www.google.com/analytics) -->
|
|
285
|
-
<script>
|
|
286
|
-
!function(j,e,k,y,l,L){j.GoogleAnalyticsObject=y,j[y]||(j[y]=function(){
|
|
287
|
-
(j[y].q=j[y].q||[]).push(arguments)}),j[y].l=+new Date,l=e.createElement(k),
|
|
288
|
-
L=e.getElementsByTagName(k)[0],l.src='//www.google-analytics.com/analytics.js',
|
|
289
|
-
L.parentNode.insertBefore(l,L)}(window,document,'script','ga');
|
|
290
|
-
|
|
291
|
-
ga('create', 'UA-50755011-1', 'jekyllrb.com');
|
|
292
|
-
ga('send', 'pageview');
|
|
293
|
-
|
|
294
|
-
</script>
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
</body>
|
|
299
|
-
</html>
|
data/site/conduct/index.html
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en-US">
|
|
3
|
-
<meta charset="utf-8">
|
|
4
|
-
<title>Redirecting…</title>
|
|
5
|
-
<link rel="canonical" href="https://jekyllrb.com/docs/conduct/">
|
|
6
|
-
<meta http-equiv="refresh" content="0; url=https://jekyllrb.com/docs/conduct/">
|
|
7
|
-
<h1>Redirecting…</h1>
|
|
8
|
-
<a href="https://jekyllrb.com/docs/conduct/">Click here if you are not redirected.</a>
|
|
9
|
-
<script>location="https://jekyllrb.com/docs/conduct/"</script>
|
|
10
|
-
</html>
|
data/site/css/screen.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}.grid,.unit{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.grid{display:block;clear:both}.grid .unit{float:left;width:100%;padding:10px}.grid .unit:first-child{padding-left:20px}.grid .unit:last-child{padding-right:20px}.unit .unit:first-child{padding-left:0}.unit .unit:last-child{padding-right:0}.unit .grid:first-child>.unit{padding-top:0}.unit .grid:last-child>.unit{padding-bottom:0}.no-gutters .unit,.unit.no-gutters{padding:0 !important}.wrap .grid,.grid.wrap{max-width:978px;margin:0 auto}.grid .whole,.grid .w-1-1{width:100%}.grid .half,.grid .w-1-2{width:50%}.grid .one-third,.grid .w-1-3{width:33.3332%}.grid .two-thirds,.grid .w-2-3{width:66.6665%}.grid .one-quarter,.grid .one-fourth,.grid .w-1-4{width:25%}.grid .three-quarters,.grid .three-fourths,.grid .w-3-4{width:75%}.grid .one-fifth,.grid .w-1-5{width:20%}.grid .two-fifths,.grid .w-2-5{width:40%}.grid .three-fifths,.grid .w-3-5{width:60%}.grid .four-fifths,.grid .w-4-5{width:80%}.grid .golden-small,.grid .w-g-s{width:38.2716%}.grid .golden-large,.grid .w-g-l{width:61.7283%}.grid{*zoom:1}.grid:before,.grid:after{display:table;content:"";line-height:0}.grid:after{clear:both}.align-center{text-align:center}.align-left{text-align:left}.align-right{text-align:right}.pull-left{float:left}.pull-right{float:right}.unit img{max-width:100%;height:auto}@media screen and (max-width: 568px){.grid:not(.no-stacking-on-mobiles)>.unit{width:100% !important;padding-left:20px;padding-right:20px}.unit .grid .unit{padding-left:0px;padding-right:0px}.center-on-mobiles{text-align:center !important}.hide-on-mobiles{display:none !important}}@media screen and (min-width: 1180px){.wider .grid,.grid.wider{max-width:1180px;margin:0 auto}}.highlight .hll{background-color:#ffc}.highlight .c{color:#87ceeb}.highlight .err{color:#ffffff}.highlight .g{color:#ffffff}.highlight .k{color:#f0e68c}.highlight .l{color:#ffffff}.highlight .n{color:#ffffff}.highlight .o{color:#ffffff}.highlight .x{color:#ffffff}.highlight .p{color:#ffffff}.highlight .cm{color:#87ceeb}.highlight .cp{color:#cd5c5c}.highlight .c1{color:#87ceeb}.highlight .cs{color:#87ceeb}.highlight .gd{color:#0000c0;font-weight:bold;background-color:teal}.highlight .ge{color:#c000c0;text-decoration:underline}.highlight .gr{color:#c0c0c0;font-weight:bold;background-color:#c00000}.highlight .gh{color:#cd5c5c}.highlight .gi{color:#ffffff;background-color:#0000c0}.highlight span.go{color:#add8e6;font-weight:bold;background-color:#4d4d4d}.highlight .gp{color:#ffffff}.highlight .gs{color:#ffffff}.highlight .gu{color:#cd5c5c}.highlight .gt{color:#c0c0c0;font-weight:bold;background-color:#c00000}.highlight .kc{color:#f0e68c}.highlight .kd{color:#f0e68c}.highlight .kn{color:#f0e68c}.highlight .kp{color:#f0e68c}.highlight .kr{color:#f0e68c}.highlight .kt{color:#bdb76b}.highlight .ld{color:#ffffff}.highlight .m{color:#ffffff}.highlight .s{color:#ffffff}.highlight .na{color:#ffffff}.highlight .nb{color:#ffffff}.highlight .nc{color:#ffffff}.highlight .no{color:#ffa0a0}.highlight .nd{color:#ffffff}.highlight .ni{color:#ffdead}.highlight .ne{color:#ffffff}.highlight .nf{color:#ffffff}.highlight .nl{color:#ffffff}.highlight .nn{color:#ffffff}.highlight .nx{color:#ffffff}.highlight .py{color:#ffffff}.highlight .nt{color:#f0e68c}.highlight .nv{color:#98fb98}.highlight .ow{color:#ffffff}.highlight .w{color:#ffffff}.highlight .mf{color:#ffffff}.highlight .mh{color:#ffffff}.highlight .mi{color:#ffffff}.highlight .mo{color:#ffffff}.highlight .sb{color:#ffffff}.highlight .sc{color:#ffffff}.highlight .sd{color:#ffffff}.highlight .s2{color:#ffffff}.highlight .se{color:#ffffff}.highlight .sh{color:#ffffff}.highlight .si{color:#ffffff}.highlight .sx{color:#ffffff}.highlight .sr{color:#ffffff}.highlight .s1{color:#ffffff}.highlight .ss{color:#ffffff}.highlight .bp{color:#ffffff}.highlight .vc{color:#98fb98}.highlight .vg{color:#98fb98}.highlight .vi{color:#98fb98}.highlight .il{color:#ffffff}.highlight .bash .nv{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}@font-face{font-family:'FontAwesome';src:url("../fonts/FontAwesome.eot?9h6hxj");src:url("../fonts/FontAwesome.eot?9h6hxj#iefix") format("embedded-opentype"),url("../fonts/FontAwesome.woff?9h6hxj") format("woff"),url("../fonts/FontAwesome.ttf?9h6hxj") format("truetype"),url("../fonts/FontAwesome.svg?9h6hxj#FontAwesome") format("svg");font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-link:before{content:"\f0c1"}.fa-pencil:before{content:"\f040"}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{font:300 21px Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;color:#ddd;background-color:#333;border-top:5px solid #fc0;-webkit-box-shadow:inset 0 3px 30px rgba(0,0,0,0.3);-moz-box-shadow:inset 0 3px 30px rgba(0,0,0,0.3);box-shadow:inset 0 3px 30px rgba(0,0,0,0.3);text-shadow:0 1px 3px rgba(0,0,0,0.5);-webkit-font-feature-settings:"kern" 1;-moz-font-feature-settings:"kern" 1;-o-font-feature-settings:"kern" 1;font-feature-settings:"kern" 1;font-kerning:normal;margin:0}.clear{display:block}.clear:after{content:" ";display:block;height:0;clear:both;visibility:hidden}header,section,footer{float:left;width:100%;clear:both}header h1,header nav{display:inline-block}nav ul{padding:0;margin:0;white-space:nowrap}nav li{display:inline-block}.main-nav{margin-top:52px}.main-nav li{margin-right:10px}.main-nav li a{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;font-weight:900;font-size:14px;padding:0.5em 1em;text-shadow:none;text-transform:uppercase;-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;transition:all 0.25s}.main-nav li a:hover{background-color:#252525;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.5),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 3px rgba(0,0,0,0.5),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.5),0 1px 0 rgba(255,255,255,0.1);text-shadow:0 1px 3px rgba(0,0,0,0.5)}.main-nav li.current a{background-color:#fc0;color:#222;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5),0 1px 5px rgba(0,0,0,0.5);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5),0 1px 5px rgba(0,0,0,0.5);box-shadow:inset 0 1px 0 rgba(255,255,255,0.5),0 1px 5px rgba(0,0,0,0.5);text-shadow:0 1px 0 rgba(255,255,255,0.3)}.mobile-nav{padding:0 5px}.mobile-nav ul{overflow:hidden;width:100%;display:table}.mobile-nav a{float:left;width:100%;background-color:#333;color:#fc0;text-align:center;text-transform:uppercase;font-size:14px;font-weight:900;padding:5px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.mobile-nav li{display:table-cell;width:20%;padding:8px 2px}.mobile-nav .current a{background-color:#fc0;color:#222;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5),0 1px 5px rgba(0,0,0,0.5);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5),0 1px 5px rgba(0,0,0,0.5);box-shadow:inset 0 1px 0 rgba(255,255,255,0.5),0 1px 5px rgba(0,0,0,0.5);text-shadow:0 1px 0 rgba(255,255,255,0.3)}.header-link{position:relative;left:0.5em;opacity:0;font-size:0.8em;-webkit-transition:opacity 0.2s ease-in-out 0.1s;-moz-transition:opacity 0.2s ease-in-out 0.1s;-o-transition:opacity 0.2s ease-in-out 0.1s;transition:opacity 0.2s ease-in-out 0.1s}h2:hover .header-link,h3:hover .header-link,h4:hover .header-link,h5:hover .header-link,h6:hover .header-link{opacity:1}@media (max-width: 768px){.main-nav ul{text-align:right}}@media (max-width: 830px){.main-nav .show-on-mobiles{display:inline}.main-nav .hide-on-mobiles{display:none}}footer{background-color:#212121;font-size:16px;padding-bottom:5px;color:#c0c0c0;margin-top:40px}footer a{color:#fff}footer a:hover img{opacity:1}footer .align-right p{display:inline-block}footer img{display:inline-block;position:relative;top:8px;margin-left:5px;opacity:.8;padding:1px;-webkit-transition:opacity 0.2s;-moz-transition:opacity 0.2s;-o-transition:opacity 0.2s;transition:opacity 0.2s}@media (max-width: 568px){footer .one-third p{margin-bottom:0}footer .two-thirds p{margin-top:-20px}}.intro .unit{padding:10px 0 40px}.intro p{font-size:1.75em;line-height:1em;margin:0}@media (min-width: 569px){.intro p{font-size:3.2em}}.quickstart{background-color:#3F1F1F;color:#fff;margin:60px 0;-webkit-box-shadow:inset 0 3px 10px rgba(0,0,0,0.4);-moz-box-shadow:inset 0 3px 10px rgba(0,0,0,0.4);box-shadow:inset 0 3px 10px rgba(0,0,0,0.4)}.quickstart .content{padding:0}.quickstart h3{font-size:24px;line-height:24px;margin-top:20px;text-shadow:0 1px 3px rgba(0,0,0,0.8)}.quickstart .code{font-size:12px;display:block;margin:0 0 -30px}@media (min-width: 768px){.quickstart .code{font-size:18px;margin:-30px 0;float:right}.quickstart h3{margin:50px 0 0;text-align:center}}.quickstart .code{display:block;padding:0;font-family:Menlo, Consolas, "Courier New", Courier, "Liberation Mono", monospace;line-height:1.3em}.quickstart .code .title{display:block;text-align:center;margin:0 20px;padding:5px 0;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;-webkit-box-shadow:0 3px 10px rgba(0,0,0,0.5);-moz-box-shadow:0 3px 10px rgba(0,0,0,0.5);box-shadow:0 3px 10px rgba(0,0,0,0.5);font:400 16px/24px 'Helvetica Neue', Helvetica, Arial, sans-serif;color:#444;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#f7f7f7;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjclIiBzdG9wLWNvbG9yPSIjY2ZjZmNmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2FhYWFhYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);background-image:-webkit-gradient(linear, left top, left bottom, from(#f7f7f7), color-stop(7%, #cfcfcf), to(#aaa));background-image:-webkit-linear-gradient(top, #f7f7f7 0%, #cfcfcf 7%, #aaa 100%);background-image:-moz-linear-gradient(top, #f7f7f7 0%, #cfcfcf 7%, #aaa 100%);background-image:-o-linear-gradient(top, #f7f7f7 0%, #cfcfcf 7%, #aaa 100%);background-image:linear-gradient(top, #f7f7f7 0%, #cfcfcf 7%, #aaa 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#aaaaaa',GradientType=0 );border-bottom:1px solid #111}.quickstart .code .shell{padding:20px;text-shadow:none;margin:0 20px;background-color:#171717;-webkit-border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;border-radius:0 0 5px 5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.3);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.3);box-shadow:0 5px 30px rgba(0,0,0,0.3)}.quickstart .code .line{display:block;margin:0;padding:0}.quickstart .code .line span{display:inline-block}.quickstart .code .path{color:#87ceeb;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.quickstart .code .prompt{color:#cd5c5c;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.quickstart .code .command{color:#f0e68c}.quickstart .code .output{color:#888}.free-hosting .pane{background-color:#3e3e3e;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;text-shadow:none;position:relative;padding:0 20px 30px}.free-hosting img{margin:-30px 0 0;width:180px;height:150px}.free-hosting h2{font-size:28px}.free-hosting p,.free-hosting a{font-size:16px}.free-hosting p{margin:.75em 0}@media (min-width: 768px){.free-hosting img{float:left;margin:-20px -30px -30px -50px;width:300px;height:251px}.free-hosting .pane-content{margin-top:35px;padding-right:30px}.free-hosting p,.free-hosting a{font-size:18px}.free-hosting .pane:after{content:" ";float:right;background:url(../img/footer-arrow.png) top left no-repeat;width:73px;height:186px;position:absolute;right:0;bottom:-30px}}article{background-color:#444;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;padding:20px;margin:0 10px;-webkit-box-shadow:0 3px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 3px 10px rgba(0,0,0,0.1);box-shadow:0 3px 10px rgba(0,0,0,0.1);font-size:16px}@media (max-width: 480px){article ul{padding-left:20px}}@media (max-width: 568px){article{margin:0}}@media (min-width: 768px){article{padding:40px 40px 30px;font-size:21px}}aside{padding-top:30px}aside h4{text-transform:uppercase;font-size:14px;font-weight:700;padding:0 0 10px 30px;margin-left:-30px;display:inline-block;border-bottom:1px solid #c00}aside ul{padding-left:0}aside ul:first-child{margin-top:0}aside li{list-style-type:none}aside li a{font-size:16px;position:relative}aside li.current a:before{content:"";border-color:transparent transparent transparent #444;border-style:solid;border-width:10px;width:0;height:0;position:absolute;top:0;left:-30px}aside li.current a{color:#f90}.docs article{min-height:800px}.docs .content{padding:0}.section-nav{text-align:center;padding-top:40px;position:relative;background:url(../img/article-footer.png) top center no-repeat;margin:40px -20px 10px}.section-nav>div{width:49.5%}.section-nav a,.section-nav span{color:#fff;font-size:16px;text-transform:uppercase;font-weight:700;padding:8px 12px 10px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.3),inset 0 1px 1px rgba(255,255,255,0.5);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.3),inset 0 1px 1px rgba(255,255,255,0.5);box-shadow:0 1px 3px rgba(0,0,0,0.3),inset 0 1px 1px rgba(255,255,255,0.5);background-color:#767676}.section-nav a:hover{color:#fff;background-color:#888}.section-nav .next,.section-nav .prev{position:relative}.section-nav .next:after,.section-nav .prev:before{font-size:36px;color:#222;font-weight:900;text-shadow:0 1px 0 rgba(255,255,255,0.4);position:absolute;top:-7px}.section-nav .next:after{content:'\203A';right:10px}.section-nav .prev:before{content:'\2039';left:10px}.section-nav .prev,.section-nav .prev:hover{padding-left:30px}.section-nav .next,.section-nav .next:hover{padding-right:30px}.section-nav .disabled{opacity:.5;cursor:default}.improve{padding-top:25px;font-size:16px}.improve a{color:#999}.docs-nav-mobile select{color:#000;width:100%}article h2:first-child{margin-top:0}.post-category,.post-meta{display:inline-block;vertical-align:middle;font-size:.8em}.post-category{display:inline-block;margin-left:-30px;padding:6px 10px 8px;padding-left:50px;-webkit-border-radius:0 5px 5px 0;-moz-border-radius:0 5px 5px 0;border-radius:0 5px 5px 0;position:relative;-webkit-box-shadow:0 1px 5px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.2),inset 0 -1px 0 rgba(0,0,0,0.3);-moz-box-shadow:0 1px 5px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.2),inset 0 -1px 0 rgba(0,0,0,0.3);box-shadow:0 1px 5px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.2),inset 0 -1px 0 rgba(0,0,0,0.3);background-color:#9e2812;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzllMjgxMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2ZjBkMGQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background-image:-webkit-gradient(linear, left top, left bottom, from(#9e2812), to(#6f0d0d));background-image:-webkit-linear-gradient(top, #9e2812 0%, #6f0d0d 100%);background-image:-moz-linear-gradient(top, #9e2812 0%, #6f0d0d 100%);background-image:-o-linear-gradient(top, #9e2812 0%, #6f0d0d 100%);background-image:linear-gradient(to bottom, #9e2812 0%, #6f0d0d 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#9e2812', endColorstr='#6f0d0d',GradientType=0 )}.post-category:before{content:"";position:absolute;top:-10px;left:0;border-color:transparent #6f0d0d #6f0d0d transparent;border-style:solid;border-width:5px;width:0;height:0}.post-content img{max-width:100%}.label{float:left;text-transform:uppercase;font-weight:700;text-shadow:0 -1px 0 rgba(0,0,0,0.5)}@media (max-width: 568px){.post-category{padding-left:30px}}@media (min-width: 768px){.post-category{margin-left:-50px}}.avatar{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;display:inline-block;vertical-align:middle}.post-meta{padding:5px 0;color:#c0c0c0;font-weight:600;text-shadow:0 -1px 0 #000}.post-date,.post-author{margin-left:10px}.news article+article{margin-top:-10px;-webkit-border-radius:0 0 10px 10px;-moz-border-radius:0 0 10px 10px;border-radius:0 0 10px 10px;border-top:1px solid #555;-webkit-box-shadow:0 -1px 0 #2f2f2f;-moz-box-shadow:0 -1px 0 #2f2f2f;box-shadow:0 -1px 0 #2f2f2f}pre,code{white-space:pre;display:inline-block;margin:0;font:14px/1.8em Menlo, Consolas, "Courier New", Courier, "Liberation Mono", monospace;padding:0 0.5em}@media (min-width: 768px){pre,code{font-size:16px}}.highlight,.highlighter-rouge .highlight,p>pre,p>code,p>nobr>code,li>code,li>pre,h5>code,.note>code{background-color:#2b2b2b;color:#fff;max-width:100%;overflow-x:auto;vertical-align:middle;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:inset 0 1px 10px rgba(0,0,0,0.3),0 1px 0 rgba(255,255,255,0.1),0 -1px 0 rgba(0,0,0,0.5);-moz-box-shadow:inset 0 1px 10px rgba(0,0,0,0.3),0 1px 0 rgba(255,255,255,0.1),0 -1px 0 rgba(0,0,0,0.5);box-shadow:inset 0 1px 10px rgba(0,0,0,0.3),0 1px 0 rgba(255,255,255,0.1),0 -1px 0 rgba(0,0,0,0.5)}.note code{background-color:#333;background-color:rgba(0,0,0,0.2);margin-left:2.5px;margin-right:2.5px;font-size:0.8em}.code-block{margin:10px 0}.code-block code{background:none}.highlight,.highlighter-rouge .highlight{margin:1em 0;padding:10px 0;width:100%;overflow:auto}.highlighter-rouge .highlight{margin:0;padding:10px 0.5em}h1,h2,h3,h4,h5,h6{margin:0}a{color:#fc0;text-decoration:none;-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;transition:all 0.25s}a:hover{color:#f90}strong{font-weight:700}p{line-height:1.5em}.left{float:left}.right{float:right}.align-right{text-align:right}.align-left{text-align:left}.align-center{text-align:center}article h2,article h3,article h4,article h5,article h6{margin:1em 0}article h4{color:#fff}article ul li p{margin:0}article ul li blockquote{margin:10px 0}article ul li,article ol li{line-height:1.5em;margin-bottom:0.5em}h5,h6{font-size:1em;font-style:italic}blockquote{border-left:2px solid #777;padding-left:20px;font-style:italic;font-size:18px;font-weight:500}table{width:100%;background-color:#555;margin:.5em 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.3);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.3);box-shadow:0 1px 3px rgba(0,0,0,0.3)}thead{-webkit-border-top-left-radius:5px;-moz-border-radius-topleft:5px;border-top-left-radius:5px;-webkit-border-top-right-radius:5px;-moz-border-radius-topright:5px;border-top-right-radius:5px;color:#fff;background-color:#3a3a3a;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzNhM2EzYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxZTFlMWUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background-image:-webkit-gradient(linear, left top, left bottom, from(#3a3a3a), to(#1e1e1e));background-image:-webkit-linear-gradient(top, #3a3a3a 0%, #1e1e1e 100%);background-image:-moz-linear-gradient(top, #3a3a3a 0%, #1e1e1e 100%);background-image:-o-linear-gradient(top, #3a3a3a 0%, #1e1e1e 100%);background-image:linear-gradient(to bottom, #3a3a3a 0%, #1e1e1e 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a3a3a', endColorstr='#1e1e1e',GradientType=0 )}thead th{position:relative;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1)}thead th:first-child{-webkit-border-top-left-radius:5px;-moz-border-radius-topleft:5px;border-top-left-radius:5px}thead th:last-child{-webkit-border-top-right-radius:5px;-moz-border-radius-topright:5px;border-top-right-radius:5px}td{padding:.5em .75em}td p{margin:0}th{text-transform:uppercase;font-size:16px;padding:.5em .75em;text-shadow:0 -1px 0 rgba(0,0,0,0.9);color:#888}tbody td{border-top:1px solid #747474;border-top:1px solid rgba(0,0,0,0.1);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.1)), to(rgba(255,255,255,0)));background-image:-webkit-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);background-image:-moz-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);background-image:linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#1affffff', endColorstr='#00ffffff',GradientType=0 )}tbody td p{font-size:16px}tbody td p code{font-size:14px}code.option,th .option,code.filter,th .filter{color:#50B600}code.flag,th .flag,code.output,th .output{color:#049DCE}code.option,code.flag,code.filter,code.output{margin-bottom:2px}.note{margin:30px 0;margin-left:-30px;padding:20px 20px 24px;padding-left:50px;-webkit-border-radius:0 5px 5px 0;-moz-border-radius:0 5px 5px 0;border-radius:0 5px 5px 0;position:relative;-webkit-box-shadow:0 1px 5px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.2),inset 0 -1px 0 rgba(0,0,0,0.3);-moz-box-shadow:0 1px 5px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.2),inset 0 -1px 0 rgba(0,0,0,0.3);box-shadow:0 1px 5px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.2),inset 0 -1px 0 rgba(0,0,0,0.3);background-color:#7e6d42;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzdlNmQ0MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1YzRlMzUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background-image:-webkit-gradient(linear, left top, left bottom, from(#7e6d42), to(#5c4e35));background-image:-webkit-linear-gradient(top, #7e6d42 0%, #5c4e35 100%);background-image:-moz-linear-gradient(top, #7e6d42 0%, #5c4e35 100%);background-image:-o-linear-gradient(top, #7e6d42 0%, #5c4e35 100%);background-image:linear-gradient(to bottom, #7e6d42 0%, #5c4e35 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#7e6d42', endColorstr='#5c4e35',GradientType=0 )}@media (max-width: 568px){.note{margin-right:-30px}}@media (min-width: 768px){.note{margin-left:-50px}}.note:before{content:"";position:absolute;top:-10px;left:0;border-color:transparent #222 #222 transparent;border-style:solid;border-width:5px;width:0;height:0}.note h5,.note p{margin:0;color:#fff}.note h5{line-height:1.5em;font-weight:900;font-style:normal}.note p{font-weight:400;font-size:.75em}.note:after{content:'\2605';color:#fc0;position:absolute;top:14px;left:14px;font-size:28px;font-weight:700;text-shadow:0 -1px 0 rgba(0,0,0,0.5)}.info{background-color:#0389aa;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAzODlhYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDYxN2YiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background-image:-webkit-gradient(linear, left top, left bottom, from(#0389aa), to(#00617f));background-image:-webkit-linear-gradient(top, #0389aa 0%, #00617f 100%);background-image:-moz-linear-gradient(top, #0389aa 0%, #00617f 100%);background-image:-o-linear-gradient(top, #0389aa 0%, #00617f 100%);background-image:linear-gradient(to bottom, #0389aa 0%, #00617f 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0389aa', endColorstr='#00617f',GradientType=0 )}.warning{background-color:#9e2812;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzllMjgxMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM2ZjBkMGQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background-image:-webkit-gradient(linear, left top, left bottom, from(#9e2812), to(#6f0d0d));background-image:-webkit-linear-gradient(top, #9e2812 0%, #6f0d0d 100%);background-image:-moz-linear-gradient(top, #9e2812 0%, #6f0d0d 100%);background-image:-o-linear-gradient(top, #9e2812 0%, #6f0d0d 100%);background-image:linear-gradient(to bottom, #9e2812 0%, #6f0d0d 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#9e2812', endColorstr='#6f0d0d',GradientType=0 )}.unreleased{background-color:#cd9239;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NkOTIzOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhMjc1MjgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background-image:-webkit-gradient(linear, left top, left bottom, from(#cd9239), to(#a27528));background-image:-webkit-linear-gradient(top, #cd9239 0%, #a27528 100%);background-image:-moz-linear-gradient(top, #cd9239 0%, #a27528 100%);background-image:-o-linear-gradient(top, #cd9239 0%, #a27528 100%);background-image:linear-gradient(to bottom, #cd9239 0%, #a27528 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#cd9239', endColorstr='#a27528',GradientType=0 )}.info:before{border-color:transparent #00617f #00617f transparent}.warning:before{border-color:transparent #6f0d0d #6f0d0d transparent}.unreleased:before{border-color:transparent #664719 #664719 transparent}.info:after{content:'\24D8';color:#fff;position:absolute;top:15px;left:15px;font-size:28px;font-weight:700;text-shadow:0 -1px 0 rgba(0,0,0,0.5)}.warning:after{content:'\203C';color:#fc0;position:absolute;top:15px;left:15px;font-size:32px;font-weight:700;text-shadow:0 -1px 0 rgba(0,0,0,0.5)}.unreleased:after{content:'\2692';color:#2b2a12;position:absolute;top:8px;left:15px;font-size:38px;font-weight:700;text-shadow:0 1px 0 rgba(255,255,255,0.25)}@media (max-width: 768px){.mobile-side-scroller{overflow-x:scroll;margin:0 -40px;padding:0 10px}}.show-on-mobiles{display:none}@media screen and (max-width: 568px){.show-on-mobiles{display:block !important}a .show-on-mobiles{display:inline !important}}.videoWrapper{position:relative;padding-bottom:52.4%;padding-top:25px;height:0}.videoWrapper iframe{position:absolute;top:0;left:0;width:100%;height:100%}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.result{padding:12px}.image-description{margin:-20px 0 20px;padding:10px 15px;font-size:0.81em;text-align:justify;background:#5c5c5c}.image-description pre,.image-description code{font-size:0.75em;background:#454545}
|
data/site/docs/assets/index.html
DELETED
|
@@ -1,724 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE HTML>
|
|
2
|
-
<html lang="en-US">
|
|
3
|
-
<head>
|
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
5
|
-
<meta charset="UTF-8">
|
|
6
|
-
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
7
|
-
<meta name="generator" content="Jekyll v3.6.0">
|
|
8
|
-
<link type="application/atom+xml" rel="alternate" href="https://jekyllrb.com/feed.xml" title="Jekyll • Simple, blog-aware, static sites">
|
|
9
|
-
<link rel="alternate" type="application/atom+xml" title="Recent commits to Jekyll’s master branch" href="https://github.com/jekyll/jekyll/commits/master.atom">
|
|
10
|
-
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
|
|
11
|
-
<link rel="stylesheet" href="/css/screen.css">
|
|
12
|
-
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
13
|
-
<!-- Begin Jekyll SEO tag v2.3.0 -->
|
|
14
|
-
<title>Assets | Jekyll • Simple, blog-aware, static sites</title>
|
|
15
|
-
<meta property="og:title" content="Assets">
|
|
16
|
-
<meta property="og:locale" content="en_US">
|
|
17
|
-
<meta name="description" content="Jekyll provides built-in support for Sass and can work with CoffeeScript via a Ruby gem. In order to use them, you must first create a file with the proper extension name (one of .sass, .scss, or .coffee) and start the file with two lines of triple dashes, like this:">
|
|
18
|
-
<meta property="og:description" content="Jekyll provides built-in support for Sass and can work with CoffeeScript via a Ruby gem. In order to use them, you must first create a file with the proper extension name (one of .sass, .scss, or .coffee) and start the file with two lines of triple dashes, like this:">
|
|
19
|
-
<link rel="canonical" href="https://jekyllrb.com/docs/assets/">
|
|
20
|
-
<meta property="og:url" content="https://jekyllrb.com/docs/assets/">
|
|
21
|
-
<meta property="og:site_name" content="Jekyll • Simple, blog-aware, static sites">
|
|
22
|
-
<meta property="og:type" content="article">
|
|
23
|
-
<meta property="article:published_time" content="2017-10-24T08:07:43-07:00">
|
|
24
|
-
<meta name="twitter:card" content="summary">
|
|
25
|
-
<meta name="twitter:site" content="@jekyllrb">
|
|
26
|
-
<meta name="google-site-verification" content="onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY">
|
|
27
|
-
<script type="application/ld+json">
|
|
28
|
-
{"name":null,"description":"Jekyll provides built-in support for Sass and can work with CoffeeScript via a Ruby gem. In order to use them, you must first create a file with the proper extension name (one of .sass, .scss, or .coffee) and start the file with two lines of triple dashes, like this:","url":"https://jekyllrb.com/docs/assets/","headline":"Assets","dateModified":"2017-10-24T08:07:43-07:00","datePublished":"2017-10-24T08:07:43-07:00","sameAs":null,"@type":"BlogPosting","author":null,"image":null,"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://jekyllrb.com/img/logo-2x.png"}},"mainEntityOfPage":{"@type":"WebPage","@id":"https://jekyllrb.com/docs/assets/"},"@context":"http://schema.org"}</script>
|
|
29
|
-
<!-- End Jekyll SEO tag -->
|
|
30
|
-
|
|
31
|
-
<!--[if lt IE 9]>
|
|
32
|
-
<script src="/js/html5shiv.min.js"></script>
|
|
33
|
-
<script src="/js/respond.min.js"></script>
|
|
34
|
-
<![endif]-->
|
|
35
|
-
</head>
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
<body class="wrap">
|
|
39
|
-
<header>
|
|
40
|
-
<nav class="mobile-nav show-on-mobiles">
|
|
41
|
-
<ul>
|
|
42
|
-
<li class="">
|
|
43
|
-
<a href="/">Home</a>
|
|
44
|
-
</li>
|
|
45
|
-
<li class="current">
|
|
46
|
-
<a href="/docs/home/">Docs</a>
|
|
47
|
-
</li>
|
|
48
|
-
<li class="">
|
|
49
|
-
<a href="/news/">News</a>
|
|
50
|
-
</li>
|
|
51
|
-
<li class="">
|
|
52
|
-
<a href="/community/">Community</a>
|
|
53
|
-
</li>
|
|
54
|
-
<li class="">
|
|
55
|
-
<a href="/help/">Help</a>
|
|
56
|
-
</li>
|
|
57
|
-
<li>
|
|
58
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
|
59
|
-
</li>
|
|
60
|
-
</ul>
|
|
61
|
-
|
|
62
|
-
</nav>
|
|
63
|
-
<div class="grid">
|
|
64
|
-
<div class="unit one-third center-on-mobiles">
|
|
65
|
-
<h1>
|
|
66
|
-
<a href="/">
|
|
67
|
-
<span class="sr-only">Jekyll</span>
|
|
68
|
-
<img src="/img/logo-2x.png" width="249" height="115" alt="Jekyll Logo">
|
|
69
|
-
</a>
|
|
70
|
-
</h1>
|
|
71
|
-
</div>
|
|
72
|
-
<nav class="main-nav unit two-thirds hide-on-mobiles">
|
|
73
|
-
<ul>
|
|
74
|
-
<li class="">
|
|
75
|
-
<a href="/">Home</a>
|
|
76
|
-
</li>
|
|
77
|
-
<li class="current">
|
|
78
|
-
<a href="/docs/home/">Docs</a>
|
|
79
|
-
</li>
|
|
80
|
-
<li class="">
|
|
81
|
-
<a href="/news/">News</a>
|
|
82
|
-
</li>
|
|
83
|
-
<li class="">
|
|
84
|
-
<a href="/community/">Community</a>
|
|
85
|
-
</li>
|
|
86
|
-
<li class="">
|
|
87
|
-
<a href="/help/">Help</a>
|
|
88
|
-
</li>
|
|
89
|
-
<li>
|
|
90
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
|
91
|
-
</li>
|
|
92
|
-
</ul>
|
|
93
|
-
|
|
94
|
-
</nav>
|
|
95
|
-
</div>
|
|
96
|
-
</header>
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
<section class="docs">
|
|
100
|
-
<div class="grid">
|
|
101
|
-
|
|
102
|
-
<div class="docs-nav-mobile unit whole show-on-mobiles">
|
|
103
|
-
<select onchange="if (this.value) window.location.href=this.value">
|
|
104
|
-
<option value="">Navigate the docs…</option>
|
|
105
|
-
|
|
106
|
-
<optgroup label="Getting Started">
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
<option value="/docs/home/">Welcome</option>
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
<option value="/docs/quickstart/">Quick-start guide</option>
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
<option value="/docs/installation/">Installation</option>
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
<option value="/docs/windows/">Jekyll on Windows</option>
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
<option value="/docs/usage/">Basic Usage</option>
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
<option value="/docs/structure/">Directory structure</option>
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
<option value="/docs/configuration/">Configuration</option>
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
</optgroup>
|
|
138
|
-
|
|
139
|
-
<optgroup label="Your Content">
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
<option value="/docs/frontmatter/">Front Matter</option>
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
<option value="/docs/posts/">Writing posts</option>
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
<option value="/docs/drafts/">Working with drafts</option>
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
<option value="/docs/pages/">Creating pages</option>
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
<option value="/docs/static-files/">Static Files</option>
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
<option value="/docs/variables/">Variables</option>
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
<option value="/docs/collections/">Collections</option>
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
<option value="/docs/datafiles/">Data Files</option>
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
<option value="/docs/assets/">Assets</option>
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
<option value="/docs/migrations/">Blog migrations</option>
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
</optgroup>
|
|
183
|
-
|
|
184
|
-
<optgroup label="Customization">
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
<option value="/docs/templates/">Templates</option>
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
<option value="/docs/includes/">Includes</option>
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
<option value="/docs/permalinks/">Permalinks</option>
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
<option value="/docs/pagination/">Pagination</option>
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
<option value="/docs/plugins/">Plugins</option>
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
<option value="/docs/themes/">Themes</option>
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
<option value="/docs/extras/">Extras</option>
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
</optgroup>
|
|
216
|
-
|
|
217
|
-
<optgroup label="Deployment">
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
<option value="/docs/github-pages/">GitHub Pages</option>
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
<option value="/docs/deployment-methods/">Deployment methods</option>
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
<option value="/docs/continuous-integration/">Continuous Integration</option>
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
</optgroup>
|
|
233
|
-
|
|
234
|
-
<optgroup label="Miscellaneous">
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
<option value="/docs/troubleshooting/">Troubleshooting</option>
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
<option value="/docs/sites/">Sites using Jekyll</option>
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
<option value="/docs/resources/">Resources</option>
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
<option value="/docs/upgrading/0-to-2/">Upgrading from 0.x to 2.x</option>
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
<option value="/docs/upgrading/2-to-3/">Upgrading from 2.x to 3.x</option>
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
</optgroup>
|
|
258
|
-
|
|
259
|
-
<optgroup label="Meta">
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
<option value="/docs/contributing/">Contributing</option>
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
<option value="/docs/maintaining/">Maintaining Jekyll</option>
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
<option value="/docs/conduct/">Code of Conduct</option>
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
<option value="/docs/history/">History</option>
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
</optgroup>
|
|
279
|
-
|
|
280
|
-
</select>
|
|
281
|
-
</div>
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
<div class="unit four-fifths">
|
|
285
|
-
<article>
|
|
286
|
-
<div class="improve right hide-on-mobiles">
|
|
287
|
-
<a href="https://github.com/jekyll/jekyll/edit/master/docs/_docs/assets.md"><i class="fa fa-pencil"></i> Improve this page</a>
|
|
288
|
-
</div>
|
|
289
|
-
<h1>Assets</h1>
|
|
290
|
-
<p>Jekyll provides built-in support for Sass and can work with CoffeeScript via
|
|
291
|
-
a Ruby gem. In order to use them, you must first create a file with the
|
|
292
|
-
proper extension name (one of <code class="highlighter-rouge">.sass</code>, <code class="highlighter-rouge">.scss</code>, or <code class="highlighter-rouge">.coffee</code>) and <strong><em>start the
|
|
293
|
-
file with two lines of triple dashes</em></strong>, like this:</p>
|
|
294
|
-
|
|
295
|
-
<div class="language-sass highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nt">---</span>
|
|
296
|
-
<span class="nt">---</span>
|
|
297
|
-
|
|
298
|
-
<span class="c1">// start content
|
|
299
|
-
</span><span class="nc">.my-definition</span>
|
|
300
|
-
<span class="nl">font-size</span><span class="p">:</span> <span class="m">1</span><span class="mi">.2em</span>
|
|
301
|
-
</code></pre></div></div>
|
|
302
|
-
|
|
303
|
-
<p>Jekyll treats these files the same as a regular page, in that the output file
|
|
304
|
-
will be placed in the same directory that it came from. For instance, if you
|
|
305
|
-
have a file named <code class="highlighter-rouge">css/styles.scss</code> in your site’s source folder, Jekyll
|
|
306
|
-
will process it and put it in your site’s destination folder under
|
|
307
|
-
<code class="highlighter-rouge">css/styles.css</code>.</p>
|
|
308
|
-
|
|
309
|
-
<div class="note info">
|
|
310
|
-
<h5>Jekyll processes all Liquid filters and tags in asset files</h5>
|
|
311
|
-
<p>If you are using <a href="https://mustache.github.io">Mustache</a>
|
|
312
|
-
or another JavaScript templating language that conflicts with
|
|
313
|
-
the <a href="/docs/templates/">Liquid template syntax</a>, you
|
|
314
|
-
will need to place <code>{% raw %}</code> and
|
|
315
|
-
<code>{% endraw %}</code> tags around your code.</p>
|
|
316
|
-
</div>
|
|
317
|
-
|
|
318
|
-
<h2 id="sassscss">Sass/SCSS</h2>
|
|
319
|
-
|
|
320
|
-
<p>Jekyll allows you to customize your Sass conversion in certain ways.</p>
|
|
321
|
-
|
|
322
|
-
<p>Place all your partials in your <code class="highlighter-rouge">sass_dir</code>, which defaults to
|
|
323
|
-
<code class="highlighter-rouge"><source>/_sass</code>. Place your main SCSS or Sass files in the place you want
|
|
324
|
-
them to be in the output file, such as <code class="highlighter-rouge"><source>/css</code>. For an example, take
|
|
325
|
-
a look at <a href="https://github.com/jekyll/jekyll-sass-converter/tree/master/example">this example site using Sass support in Jekyll</a>.</p>
|
|
326
|
-
|
|
327
|
-
<p>If you are using Sass <code class="highlighter-rouge">@import</code> statements, you’ll need to ensure that your
|
|
328
|
-
<code class="highlighter-rouge">sass_dir</code> is set to the base directory that contains your Sass files. You
|
|
329
|
-
can do that thusly:</p>
|
|
330
|
-
|
|
331
|
-
<div class="language-yaml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="na">sass</span><span class="pi">:</span>
|
|
332
|
-
<span class="na">sass_dir</span><span class="pi">:</span> <span class="s">_sass</span>
|
|
333
|
-
</code></pre></div></div>
|
|
334
|
-
|
|
335
|
-
<p>The Sass converter will default the <code class="highlighter-rouge">sass_dir</code> configuration option to
|
|
336
|
-
<code class="highlighter-rouge">_sass</code>.</p>
|
|
337
|
-
|
|
338
|
-
<div class="note info">
|
|
339
|
-
<h5>The <code>sass_dir</code> is only used by Sass</h5>
|
|
340
|
-
<p>
|
|
341
|
-
|
|
342
|
-
Note that the <code>sass_dir</code> becomes the load path for Sass imports,
|
|
343
|
-
nothing more. This means that Jekyll does not know about these files
|
|
344
|
-
directly, so any files here should not contain the YAML Front Matter as
|
|
345
|
-
described above nor will they be transformed as described above. This
|
|
346
|
-
folder should only contain imports.
|
|
347
|
-
|
|
348
|
-
</p>
|
|
349
|
-
</div>
|
|
350
|
-
|
|
351
|
-
<p>You may also specify the output style with the <code class="highlighter-rouge">style</code> option in your
|
|
352
|
-
<code class="highlighter-rouge">_config.yml</code> file:</p>
|
|
353
|
-
|
|
354
|
-
<div class="language-yaml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="na">sass</span><span class="pi">:</span>
|
|
355
|
-
<span class="na">style</span><span class="pi">:</span> <span class="s">compressed</span>
|
|
356
|
-
</code></pre></div></div>
|
|
357
|
-
|
|
358
|
-
<p>These are passed to Sass, so any output style options Sass supports are valid
|
|
359
|
-
here, too.</p>
|
|
360
|
-
|
|
361
|
-
<h2 id="coffeescript">Coffeescript</h2>
|
|
362
|
-
|
|
363
|
-
<p>To enable Coffeescript in Jekyll 3.0 and up you must</p>
|
|
364
|
-
|
|
365
|
-
<ul>
|
|
366
|
-
<li>Install the <code class="highlighter-rouge">jekyll-coffeescript</code> gem</li>
|
|
367
|
-
<li>Ensure that your <code class="highlighter-rouge">_config.yml</code> is up-to-date and includes the following:</li>
|
|
368
|
-
</ul>
|
|
369
|
-
|
|
370
|
-
<div class="language-yaml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="na">plugins</span><span class="pi">:</span>
|
|
371
|
-
<span class="pi">-</span> <span class="s">jekyll-coffeescript</span>
|
|
372
|
-
</code></pre></div></div>
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
<div class="section-nav">
|
|
428
|
-
<div class="left align-right">
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
<a href="/docs/datafiles/" class="prev">Back</a>
|
|
433
|
-
|
|
434
|
-
</div>
|
|
435
|
-
<div class="right align-left">
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
<a href="/docs/migrations/" class="next">Next</a>
|
|
440
|
-
|
|
441
|
-
</div>
|
|
442
|
-
</div>
|
|
443
|
-
<div class="clear"></div>
|
|
444
|
-
|
|
445
|
-
</article>
|
|
446
|
-
</div>
|
|
447
|
-
|
|
448
|
-
<div class="unit one-fifth hide-on-mobiles">
|
|
449
|
-
<aside>
|
|
450
|
-
|
|
451
|
-
<h4>Getting Started</h4>
|
|
452
|
-
<ul>
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
<li class=""><a href="/docs/home/">Welcome</a></li>
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
<li class=""><a href="/docs/quickstart/">Quick-start guide</a></li>
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
<li class=""><a href="/docs/installation/">Installation</a></li>
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
<li class=""><a href="/docs/windows/">Jekyll on Windows</a></li>
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
<li class=""><a href="/docs/usage/">Basic Usage</a></li>
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
<li class=""><a href="/docs/structure/">Directory structure</a></li>
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
<li class=""><a href="/docs/configuration/">Configuration</a></li>
|
|
481
|
-
|
|
482
|
-
</ul>
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
<h4>Your Content</h4>
|
|
486
|
-
<ul>
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
<li class=""><a href="/docs/frontmatter/">Front Matter</a></li>
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
<li class=""><a href="/docs/posts/">Writing posts</a></li>
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
<li class=""><a href="/docs/drafts/">Working with drafts</a></li>
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
<li class=""><a href="/docs/pages/">Creating pages</a></li>
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
<li class=""><a href="/docs/static-files/">Static Files</a></li>
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
<li class=""><a href="/docs/variables/">Variables</a></li>
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
<li class=""><a href="/docs/collections/">Collections</a></li>
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
<li class=""><a href="/docs/datafiles/">Data Files</a></li>
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
<li class="current"><a href="/docs/assets/">Assets</a></li>
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
<li class=""><a href="/docs/migrations/">Blog migrations</a></li>
|
|
527
|
-
|
|
528
|
-
</ul>
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
<h4>Customization</h4>
|
|
532
|
-
<ul>
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
<li class=""><a href="/docs/templates/">Templates</a></li>
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
<li class=""><a href="/docs/includes/">Includes</a></li>
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
<li class=""><a href="/docs/permalinks/">Permalinks</a></li>
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
<li class=""><a href="/docs/pagination/">Pagination</a></li>
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
<li class=""><a href="/docs/plugins/">Plugins</a></li>
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
<li class=""><a href="/docs/themes/">Themes</a></li>
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
<li class=""><a href="/docs/extras/">Extras</a></li>
|
|
561
|
-
|
|
562
|
-
</ul>
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
<h4>Deployment</h4>
|
|
566
|
-
<ul>
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
<li class=""><a href="/docs/github-pages/">GitHub Pages</a></li>
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
<li class=""><a href="/docs/deployment-methods/">Deployment methods</a></li>
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
<li class=""><a href="/docs/continuous-integration/">Continuous Integration</a></li>
|
|
579
|
-
|
|
580
|
-
</ul>
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
<h4>Miscellaneous</h4>
|
|
584
|
-
<ul>
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
<li class=""><a href="/docs/troubleshooting/">Troubleshooting</a></li>
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
<li class=""><a href="/docs/sites/">Sites using Jekyll</a></li>
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
<li class=""><a href="/docs/resources/">Resources</a></li>
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
<li class=""><a href="/docs/upgrading/0-to-2/">Upgrading from 0.x to 2.x</a></li>
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
<li class=""><a href="/docs/upgrading/2-to-3/">Upgrading from 2.x to 3.x</a></li>
|
|
605
|
-
|
|
606
|
-
</ul>
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
<h4>Meta</h4>
|
|
610
|
-
<ul>
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
<li class=""><a href="/docs/contributing/">Contributing</a></li>
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
<li class=""><a href="/docs/maintaining/">Maintaining Jekyll</a></li>
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
<li class=""><a href="/docs/conduct/">Code of Conduct</a></li>
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
<li class=""><a href="/docs/history/">History</a></li>
|
|
627
|
-
|
|
628
|
-
</ul>
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
</aside>
|
|
632
|
-
</div>
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
<div class="clear"></div>
|
|
636
|
-
|
|
637
|
-
</div>
|
|
638
|
-
</section>
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
<footer>
|
|
642
|
-
<div class="grid">
|
|
643
|
-
<div class="unit one-third center-on-mobiles">
|
|
644
|
-
<p>The contents of this website are <br>© 2017 under the terms of the <a href="https://github.com/jekyll/jekyll/blob/master/LICENSE">MIT License</a>.</p>
|
|
645
|
-
</div>
|
|
646
|
-
<div class="unit two-thirds align-right center-on-mobiles">
|
|
647
|
-
<p>
|
|
648
|
-
Proudly hosted by
|
|
649
|
-
<a href="https://github.com">
|
|
650
|
-
<img src="/img/footer-logo.png" width="100" height="30" alt="GitHub • Social coding">
|
|
651
|
-
</a>
|
|
652
|
-
</p>
|
|
653
|
-
</div>
|
|
654
|
-
</div>
|
|
655
|
-
</footer>
|
|
656
|
-
|
|
657
|
-
<script>
|
|
658
|
-
var anchorForId = function (id) {
|
|
659
|
-
var anchor = document.createElement("a");
|
|
660
|
-
anchor.className = "header-link";
|
|
661
|
-
anchor.href = "#" + id;
|
|
662
|
-
anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
|
|
663
|
-
anchor.title = "Permalink";
|
|
664
|
-
return anchor;
|
|
665
|
-
};
|
|
666
|
-
|
|
667
|
-
var linkifyAnchors = function (level, containingElement) {
|
|
668
|
-
var headers = containingElement.getElementsByTagName("h" + level);
|
|
669
|
-
for (var h = 0; h < headers.length; h++) {
|
|
670
|
-
var header = headers[h];
|
|
671
|
-
|
|
672
|
-
if (typeof header.id !== "undefined" && header.id !== "") {
|
|
673
|
-
header.appendChild(anchorForId(header.id));
|
|
674
|
-
}
|
|
675
|
-
}
|
|
676
|
-
};
|
|
677
|
-
|
|
678
|
-
document.onreadystatechange = function () {
|
|
679
|
-
if (this.readyState === "complete") {
|
|
680
|
-
var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
|
|
681
|
-
if (!contentBlock) {
|
|
682
|
-
return;
|
|
683
|
-
}
|
|
684
|
-
for (var level = 1; level <= 6; level++) {
|
|
685
|
-
linkifyAnchors(level, contentBlock);
|
|
686
|
-
}
|
|
687
|
-
}
|
|
688
|
-
};
|
|
689
|
-
</script>
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
<!-- Gauges (http://get.gaug.es/) -->
|
|
693
|
-
<script>
|
|
694
|
-
var _gauges = _gauges || [];
|
|
695
|
-
(function() {
|
|
696
|
-
var t = document.createElement('script');
|
|
697
|
-
t.type = 'text/javascript';
|
|
698
|
-
t.async = true;
|
|
699
|
-
t.id = 'gauges-tracker';
|
|
700
|
-
t.setAttribute('data-site-id', '503c5af6613f5d0f19000027');
|
|
701
|
-
t.src = '//secure.gaug.es/track.js';
|
|
702
|
-
var s = document.getElementsByTagName('script')[0];
|
|
703
|
-
s.parentNode.insertBefore(t, s);
|
|
704
|
-
})();
|
|
705
|
-
</script>
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
<!-- Google Analytics (https://www.google.com/analytics) -->
|
|
710
|
-
<script>
|
|
711
|
-
!function(j,e,k,y,l,L){j.GoogleAnalyticsObject=y,j[y]||(j[y]=function(){
|
|
712
|
-
(j[y].q=j[y].q||[]).push(arguments)}),j[y].l=+new Date,l=e.createElement(k),
|
|
713
|
-
L=e.getElementsByTagName(k)[0],l.src='//www.google-analytics.com/analytics.js',
|
|
714
|
-
L.parentNode.insertBefore(l,L)}(window,document,'script','ga');
|
|
715
|
-
|
|
716
|
-
ga('create', 'UA-50755011-1', 'jekyllrb.com');
|
|
717
|
-
ga('send', 'pageview');
|
|
718
|
-
|
|
719
|
-
</script>
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
</body>
|
|
724
|
-
</html>
|