diff --git a/doc_tag-formatting.html b/doc_tag-formatting.html index 5321fef..b16de10 100644 --- a/doc_tag-formatting.html +++ b/doc_tag-formatting.html @@ -1,5 +1,6 @@ --- title: "Formatting pages" tagName: formatting +search: exclude --- {% include taglogic.html %} \ No newline at end of file diff --git a/doc_tag-getting-started.html b/doc_tag-getting-started.html index cc889c4..08f3e69 100644 --- a/doc_tag-getting-started.html +++ b/doc_tag-getting-started.html @@ -1,5 +1,6 @@ --- title: "Getting started pages" tagName: getting-started +search: exclude --- {% include taglogic.html %} \ No newline at end of file diff --git a/doc_tag-navigation.html b/doc_tag-navigation.html index f55163a..be52325 100644 --- a/doc_tag-navigation.html +++ b/doc_tag-navigation.html @@ -1,5 +1,6 @@ --- title: "Navigation pages" tagName: navigation +search: exclude --- {% include taglogic.html %} \ No newline at end of file diff --git a/doc_tag-publishing.html b/doc_tag-publishing.html index 9d01034..ccdaa22 100644 --- a/doc_tag-publishing.html +++ b/doc_tag-publishing.html @@ -1,5 +1,6 @@ --- title: "Publishing pages" tagName: publishing +search: exclude --- {% include taglogic.html %} \ No newline at end of file diff --git a/doc_tag-single-sourcing.html b/doc_tag-single-sourcing.html index 81bcf26..ec4c767 100644 --- a/doc_tag-single-sourcing.html +++ b/doc_tag-single-sourcing.html @@ -1,5 +1,6 @@ --- title: "Single-sourcing pages" tagName: single-sourcing +search: exclude --- {% include taglogic.html %} \ No newline at end of file diff --git a/doc_tag-special-layouts.html b/doc_tag-special-layouts.html index 12f0bfe..d8881c9 100644 --- a/doc_tag-special-layouts.html +++ b/doc_tag-special-layouts.html @@ -1,5 +1,6 @@ --- title: "Special layout pages" tagName: special-layouts +search: exclude --- {% include taglogic.html %} \ No newline at end of file diff --git a/feed.xml b/feed.xml deleted file mode 100644 index 19c7283..0000000 --- a/feed.xml +++ /dev/null @@ -1,31 +0,0 @@ ---- -layout: null -search: false ---- - - - - {{ site.title | xml_escape }} - {{ site.description | xml_escape }} - - - {{ site.time | date_to_rfc822 }} - {{ site.time | date_to_rfc822 }} - Jekyll v{{ jekyll.version }} - {% for post in site.posts limit:10 %} - - {{ post.title | xml_escape }} - {{ post.content | xml_escape }} - {{ post.date | date_to_rfc822 }} - {{ post.url }} - {{ post.url }} - {% for tag in post.tags %} - {{ tag | xml_escape }} - {% endfor %} - {% for cat in post.categories %} - {{ cat | xml_escape }} - {% endfor %} - - {% endfor %} - - diff --git a/prince-file-list.txt b/prince-file-list.txt index 02a6cd0..7c3528c 100644 --- a/prince-file-list.txt +++ b/prince-file-list.txt @@ -1,6 +1,6 @@ --- layout: none -search: false +search: exclude --- {% include custom/conditions.html %} diff --git a/search.json b/search.json index 3fc141a..e40e460 100644 --- a/search.json +++ b/search.json @@ -1,40 +1,23 @@ --- +title: search layout: none -search: false +search: exclude --- [ - {% for page in site.pages %} - {% if page.search == true %} - { - "title": "{{ page.title | escape }}", - "tags": "{{ page.tags }}", - "keywords": "{{page.keywords}}", - "url": "{{ page.url | replace: "/", "" }}", - "last_updated": "{{ page.last_updated }}", - "summary": "{{page.summary}}", - "body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' }}" - } - {% unless forloop.last %},{% endunless %} +{% for page in site.pages %} +{% unless page.search == "exclude" %} +{ +"title": "{{ page.title | escape }}", +"tags": "{{ page.tags }}", +"keywords": "{{page.keywords}}", +"url": "{{ page.url | replace: '/','' }}", +"summary": "{{page.summary}}", +"body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' }}" +}, +{% endunless %} - {% endif %} - {% endfor %} - - {% for post in site.posts %} - {% if forloop.length != 0 and forloop.first %},{% endif %} - - {% if post.search == true %} - { - "title": "{{ page.title | escape }}", - "tags": "{{ page.tags }}", - "keywords": "{{page.keywords}}", - "url": "{{ site.baseurl }}{{ page.url }}", - "last_updated": "{{ page.last_updated }}", - "summary": "{{page.summary}}", - "body": "{{ page.content | strip_html | strip_newlines | replace: '\', '\\\\' | replace: '"', '\\"' }}" - } {% unless forloop.last %},{% endunless %} - {% endif %} - {% endfor %} +{% endfor %} +null ] - diff --git a/sitemap.xml b/sitemap.xml index d46237f..7a6c075 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,33 +1,10 @@ --- layout: null -search: false +search: exclude --- - {% for post in site.posts %} - {% unless post.published == false %} - - {{ site.url }}{{ post.url }} - {% if post.sitemap.last_updated %} - {{ post.sitemap.last_updated | date: "%Y-%m-%d" }} - {% elsif post.date %} - {{ post.date | date_to_xmlschema }} - {% else %} - {{ site.time | date_to_xmlschema }} - {% endif %} - {% if post.sitemap.changefreq %} - {{ post.sitemap.changefreq }} - {% else %} - monthly - {% endif %} - {% if post.sitemap.priority %} - {{ post.sitemap.priority }} - {% else %} - 0.5 - {% endif %} - - {% endunless %} - {% endfor %} + {% for page in site.pages %} {% unless page.sitemap.exclude == "yes" %} diff --git a/titlepage.html b/titlepage.html index 0d04af7..4010462 100644 --- a/titlepage.html +++ b/titlepage.html @@ -1,5 +1,6 @@ --- type: title +search: exclude ---
{{site.print_title}}
diff --git a/tocpage.html b/tocpage.html index eb9cc80..5cd2139 100644 --- a/tocpage.html +++ b/tocpage.html @@ -1,5 +1,6 @@ --- type: frontmatter +search: exclude --- diff --git a/tooltips.json b/tooltips.json index 8d92136..ec60f98 100644 --- a/tooltips.json +++ b/tooltips.json @@ -1,6 +1,6 @@ --- layout: none -search: false +search: exclude --- { "entries":