mirror of https://github.com/docker/docs.git
13 lines
409 B
Plaintext
13 lines
409 B
Plaintext
---
|
|
layout: null
|
|
---
|
|
{% assign firstPage = "yes" %}{
|
|
"pages":[{% for page in site.pages %}{% if page.title and page.hide_from_sitemap != true %}{% if firstPage == "no" %},{% else %}{% assign firstPage = "no" %}{% endif %}
|
|
{
|
|
"url":{{ page.url | jsonify }},
|
|
"title":{{ page.title | jsonify }},
|
|
"description":{{ page.description | jsonify }},
|
|
"keywords":{{ page.keywords | jsonify }}
|
|
}
|
|
{% endif %}{% endfor %}]}
|