--- layout: null --- [ {%- for page in site.html_pages -%} {%- if page.sitemap == false -%} {%- continue -%} {%- endif -%} {%- assign page_title = nil -%} {%- assign page_description = nil -%} {%- if page.title == nil and page.content and page.content contains '' | last -%} {%- assign page_title = c | strip_html | strip | truncatewords: 10 -%} {%- endif -%} {%- if page.description == nil and page.datafile != nil and page.datafile != '' -%} {%- assign yaml_data = site.data[page.datafolder][page.datafile] -%} {%- if yaml_data.long and yaml_data.long != '' -%} {%- assign page_description = page.title | append: ': ' | append: yaml_data.long | strip_html | strip | truncatewords: 30 -%} {%- elsif yaml_data.short and yaml_data.short != '' -%} {%- assign page_description = page.title | append: ': ' | append: yaml_data.short | strip_html | strip | truncatewords: 30 -%} {%- elsif page.content and page.content != '' -%} {%- assign page_description = page.content | strip_html | strip | truncatewords: 30 -%} {%- endif -%} {%- endif -%} {%- if page.title == nil and page_title == nil -%}{%- continue -%}{%- endif %} {"url":{{ page.url | jsonify }},"title":{{ page.title | default: page_title | jsonify }},"description":{{ page.description | default: page_description | jsonify }},"keywords":{{ page.keywords | jsonify }}}, {%- endfor %} {}]