From f878aa943bfc194daa06aa0bc5e299495362a794 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Mon, 19 Feb 2018 08:10:26 -0500 Subject: [PATCH 0001/1024] Add link to jekyll-algolia's documentation --- CHANGELOG.md | 1 + docs/_docs/05-configuration.md | 5 ++++- docs/_docs/18-history.md | 3 ++- docs/_posts/2017-11-28-post-exclude-search.md | 17 +++++++++++++++++ test/_posts/2017-11-28-post-exclude-search.md | 17 +++++++++++++++++ 5 files changed, 41 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7fb6cab5c43..c0f7c6d1f4a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ### Enhancements * Update jQuery to version `3.3.1`. [#1491](https://github.com/mmistakes/minimal-mistakes/issues/1491) +* Add link to jekyll-algolia's `files_to_exclude` documentation. ### Bug Fixes diff --git a/docs/_docs/05-configuration.md b/docs/_docs/05-configuration.md index 8150891594fe..8251ec6055f2 100644 --- a/docs/_docs/05-configuration.md +++ b/docs/_docs/05-configuration.md @@ -2,7 +2,7 @@ title: "Configuration" permalink: /docs/configuration/ excerpt: "Settings for configuring and customizing the theme." -last_modified_at: 2018-02-16T12:49:45-05:00 +last_modified_at: 2018-02-19T08:09:39-05:00 toc: true --- @@ -530,6 +530,9 @@ For faster and more relevant search ([see demo](https://mmistakes.github.io/mini To use the Algolia search with GitHub Pages hosted sites follow [this deployment guide](https://community.algolia.com/jekyll-algolia/github-pages.html). Or this guide for [deploying on Netlify](https://community.algolia.com/jekyll-algolia/netlify.html). +**Note:** The Jekyll Algolia plugin can be configured in several ways. Be sure to check out [their full documentation](https://community.algolia.com/jekyll-algolia/options.html "Algolia configuration") on how to exclude files and other valuable settings. +{: .notice--info} + ### SEO, Social Sharing, and Analytics Settings All optional, but a good idea to take the time setting up to improve SEO and links shared from the site. diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index 583f17b1917f..2d855de43a4d 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -4,7 +4,7 @@ permalink: /docs/history/ excerpt: "Change log of enhancements and bug fixes made to the theme." sidebar: nav: docs -last_modified_at: 2018-02-16T15:18:36-05:00 +last_modified_at: 2018-02-19T08:07:26-05:00 toc: true --- @@ -13,6 +13,7 @@ toc: true ### Enhancements * Update jQuery to version `3.3.1`. [#1491](https://github.com/mmistakes/minimal-mistakes/issues/1491) +* Add link to jekyll-algolia's `files_to_exclude` documentation. ### Bug Fixes diff --git a/docs/_posts/2017-11-28-post-exclude-search.md b/docs/_posts/2017-11-28-post-exclude-search.md index 742bcb231fdf..03f0d0567d32 100644 --- a/docs/_posts/2017-11-28-post-exclude-search.md +++ b/docs/_posts/2017-11-28-post-exclude-search.md @@ -3,10 +3,27 @@ title: "Exclude Post from Search Index" search: false categories: - Jekyll +last_modified_at: 2018-02-19T08:06:00-05:00 --- This post should not appear in the search index because it has the following YAML Front Matter: ```yaml search: false +``` + +**Note:** `search: false` only works to exclude post's when using Lunr as a search provider. +{: .notice--info} + +To exclude files when using Algolia as a search provider add an array to `algolia.files_to_exclude` in your `_config.yml`. For more configuration options be sure to check their [full documentation](https://community.algolia.com/jekyll-algolia/options.html). + +```yaml +algolia: + # Exclude more files from indexing + files_to_exclude: + - index.html + - index.md + - excluded-file.html + - _posts/2017-11-28-post-exclude-search.md + - subdirectory/*.html ``` \ No newline at end of file diff --git a/test/_posts/2017-11-28-post-exclude-search.md b/test/_posts/2017-11-28-post-exclude-search.md index 742bcb231fdf..907343a8b129 100644 --- a/test/_posts/2017-11-28-post-exclude-search.md +++ b/test/_posts/2017-11-28-post-exclude-search.md @@ -3,10 +3,27 @@ title: "Exclude Post from Search Index" search: false categories: - Jekyll +last_modified_at: 2018-02-19T08:05:34-05:00 --- This post should not appear in the search index because it has the following YAML Front Matter: ```yaml search: false +``` + +**Note:** `search: false` only works to exclude post's when using **Lunr** as a search provider. +{: .notice--info} + +To exclude files when using **Algolia** as a search provider add an array to `algolia.files_to_exclude` in your `_config.yml`. For more configuration options be sure to check their [full documentation](https://community.algolia.com/jekyll-algolia/options.html). + +```yaml +algolia: + # Exclude more files from indexing + files_to_exclude: + - index.html + - index.md + - excluded-file.html + - _posts/2017-11-28-post-exclude-search.md + - subdirectory/*.html ``` \ No newline at end of file From 1493db8fdf083e5cdeda0a8e3d59216ec277fba0 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Mon, 19 Feb 2018 08:13:24 -0500 Subject: [PATCH 0002/1024] Remove apostrophe --- docs/_posts/2017-11-28-post-exclude-search.md | 2 +- test/_posts/2017-11-28-post-exclude-search.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_posts/2017-11-28-post-exclude-search.md b/docs/_posts/2017-11-28-post-exclude-search.md index 03f0d0567d32..821e4edd1900 100644 --- a/docs/_posts/2017-11-28-post-exclude-search.md +++ b/docs/_posts/2017-11-28-post-exclude-search.md @@ -12,7 +12,7 @@ This post should not appear in the search index because it has the following YAM search: false ``` -**Note:** `search: false` only works to exclude post's when using Lunr as a search provider. +**Note:** `search: false` only works to exclude posts when using Lunr as a search provider. {: .notice--info} To exclude files when using Algolia as a search provider add an array to `algolia.files_to_exclude` in your `_config.yml`. For more configuration options be sure to check their [full documentation](https://community.algolia.com/jekyll-algolia/options.html). diff --git a/test/_posts/2017-11-28-post-exclude-search.md b/test/_posts/2017-11-28-post-exclude-search.md index 907343a8b129..cb5b55d83735 100644 --- a/test/_posts/2017-11-28-post-exclude-search.md +++ b/test/_posts/2017-11-28-post-exclude-search.md @@ -12,7 +12,7 @@ This post should not appear in the search index because it has the following YAM search: false ``` -**Note:** `search: false` only works to exclude post's when using **Lunr** as a search provider. +**Note:** `search: false` only works to exclude posts when using **Lunr** as a search provider. {: .notice--info} To exclude files when using **Algolia** as a search provider add an array to `algolia.files_to_exclude` in your `_config.yml`. For more configuration options be sure to check their [full documentation](https://community.algolia.com/jekyll-algolia/options.html). From abfefd920dea75d37eeb1a7f66277b70f37ada21 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Wed, 21 Feb 2018 21:41:00 +0900 Subject: [PATCH 0003/1024] https link to realfavicongenerator.net (#1539) --- _includes/head/custom.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/head/custom.html b/_includes/head/custom.html index 0176731320fa..978d84fd8bdd 100644 --- a/_includes/head/custom.html +++ b/_includes/head/custom.html @@ -1,5 +1,5 @@ - + - \ No newline at end of file + From 923019e7dedb794825e07775dc39d95271588228 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Wed, 21 Feb 2018 21:41:28 +0900 Subject: [PATCH 0004/1024] update to jquery 3.3.1 (#1540) --- docs/_docs/17-javascript.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/17-javascript.md b/docs/_docs/17-javascript.md index 6f5d4d8c5d87..5e788c719e0e 100644 --- a/docs/_docs/17-javascript.md +++ b/docs/_docs/17-javascript.md @@ -18,7 +18,7 @@ minimal mistakes | | | └── jquery.smooth-scroll.min.js # make same-page links scroll smoothly | | ├── vendor | | | └── jquery -| | | └── jquery-3.2.1.min.js +| | | └── jquery-3.3.1.min.js | | ├── _main.js # jQuery plugin settings and other scripts | | └── main.min.js # concatenated and minified scripts ``` @@ -35,7 +35,7 @@ You can also add scripts to the `` or closing `` elements by adding ```yaml head_scripts: - - https://code.jquery.com/jquery-3.2.1.min.js + - https://code.jquery.com/jquery-3.3.1.min.js - /assets/js/your-custom-head-script.js footer_scripts: - /assets/js/your-custom-footer-script.js From 7692a98fce69b4c633738712163e7b0ca461a1bf Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Wed, 21 Feb 2018 08:01:07 -0500 Subject: [PATCH 0005/1024] Fix formatting --- _data/ui-text.yml | 33 +++++++++++++++-------------- docs/_data/ui-text.yml | 47 +++++++++++++++++++++--------------------- 2 files changed, 41 insertions(+), 39 deletions(-) diff --git a/_data/ui-text.yml b/_data/ui-text.yml index c28935222fc2..9f3c995f8185 100644 --- a/_data/ui-text.yml +++ b/_data/ui-text.yml @@ -52,7 +52,7 @@ en-AU: <<: *DEFAULT_EN # Spanish -# -------------- +# ------- es: &DEFAULT_ES page : "Página" pagination_previous : "Anterior" @@ -97,7 +97,7 @@ es-CO: <<: *DEFAULT_ES # French -# ----------------- +# ------ fr: &DEFAULT_FR page : "Page" pagination_previous : "Précédent" @@ -145,7 +145,7 @@ fr-CH: <<: *DEFAULT_FR # Turkish -# ----------------- +# ------- tr: &DEFAULT_TR page : "Sayfa" pagination_previous : "Önceki" @@ -188,6 +188,7 @@ tr-TR: <<: *DEFAULT_TR # Portuguese +# ---------- pt: &DEFAULT_PT page : "Página" pagination_previous : "Anterior" @@ -228,7 +229,6 @@ pt: &DEFAULT_PT loading_label : "A carregar..." pt-PT: <<: *DEFAULT_PT - # Brazilian Portuguese pt-BR: page : "Página" @@ -270,7 +270,7 @@ pt-BR: loading_label : "Carregando..." # Italian -# ----------------- +# ------- it: &DEFAULT_IT page : "Pagina" pagination_previous : "Precedente" @@ -313,7 +313,7 @@ it-IT: <<: *DEFAULT_IT # Chinese (zh-CN Chinese - China) -# ----------------- +# -------------------------------- zh: &DEFAULT_ZH_HANS page : "页面" pagination_previous : "向前" @@ -397,8 +397,9 @@ zh-TW: &DEFAULT_ZH_HANT loading_label : "載入中..." zh-HK: <<: *DEFAULT_ZH_HANT + # German / Deutsch -# ----------------- +# ---------------- de: &DEFAULT_DE page : "Seite" pagination_previous : "Vorherige" @@ -451,7 +452,7 @@ de-LU: <<: *DEFAULT_DE # Nepali (Nepal) -# ----------------- +# -------------- ne: &DEFAULT_NE page : "पृष्‍ठ" pagination_previous : "अघिल्लो" @@ -494,7 +495,7 @@ ne-NP: <<: *DEFAULT_NE # Korean -# -------------- +# ------ ko: &DEFAULT_KO page : "페이지" pagination_previous : "이전" @@ -582,7 +583,7 @@ ru-RU: <<: *DEFAULT_RU # Lithuanian / Lietuviškai -# ----------------- +# ------------------------ lt: &DEFAULT_LT page : "Puslapis" pagination_previous : "Ankstesnis" @@ -625,7 +626,7 @@ lt-LT: <<: *DEFAULT_LT # Greek -# -------------- +# ----- gr: &DEFAULT_GR page : "Σελίδα" pagination_previous : "Προηγούμενo" @@ -670,7 +671,7 @@ gr-GR: <<: *DEFAULT_GR # Swedish -# ----------------- +# ------- sv: &DEFAULT_SV page : "Sidan" pagination_previous : "Föregående" @@ -715,7 +716,7 @@ sv-FI: <<: *DEFAULT_SV # Dutch -# ----------------- +# ----- nl: &DEFAULT_NL page : "Pagina" pagination_previous : "Vorige" @@ -760,7 +761,7 @@ nl-NL: <<: *DEFAULT_NL # Indonesian -# ----------------- +# ---------- id: &DEFAULT_ID page : "Halaman" pagination_previous : "Kembali" @@ -803,7 +804,7 @@ id-ID: <<: *DEFAULT_ID # Vietnamese -# ----------------- +# ---------- vi: &DEFAULT_VI page : "Trang" pagination_previous : "Trước" @@ -934,7 +935,7 @@ da-PL: <<: *DEFAULT_PL # Japanese -# ----------------- +# -------- ja: &DEFAULT_JA page : "ページ" pagination_previous : "前へ" diff --git a/docs/_data/ui-text.yml b/docs/_data/ui-text.yml index b3f94c7f01fc..9f3c995f8185 100644 --- a/docs/_data/ui-text.yml +++ b/docs/_data/ui-text.yml @@ -52,7 +52,7 @@ en-AU: <<: *DEFAULT_EN # Spanish -# -------------- +# ------- es: &DEFAULT_ES page : "Página" pagination_previous : "Anterior" @@ -97,7 +97,7 @@ es-CO: <<: *DEFAULT_ES # French -# ----------------- +# ------ fr: &DEFAULT_FR page : "Page" pagination_previous : "Précédent" @@ -145,7 +145,7 @@ fr-CH: <<: *DEFAULT_FR # Turkish -# ----------------- +# ------- tr: &DEFAULT_TR page : "Sayfa" pagination_previous : "Önceki" @@ -188,6 +188,7 @@ tr-TR: <<: *DEFAULT_TR # Portuguese +# ---------- pt: &DEFAULT_PT page : "Página" pagination_previous : "Anterior" @@ -228,7 +229,6 @@ pt: &DEFAULT_PT loading_label : "A carregar..." pt-PT: <<: *DEFAULT_PT - # Brazilian Portuguese pt-BR: page : "Página" @@ -270,7 +270,7 @@ pt-BR: loading_label : "Carregando..." # Italian -# ----------------- +# ------- it: &DEFAULT_IT page : "Pagina" pagination_previous : "Precedente" @@ -313,7 +313,7 @@ it-IT: <<: *DEFAULT_IT # Chinese (zh-CN Chinese - China) -# ----------------- +# -------------------------------- zh: &DEFAULT_ZH_HANS page : "页面" pagination_previous : "向前" @@ -397,15 +397,16 @@ zh-TW: &DEFAULT_ZH_HANT loading_label : "載入中..." zh-HK: <<: *DEFAULT_ZH_HANT + # German / Deutsch -# ----------------- +# ---------------- de: &DEFAULT_DE page : "Seite" pagination_previous : "Vorherige" pagination_next : "Nächste" - breadcrumb_home_label : "Home" + breadcrumb_home_label : "Start" breadcrumb_separator : "/" - menu_label : + menu_label : "Menü ein-/ausschalten" toc_label : "Auf dieser Seite" ext_link_label : "Direkter Link" less_than : "weniger als" @@ -415,13 +416,13 @@ de: &DEFAULT_DE tags_label : "Tags:" categories_label : "Kategorien:" date_label : "Aktualisiert:" - comments_label : "Hinterlassen sie einen Kommentar" + comments_label : "Hinterlassen Sie einen Kommentar" comments_title : "Kommentare" more_label : "Mehr anzeigen" related_label : "Ihnen gefällt vielleicht auch" follow_label : "Folgen:" feed_label : "Feed" - powered_by : "Powered by" + powered_by : "Möglich durch" website_label : "Webseite" email_label : "E-Mail" recent_posts : "Aktuelle Beiträge" @@ -430,12 +431,12 @@ de: &DEFAULT_DE comment_form_comment_label : "Kommentar" comment_form_md_info : "Markdown wird unterstützt." comment_form_name_label : "Name" - comment_form_email_label : "E-Mail Addresse" + comment_form_email_label : "E-Mail-Addresse" comment_form_website_label : "Webseite (optional)" comment_btn_submit : "Kommentar absenden" comment_btn_submitted : "Versendet" - comment_success_msg : "Danke für ihren Kommentar! Er wird auf der Seite angezeigt, nachdem er geprüft wurde." - comment_error_msg : "Entschuldigung, es gab einen Fehler. Bitte füllen sie alle benötigten Felder aus und versuchen sie es erneut." + comment_success_msg : "Danke für Ihren Kommentar! Er wird auf der Seite angezeigt, nachdem er geprüft wurde." + comment_error_msg : "Entschuldigung, es gab einen Fehler. Bitte füllen Sie alle benötigten Felder aus und versuchen Sie es erneut." loading_label : "Lade..." de-DE: <<: *DEFAULT_DE @@ -451,7 +452,7 @@ de-LU: <<: *DEFAULT_DE # Nepali (Nepal) -# ----------------- +# -------------- ne: &DEFAULT_NE page : "पृष्‍ठ" pagination_previous : "अघिल्लो" @@ -494,7 +495,7 @@ ne-NP: <<: *DEFAULT_NE # Korean -# -------------- +# ------ ko: &DEFAULT_KO page : "페이지" pagination_previous : "이전" @@ -582,7 +583,7 @@ ru-RU: <<: *DEFAULT_RU # Lithuanian / Lietuviškai -# ----------------- +# ------------------------ lt: &DEFAULT_LT page : "Puslapis" pagination_previous : "Ankstesnis" @@ -625,7 +626,7 @@ lt-LT: <<: *DEFAULT_LT # Greek -# -------------- +# ----- gr: &DEFAULT_GR page : "Σελίδα" pagination_previous : "Προηγούμενo" @@ -670,7 +671,7 @@ gr-GR: <<: *DEFAULT_GR # Swedish -# ----------------- +# ------- sv: &DEFAULT_SV page : "Sidan" pagination_previous : "Föregående" @@ -715,7 +716,7 @@ sv-FI: <<: *DEFAULT_SV # Dutch -# ----------------- +# ----- nl: &DEFAULT_NL page : "Pagina" pagination_previous : "Vorige" @@ -760,7 +761,7 @@ nl-NL: <<: *DEFAULT_NL # Indonesian -# ----------------- +# ---------- id: &DEFAULT_ID page : "Halaman" pagination_previous : "Kembali" @@ -803,7 +804,7 @@ id-ID: <<: *DEFAULT_ID # Vietnamese -# ----------------- +# ---------- vi: &DEFAULT_VI page : "Trang" pagination_previous : "Trước" @@ -934,7 +935,7 @@ da-PL: <<: *DEFAULT_PL # Japanese -# ----------------- +# -------- ja: &DEFAULT_JA page : "ページ" pagination_previous : "前へ" From c3ab58f99c42ee1939e650705fbf7a3ac7a4d650 Mon Sep 17 00:00:00 2001 From: Staticman Date: Wed, 21 Feb 2018 21:05:54 +0000 Subject: [PATCH 0006/1024] New comment (#1541) --- .../layout-sidebar-custom/comment-1519247076880.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docs/_data/comments/layout-sidebar-custom/comment-1519247076880.yml diff --git a/docs/_data/comments/layout-sidebar-custom/comment-1519247076880.yml b/docs/_data/comments/layout-sidebar-custom/comment-1519247076880.yml new file mode 100644 index 000000000000..05d8a4c46e12 --- /dev/null +++ b/docs/_data/comments/layout-sidebar-custom/comment-1519247076880.yml @@ -0,0 +1,9 @@ +_id: d262cff0-174a-11e8-b61b-7b344215416b +message: "Hey. I'm a newbie to github pages and jekyll, but I am liking the setup and loving your theme!\r\n\r\nI have an image that I want to add to the sidebar, but it is a little bit too big. Is there some way I can resize the image in the sidebar YAML Front Matter without needing another copy of it in github? I know I could resize it myself if I was adding it to the body of the text, but I can't find a way to do it in the YAML Front Matter.\r\nThx" +name: Brynjar Smári +email: 07e1d805e3e0472d0d7762ac8f7b2496 +url: 'https://binnisb.github.io' +hidden: '' +date: '2018-02-21T21:04:36.879Z' +approved: false +title: Comment From 95226ac727c96f436927724276c32176b080649b Mon Sep 17 00:00:00 2001 From: Staticman Date: Wed, 21 Feb 2018 21:08:26 +0000 Subject: [PATCH 0007/1024] New comment (#1542) --- .../layout-sidebar-custom/comment-1519247290410.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 docs/_data/comments/layout-sidebar-custom/comment-1519247290410.yml diff --git a/docs/_data/comments/layout-sidebar-custom/comment-1519247290410.yml b/docs/_data/comments/layout-sidebar-custom/comment-1519247290410.yml new file mode 100644 index 000000000000..b783105b4264 --- /dev/null +++ b/docs/_data/comments/layout-sidebar-custom/comment-1519247290410.yml @@ -0,0 +1,9 @@ +_id: 51aa9540-174b-11e8-b61b-7b344215416b +message: "No there isn't a native way of doing this. The theme and Jekyll core have no ability to transform your assets.\r\n\r\nYou'll need to manually do it, use a task runner like Gulp or Grunt, or a Jekyll plugin to resize the image for you." +name: Michael Rose +email: 1ce71bc10b86565464b612093d89707e +url: 'https://mademistakes.com' +hidden: '' +date: '2018-02-21T21:08:10.409Z' +approved: false +title: Comment From 4a466b1465ea6e373bece33788c90ee6889b4933 Mon Sep 17 00:00:00 2001 From: Staticman Date: Fri, 23 Feb 2018 20:17:31 +0000 Subject: [PATCH 0008/1024] New comment (#1548) --- .../comments/gemified-theme-beta/comment-1519412839827.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 docs/_data/comments/gemified-theme-beta/comment-1519412839827.yml diff --git a/docs/_data/comments/gemified-theme-beta/comment-1519412839827.yml b/docs/_data/comments/gemified-theme-beta/comment-1519412839827.yml new file mode 100644 index 000000000000..68e67cc3f995 --- /dev/null +++ b/docs/_data/comments/gemified-theme-beta/comment-1519412839827.yml @@ -0,0 +1,7 @@ +_id: c4c722a0-18cc-11e8-81e7-ad1d9008e648 +message: great theme! +name: vern +email: a6f5c444240028e515acd8e8808cd130 +url: '' +hidden: '' +date: '2018-02-23T19:07:19.827Z' From a362e3b309bab82c539e7d77c0f4938e8366886a Mon Sep 17 00:00:00 2001 From: arturamaj <36799778+arturamaj@users.noreply.github.com> Date: Sat, 24 Feb 2018 20:36:57 +0100 Subject: [PATCH 0009/1024] polish language code fix (#1550) --- _data/ui-text.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/ui-text.yml b/_data/ui-text.yml index 9f3c995f8185..c4f234bac4da 100644 --- a/_data/ui-text.yml +++ b/_data/ui-text.yml @@ -931,7 +931,7 @@ pl: &DEFAULT_PL comment_success_msg : "Dziękuję za Twój komentarz! Zostanie dodany po akceptacji." comment_error_msg : "Niestety wystąpił błąd. Proszę upewnij się, że wszystkie wymagane pola zostały wypełnione i spróbuj ponownie." loading_label : "Trwa ładowanie strony..." -da-PL: +pl-PL: <<: *DEFAULT_PL # Japanese From b99592bad0c81a566e9374a61aa1d350e9387502 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Fri, 2 Mar 2018 01:30:19 +0900 Subject: [PATCH 0010/1024] Update Font Awesome JS to 5.0.7 (#1555) --- _includes/scripts.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/scripts.html b/_includes/scripts.html index ded8e7ba599f..08da7cf4fd5c 100644 --- a/_includes/scripts.html +++ b/_includes/scripts.html @@ -9,7 +9,7 @@ {% endfor %} {% else %} - + {% endif %} {% if site.search == true or page.layout == "search" %} From 279770bb5e10cfcfcf6fa823f3725e02ed077f8c Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Thu, 1 Mar 2018 11:32:18 -0500 Subject: [PATCH 0011/1024] Update CHANGELOG and history --- CHANGELOG.md | 1 + docs/_docs/18-history.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0f7c6d1f4a5..a754cb666529 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * Update jQuery to version `3.3.1`. [#1491](https://github.com/mmistakes/minimal-mistakes/issues/1491) * Add link to jekyll-algolia's `files_to_exclude` documentation. +* Update Font Awesome to version [`5.0.7`](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md). [#1555](https://github.com/mmistakes/minimal-mistakes/pull/1555) ### Bug Fixes diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index 2d855de43a4d..c9a325795a9e 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -4,7 +4,7 @@ permalink: /docs/history/ excerpt: "Change log of enhancements and bug fixes made to the theme." sidebar: nav: docs -last_modified_at: 2018-02-19T08:07:26-05:00 +last_modified_at: 2018-03-01T11:32:04-05:00 toc: true --- @@ -14,6 +14,7 @@ toc: true * Update jQuery to version `3.3.1`. [#1491](https://github.com/mmistakes/minimal-mistakes/issues/1491) * Add link to jekyll-algolia's `files_to_exclude` documentation. +* Update Font Awesome to version [`5.0.7`](https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md). [#1555](https://github.com/mmistakes/minimal-mistakes/pull/1555) ### Bug Fixes From 588a044986abe2ba3391d7bbdf8234a372173f89 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Tue, 6 Mar 2018 16:12:46 -0500 Subject: [PATCH 0012/1024] Convert EOL sequence to LF --- _layouts/compress.html | 2 +- _layouts/search.html | 2 +- _layouts/single.html | 2 +- _sass/minimal-mistakes/skins/_aqua.scss | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_layouts/compress.html b/_layouts/compress.html index 8248010b4a80..550fa27be60f 100644 --- a/_layouts/compress.html +++ b/_layouts/compress.html @@ -7,4 +7,4 @@ --- {% capture _LINE_FEED %} -{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "" %}{% endif %}{% unless _pre_before contains "" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " ;; ;" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %}
Step Bytes
raw {{ content | size }}{% if _profile_endings %}
endings {{ _profile_endings }}{% endif %}{% if _profile_startings %}
startings {{ _profile_startings }}{% endif %}{% if _profile_comments %}
comments {{ _profile_comments }}{% endif %}{% if _profile_collapse %}
collapse {{ _profile_collapse }}{% endif %}{% if _profile_clippings %}
clippings {{ _profile_clippings }}{% endif %}
{% endif %}{% endif %} +{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "" %}{% endif %}{% unless _pre_before contains "" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " ;; ;" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %}
Step Bytes
raw {{ content | size }}{% if _profile_endings %}
endings {{ _profile_endings }}{% endif %}{% if _profile_startings %}
startings {{ _profile_startings }}{% endif %}{% if _profile_comments %}
comments {{ _profile_comments }}{% endif %}{% if _profile_collapse %}
collapse {{ _profile_collapse }}{% endif %}{% if _profile_clippings %}
clippings {{ _profile_clippings }}{% endif %}
{% endif %}{% endif %} \ No newline at end of file diff --git a/_layouts/search.html b/_layouts/search.html index 1bac452c4dc1..e07c49e1e1a0 100644 --- a/_layouts/search.html +++ b/_layouts/search.html @@ -32,4 +32,4 @@

{{ page.title }}

{%- endcase -%} - + \ No newline at end of file diff --git a/_layouts/single.html b/_layouts/single.html index 4f4372b4759e..02657cb5d157 100644 --- a/_layouts/single.html +++ b/_layouts/single.html @@ -89,4 +89,4 @@