mirror of
https://github.com/docker/docs.git
synced 2026-03-27 06:18:55 +07:00
* rough pass at tabs, jsonification * GHPages 147, authoring YML, sitemap via plugin, working JS * Update Gemfile * Removing dk.rb artifact * Simplifying authoring YML even more * More YML simplification * Remove jekyll-seo -- even more perf gain * Glossary support * Collections support * Incremental off; GH Pages 172 gets build time to 50 seconds
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
---
|
|
layout: null
|
|
---
|
|
var collectionsTOC = new Array()
|
|
collectionsTOC["library"] = [
|
|
{% for page in site.samples %}
|
|
{
|
|
"path":{{ page.url | jsonify }},
|
|
"title":{{ page.title | jsonify }}
|
|
}{% unless forloop.last%},{% endunless %}
|
|
{% endfor %}
|
|
]
|