├── 404.html ├── _includes ├── themes │ ├── tom │ │ ├── settings.yml │ │ ├── page.html │ │ ├── post.html │ │ └── default.html │ ├── twitter │ │ ├── settings.yml │ │ ├── page.html │ │ ├── post.html │ │ └── default.html │ ├── mark-reid │ │ ├── settings.yml │ │ ├── page.html │ │ ├── post.html │ │ └── default.html │ └── the-minimum │ │ ├── settings.yml │ │ ├── page.html │ │ ├── post.html │ │ └── default.html └── JB │ ├── comments-providers │ ├── facebook │ ├── livefyre │ ├── intensedebate │ └── disqus │ ├── sharing │ ├── analytics │ ├── comments │ ├── analytics-providers │ ├── google │ └── getclicky │ ├── setup │ ├── tags_list │ ├── liquid_raw │ ├── pages_list │ ├── categories_list │ └── posts_collate ├── .gitignore ├── _layouts ├── page.html ├── post.html └── default.html ├── assets └── themes │ ├── the-minimum │ ├── font │ │ ├── Junction-webfont.eot │ │ ├── Junction-webfont.ttf │ │ ├── Junction-webfont.woff │ │ └── Junction-webfont.svg │ ├── skin │ │ └── 100-90-5-monochrome.png │ ├── css │ │ ├── module.css │ │ ├── helper.css │ │ ├── syntaxhighlighter.css │ │ ├── base.css │ │ ├── _less-base.less │ │ ├── _layout.less │ │ ├── style.less │ │ └── style.css │ └── readme.markdown │ ├── twitter │ └── css │ │ └── style.css │ ├── tom │ └── css │ │ ├── syntax.css │ │ └── screen.css │ └── mark-reid │ └── css │ ├── syntax.css │ └── screen.css ├── archive.html ├── pages.html ├── sitemap.txt ├── tags.html ├── categories.html ├── atom.xml ├── _plugins └── debug.rb ├── README.md ├── index.md ├── _config.yml ├── Rakefile └── _posts └── core-samples └── 2011-12-29-jekyll-introduction.md /404.html: -------------------------------------------------------------------------------- 1 | Sorry this page does not exist =( 2 | -------------------------------------------------------------------------------- /_includes/themes/tom/settings.yml: -------------------------------------------------------------------------------- 1 | theme : 2 | name : tom -------------------------------------------------------------------------------- /_includes/themes/twitter/settings.yml: -------------------------------------------------------------------------------- 1 | theme : 2 | name : twitter -------------------------------------------------------------------------------- /_includes/JB/comments-providers/facebook: -------------------------------------------------------------------------------- 1 |
#{obj.class}\n#{obj.pretty_inspect}"
33 | end
34 |
35 | end # DebugFilter
36 | end # Jekyll
37 |
38 | Liquid::Template.register_filter(Jekyll::DebugFilter)
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Jekyll-Bootstrap
2 |
3 | The quickest way to start and publish your Jekyll powered blog. 100% compatible with GitHub pages
4 |
5 | ## Usage
6 |
7 | For all usage and documentation please see: {{text | replace:"|.", "{" | replace:".|", "}" | replace:">", ">" | replace:"<", "<" }}
31 | {% endif %}
32 | {% assign text = nil %}
--------------------------------------------------------------------------------
/_includes/JB/pages_list:
--------------------------------------------------------------------------------
1 | {% comment %}{% endcomment %}
22 |
23 | {% if site.JB.pages_list.provider == "custom" %}
24 | {% include custom/pages_list %}
25 | {% else %}
26 | {% for node in pages_list %}
27 | {% if group == null or group == node.group %}
28 | {% if page.url == node.url %}
29 |
55 |
56 | {% include JB/analytics %}
57 |
58 |
59 |
--------------------------------------------------------------------------------
/_includes/themes/mark-reid/default.html:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |