Jekyll-Info

Time {{ site.time }}
URL {{ site.url }}
{% for collection in site.collections %} {% endfor %}
Collections {{ site.collections | size }}
{{ collection.label }} {{ collection.docs | size }}
Data Files {{ site.data | size }}
Pages {{ site.pages | size }}
Static Files {{ site.static_files | size }}
Categories {%- for category in site.categories -%} {{category[0]}}{% unless forloop.last %}, {% endunless %} {%- endfor -%}
Tags {%- for tag in site.tags -%} {{tag[0]}}{% unless forloop.last %}, {% endunless %} {%- endfor -%}
Theme {{ site.theme }}

Configuration

{% for collection in site.collections %} {% endfor %} {% for default in site.defaults %} {% for value in default.scope %} {% endfor %} {% for value in default.values %} {% endfor %} {% endfor %}
jekyll
version {{ jekyll.version }}
environment {{ jekyll.environment }}
site
source {{ site.source }}
destination {{ site.destination }}
collections_dir {{ site.collections_dir }}
data_dir {{ site.data_dir }}
includes_dir {{ site.includes_dir }}
layouts_dir {{ site.layouts_dir }}
plugins_dir {{ site.plugins_dir }}
safe {{ site.safe }}
include {{ site.include | join: ", " }}
exclude {{ site.exclude | join: ", " }}
keep_files {{ site.keep_files | join: ", " }}
encoding {{ site.encoding }}
markdown_ext {{ site.markdown_ext }}
strict_front_matter {{ site.strict_front_matter }}
show_drafts {{ site.show_drafts }}
limit_posts {{ site.limit_posts }}
future {{ site.future }}
unpublished {{ site.unpublished }}
whitelist {{ site.whitelist | join: ", " }}
plugins {{ site.plugins | join: ", " }}
markdown {{ site.markdown }}
highlighter {{ site.highlighter }}
lsi {{ site.lsi }}
excerpt_separator {{ site.excerpt_separator }}
incremental {{ site.incremental }}
detach {{ site.detach }}
port {{ site.port }}
host {{ site.host }}
baseurl {{ site.baseurl }}
show_dir_listing {{ site.show_dir_listing }}
permalink {{ site.permalink }}
paginate_path {{ site.paginate_path }}
timezone {{ site.timezone }}
quiet {{ site.quiet }}
verbose {{ site.verbose }}
site.collections.{{ collection.label }}
relative_directory {{ collection.relative_directory }}
directory {{ collection.directory }}
output {{ collection.output }}
site.defaults
scope
{{ value[0] }} {{ value[1] }}
values
{{ value[0] }} {{ value[1] }}
site.liquid
error_mode {{ site.liquid.error_mode }}
strict_filters {{ site.liquid.strict_filters }}
strict_variables {{ site.liquid.strict_variables }}
site.rdiscount
extensions {{ site.rdiscount.extensions | join: ", " }}
site.redcarpet
extensions {{ site.redcarpet.extensions | join: ", " }}
site.kramdown
auto_ids {{ site.kramdown.auto_ids }}
entity_output {{ site.kramdown.entity_output }}
toc_levels {{ site.kramdown.toc_levels }}
smart_quotes {{ site.kramdown.smart_quotes }}
input {{ site.kramdown.input }}
hard_wrap {{ site.kramdown.hard_wrap }}
footnote_nr {{ site.kramdown.footnote_nr }}
show_warnings {{ site.kramdown.show_warnings }}

Collections

{% for collection in site.collections %}

Documents in {{ collection.label }}

{% for doc in collection.docs %} {% endfor %}
title path date
{{ doc.title }} {{ doc.path }} {{ doc.date | date_to_xmlschema }}
{% endfor %}

Data Files

{% for data in site.data %} {% endfor %}
site.data
{{ data[0] }} {{ data | jsonify }}

Pages

{% for doc in site.pages %} {% endfor %}
title path date
{{ doc.title }} {{ doc.path }} {{ doc.date | date_to_xmlschema }}

Static Files

{% for file in site.static_files %} {% endfor %}
path modified_time
{{ file.path | remove_first: "/" }} {{ file.modified_time | date_to_xmlschema }}