minimal-mistakes-jekyll 4.20.0 → 4.23.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +79 -0
  3. data/README.md +5 -6
  4. data/_data/ui-text.yml +194 -24
  5. data/_includes/archive-single.html +2 -2
  6. data/_includes/category-list.html +2 -9
  7. data/_includes/comments.html +1 -1
  8. data/_includes/documents-collection.html +6 -12
  9. data/_includes/figure +2 -2
  10. data/_includes/footer.html +3 -1
  11. data/_includes/head.html +4 -2
  12. data/_includes/masthead.html +1 -1
  13. data/_includes/page__date.html +3 -2
  14. data/_includes/page__hero.html +7 -3
  15. data/_includes/page__meta.html +31 -0
  16. data/_includes/seo.html +6 -0
  17. data/_includes/tag-list.html +2 -9
  18. data/_includes/toc.html +128 -42
  19. data/_layouts/categories.html +3 -2
  20. data/_layouts/category.html +3 -2
  21. data/_layouts/collection.html +3 -2
  22. data/_layouts/default.html +2 -2
  23. data/_layouts/home.html +3 -2
  24. data/_layouts/posts.html +3 -2
  25. data/_layouts/single.html +2 -2
  26. data/_layouts/tag.html +3 -2
  27. data/_layouts/tags.html +3 -2
  28. data/_sass/minimal-mistakes.scss +2 -2
  29. data/_sass/minimal-mistakes/_archive.scss +8 -0
  30. data/_sass/minimal-mistakes/_footer.scss +0 -1
  31. data/_sass/minimal-mistakes/_forms.scss +0 -34
  32. data/_sass/minimal-mistakes/_navigation.scss +7 -0
  33. data/_sass/minimal-mistakes/_notices.scss +5 -5
  34. data/_sass/minimal-mistakes/_page.scss +1 -1
  35. data/_sass/minimal-mistakes/_sidebar.scss +0 -1
  36. data/_sass/minimal-mistakes/_variables.scss +4 -0
  37. data/_sass/minimal-mistakes/skins/_aqua.scss +5 -1
  38. data/_sass/minimal-mistakes/skins/_contrast.scss +2 -1
  39. data/_sass/minimal-mistakes/skins/_dark.scss +4 -2
  40. data/_sass/minimal-mistakes/skins/_mint.scss +1 -0
  41. data/_sass/minimal-mistakes/skins/_neon.scss +7 -1
  42. data/_sass/minimal-mistakes/skins/_plum.scss +7 -1
  43. data/_sass/minimal-mistakes/skins/_sunrise.scss +7 -2
  44. data/assets/js/_main.js +2 -2
  45. data/assets/js/lunr/lunr-store.js +2 -2
  46. data/assets/js/lunr/lunr.js +67 -76
  47. data/assets/js/lunr/lunr.min.js +6 -1
  48. data/assets/js/main.min.js +3 -6
  49. data/assets/js/plugins/jquery.greedy-navigation.js +67 -14
  50. data/assets/js/vendor/jquery/{jquery-3.4.1.js → jquery-3.5.1.js} +756 -482
  51. metadata +4 -4
  52. data/_includes/post__meta.html +0 -35
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4d315ea81db661005b52625eb984504cece11c22bd12bb87e4aaebd67469f1a3
4
- data.tar.gz: 83f7c7837bf582fdebd8629afa251c7d701714f42ad4b26639c8c391df3ee8d4
3
+ metadata.gz: a7ed3d0e0a47026c7ee8ef9b46685765ac4babcb1e69906e7afaaabb7ae7edb6
4
+ data.tar.gz: 432baf028b2f79c7e80d41c9ed78692de06147fc6530005e73395ad59b976f50
5
5
  SHA512:
6
- metadata.gz: 8366691e4b39b767391af1334c3e9e294d4a818b4f9b65a7aa4dc67a9d42a34464837e358a83484d6d34fed68d0bd6bdf39d17cdad7ddc3ded1ac984b69d8f23
7
- data.tar.gz: 8097d8aa51a709a73cde74ac172b037bf23782a4e200ad08d138a86c9c7f900b5e7ccc0ca6a3baa8a181322fc72f0cd6b20e35a5c1992888efcc4ade6480ffcc
6
+ metadata.gz: 54a626e04b0c28bfa8c0226c76a6543bb5a0691fbb12e8c0731c35ec3dab2749837dad61c64f1a209da3cdd79c3ce52aa2715b2ef0e112593b4417513946ef26
7
+ data.tar.gz: 03a121008c563ed5e0c62737453b4f69fdee7f036d1da3fcb2355af43e7839eb236b80545a520c1bd6df308ff120d002f680afb1dda1e8d72f4080fb7dddf0ca
data/CHANGELOG.md CHANGED
@@ -1,3 +1,82 @@
1
+ ## Unreleased
2
+
3
+ ### Enhancements
4
+
5
+ - Add Arabic (عربي) localized UI text strings. [#2936](https://github.com/mmistakes/minimal-mistakes/pull/2936)
6
+ - Update onchange and uglify-js dependencies.
7
+ - Document head and footer `custom.html` includes. [#2815](https://github.com/mmistakes/minimal-mistakes/pull/2815)
8
+ - Color notices based on skin colors instead of fixed values. [#2887](https://github.com/mmistakes/minimal-mistakes/pull/2887)
9
+ - Add configurable datetime format. [#2844](https://github.com/mmistakes/minimal-mistakes/pull/2844)
10
+ - Add Baidu site verification [#2830](https://github.com/mmistakes/minimal-mistakes/pull/2830)
11
+ - Add `alt` attribute to site logo. [#2529](https://github.com/mmistakes/minimal-mistakes/issues/2529) [#2824](https://github.com/mmistakes/minimal-mistakes/issues/2824)
12
+
13
+ ### Bug Fixes
14
+
15
+ - Fix menu toggle to properly show close icon when open.
16
+ - Fix Jekyll environment note in configuration documentation. [#2912](https://github.com/mmistakes/minimal-mistakes/issues/2912)
17
+ - Fix typo in Helpers documentation. [#2940](https://github.com/mmistakes/minimal-mistakes/pull/2940)
18
+ - Remove all references to official public Staticman API instance. [#2818](https://github.com/mmistakes/minimal-mistakes/issues/2818) [#2831](https://github.com/mmistakes/minimal-mistakes/pull/2831)
19
+ - Remove Google Search CSS. [#2852](https://github.com/mmistakes/minimal-mistakes/issues/2852) [#2855](https://github.com/mmistakes/minimal-mistakes/pull/2855)
20
+
21
+ ## [4.22.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.22.0)
22
+
23
+ ### Bug Fixes
24
+
25
+ - Remove Google Search script from `404.md`. [#2597](https://github.com/mmistakes/minimal-mistakes/issues/2597) [#2737](https://github.com/mmistakes/minimal-mistakes/pull/2737) [#2789](https://github.com/mmistakes/minimal-mistakes/pull/2789)
26
+ - Fix Font Awesome icon color in `contrast`, `dark`, `mint`, `neon`, `plum`, and `sunrise` skins. [#2724](https://github.com/mmistakes/minimal-mistakes/issues/2724)
27
+
28
+ ### Enhancements
29
+
30
+ - Allow custom sorting for collections. [#2723](https://github.com/mmistakes/minimal-mistakes/pull/2723)
31
+ - Use `sort_natural` instead of custom Liquid logic to sort tags and categories. [#2756](https://github.com/mmistakes/minimal-mistakes/pull/2756)
32
+ - Add configuration option to toggle off RSS feed link in `<head>` and site footer. [#2787](https://github.com/mmistakes/minimal-mistakes/pull/2787)
33
+ - Upgrade Lunrjs to 2.3.9 and switch to `relative_url`. [#2805](https://github.com/mmistakes/minimal-mistakes/pull/2805)
34
+ - Adds `.webp` to list of supported image extensions for the image popup lightbox. [#2788](https://github.com/mmistakes/minimal-mistakes/pull/2788)
35
+ - Add Hebrew localized UI text strings. [#2760](https://github.com/mmistakes/minimal-mistakes/pull/2760)
36
+ - Update documentation to include `toc_sticky` parameter's description. [#2741](https://github.com/mmistakes/minimal-mistakes/pull/2741)
37
+ - Update Indonesian localized UI text strings. [#2731](https://github.com/mmistakes/minimal-mistakes/pull/2731)
38
+ - Update remote theme documentation. [#2734](https://github.com/mmistakes/minimal-mistakes/pull/2734)
39
+ - Update allejo/jekyll-toc to v1.1.0, skip headings without an ID. [#2752](https://github.com/mmistakes/minimal-mistakes/pull/2752)
40
+ - Allow custom gradient for page header overlay. [#2806](https://github.com/mmistakes/minimal-mistakes/pull/2806)
41
+
42
+ ## [4.21.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.21.0)
43
+
44
+ ### Bug Fixes
45
+
46
+ - Fix greedy navigation by improving reliability of remaining space for visible links. [#2664](https://github.com/mmistakes/minimal-mistakes/issues/2664)
47
+ - Collapse white-space in `figure` helper to fix issues when used in Markdown ordered and unordered lists. [#2697](https://github.com/mmistakes/minimal-mistakes/pull/2697)
48
+ - Fix dead link to CI services in documentation. [#2635](https://github.com/mmistakes/minimal-mistakes/issues/2635) [#2692](https://github.com/mmistakes/minimal-mistakes/pull/2692)
49
+ - Fix a small typo in documentation. [#2718](https://github.com/mmistakes/minimal-mistakes/pull/2718)
50
+
51
+ ### Enhancements
52
+
53
+ - Update jQuery to 3.5.1. [#2713](https://github.com/mmistakes/minimal-mistakes/pull/2713)
54
+ - Add Indonesian localized UI text strings. [#2725](https://github.com/mmistakes/minimal-mistakes/pull/2725)
55
+ - Update Vietnamese localized UI text strings. [#2722](https://github.com/mmistakes/minimal-mistakes/pull/2722)
56
+ - Add Norwegian (Norsk) localized UI text strings. [#2702](https://github.com/mmistakes/minimal-mistakes/pull/2702)
57
+ - Update allejo/jekyll-toc to v1.0.14 [#2700](https://github.com/mmistakes/minimal-mistakes/pull/2700)
58
+
59
+ ## [4.20.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.2)
60
+
61
+ ### Bug Fixes
62
+
63
+ - Fix broken link in documentation. [#2677](https://github.com/mmistakes/minimal-mistakes/issues/2677)
64
+ - Fix typo in documentation. [#2678](https://github.com/mmistakes/minimal-mistakes/issues/2678)
65
+ - Remove duplicate CSS definitions. [#2666](https://github.com/mmistakes/minimal-mistakes/pull/2666)
66
+ - Fix `entries_layout: grid` in various layouts. [#2639](https://github.com/mmistakes/minimal-mistakes/issues/2639)
67
+ - Change `fa` to `fas` for Font Awesome 5. [#2649](https://github.com/mmistakes/minimal-mistakes/pull/2649)
68
+
69
+ ### Enhancements
70
+
71
+ - Refactor page meta include. [#2641](https://github.com/mmistakes/minimal-mistakes/pull/2641)
72
+ - Add `article:author` Open Graph markup. [#2670](https://github.com/mmistakes/minimal-mistakes/pull/2670)
73
+
74
+ ## [4.20.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.1)
75
+
76
+ ### Bug Fixes
77
+
78
+ - Fix `entries_layout: grid` in `home.html` layout. [#2616](https://github.com/mmistakes/minimal-mistakes/pull/2616)
79
+
1
80
  ## [4.20.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.0)
2
81
 
3
82
  ### Bug Fixes
data/README.md CHANGED
@@ -33,7 +33,7 @@ Minimal Mistakes is a flexible two-column Jekyll theme, perfect for building per
33
33
  - Optional [header images](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#headers), [custom sidebars](https://mmistakes.github.io/minimal-mistakes/docs/layouts/#sidebars), [table of contents](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#table-of-contents), [galleries](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#gallery), related posts, [breadcrumb links](https://mmistakes.github.io/minimal-mistakes/docs/configuration/#breadcrumb-navigation-beta), [navigation lists](https://mmistakes.github.io/minimal-mistakes/docs/helpers/#navigation-list), and more.
34
34
  - Commenting support (powered by [Disqus](https://disqus.com/), [Facebook](https://developers.facebook.com/docs/plugins/comments), Google+, [Discourse](https://www.discourse.org/), static-based via [Staticman](https://staticman.net/), and [utterances](https://utteranc.es/)).
35
35
  - [Google Analytics](https://www.google.com/analytics/) support.
36
- - UI localized text in English (default), Brazilian Portuguese (Português brasileiro), Catalan, Chinese, Danish, Dutch, Finnish, French (Français), German (Deutsch), Greek, Hindi (हिंदी), Hungarian, Indonesian, Irish (Gaeilge), Italian (Italiano), Japanese, Korean, Malayalam, Myanmar (Burmese), Nepali (Nepalese), Persian (فارسی), Polish, Punjabi (ਪੰਜਾਬੀ), Romanian, Russian, Slovak, Spanish (Español), Swedish, Thai, Turkish (Türkçe), and Vietnamese.
36
+ - UI localized text in English (default), Arabic (عربي), Brazilian Portuguese (Português brasileiro), Catalan, Chinese, Danish, Dutch, Finnish, French (Français), German (Deutsch), Greek, Hebrew, Hindi (हिंदी), Hungarian, Indonesian, Irish (Gaeilge), Italian (Italiano), Japanese, Korean, Malayalam, Myanmar (Burmese), Nepali (Nepalese), Norwegian (Norsk), Persian (فارسی), Polish, Punjabi (ਪੰਜਾਬੀ), Romanian, Russian, Slovak, Spanish (Español), Swedish, Thai, Turkish (Türkçe), and Vietnamese.
37
37
 
38
38
  ## Skins (color variations)
39
39
 
@@ -116,6 +116,7 @@ To install:
116
116
  source "https://rubygems.org"
117
117
 
118
118
  gem "github-pages", group: :jekyll_plugins
119
+ gem "jekyll-include-cache", group: :jekyll_plugins
119
120
  ```
120
121
 
121
122
  2. Add `jekyll-include-cache` to the `plugins` array of your `_config.yml`.
@@ -126,7 +127,7 @@ To install:
126
127
  bundle
127
128
  ```
128
129
 
129
- 4. Add `remote_theme: "mmistakes/minimal-mistakes@4.20.0"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
130
+ 4. Add `remote_theme: "mmistakes/minimal-mistakes@4.23.0"` to your `_config.yml` file. Remove any other `theme:` or `remote_theme:` entry.
130
131
 
131
132
  **Looking for an example?** Use the [Minimal Mistakes remote theme starter](https://github.com/mmistakes/mm-github-pages-starter/generate) for the quickest method of getting a GitHub Pages hosted site up and running. Generate a new repository from the starter, replace sample content with your own, and configure as needed.
132
133
 
@@ -138,11 +139,9 @@ For detailed instructions on how to configure, customize, add/migrate content, a
138
139
 
139
140
  ## Contributing
140
141
 
141
- Having trouble working with the theme? Found a typo in the documentation? Interested in adding a feature or [fixing a bug](https://github.com/mmistakes/minimal-mistakes/issues)? Then by all means [submit an issue](https://github.com/mmistakes/minimal-mistakes/issues/new) or [pull request](https://help.github.com/articles/using-pull-requests/). If this is your first pull request, it may be helpful to read up on the [GitHub Flow](https://guides.github.com/introduction/flow/) first.
142
+ Found a typo in the documentation or interested in [fixing a bug](https://github.com/mmistakes/minimal-mistakes/issues)? Then by all means [submit an issue](https://github.com/mmistakes/minimal-mistakes/issues/new) or [pull request](https://help.github.com/articles/using-pull-requests/). If this is your first pull request, it may be helpful to read up on the [GitHub Flow](https://guides.github.com/introduction/flow/) first.
142
143
 
143
- Minimal Mistakes has been designed as a base for you to customize and fit your site's unique needs. Please keep this in mind when requesting features and/or submitting pull requests. If it's not something that most people will use, I probably won't consider it. When in doubt ask.
144
-
145
- This goes for author sidebar links and "share button" additions -- I have no intention of merging in every possibly option, the essentials are there to get you started :smile:.
144
+ For help with using the theme or general Jekyll support questions, please use the [Jekyll Talk forums](https://talk.jekyllrb.com/).
146
145
 
147
146
  ### Pull Requests
148
147
 
data/_data/ui-text.yml CHANGED
@@ -912,49 +912,52 @@ nl-NL:
912
912
  # ----------
913
913
  id: &DEFAULT_ID
914
914
  skip_links :
915
- skip_primary_nav :
916
- skip_content :
917
- skip_footer :
915
+ skip_primary_nav : "Loncat ke navigasi"
916
+ skip_content : "Loncat ke konten"
917
+ skip_footer : "Loncat ke footer"
918
918
  page : "Halaman"
919
- pagination_previous : "Kembali"
920
- pagination_next : "Maju"
921
- breadcrumb_home_label : "Home"
919
+ pagination_previous : "Sebelumnya"
920
+ pagination_next : "Selanjutnya"
921
+ breadcrumb_home_label : "Beranda"
922
922
  breadcrumb_separator : "/"
923
- menu_label : "Menu Toggle"
924
- search_label :
923
+ menu_label : "Menu"
924
+ search_label : "Pencarian"
925
925
  toc_label : "Pada Halaman Ini"
926
926
  ext_link_label : "Link langsung"
927
927
  less_than : "Kurang dari"
928
- minute_read : "Waktu baca"
929
- share_on_label : "Berbagi di"
928
+ minute_read : "menit baca"
929
+ share_on_label : "Bagikan di"
930
930
  meta_label :
931
- tags_label : "Golongan:"
931
+ tags_label : "Label:"
932
932
  categories_label : "Kategori:"
933
933
  date_label : "Diupdate:"
934
934
  comments_label : "Tinggalkan komentar"
935
935
  comments_title : "Komentar"
936
936
  more_label : "Pelajari lagi"
937
- related_label : "Anda juga akan suka"
937
+ related_label : "Anda mungkin suka"
938
938
  follow_label : "Ikuti:"
939
939
  feed_label : "Feed"
940
940
  powered_by : "Didukung oleh"
941
941
  website_label : "Website"
942
942
  email_label : "Email"
943
- recent_posts : "Posting terbaru"
943
+ recent_posts : "Post terbaru"
944
944
  undefined_wpm : "Parameter terdeskripsi words_per_minute di _config.yml"
945
- comment_form_info : "Email Anda tidak akan dipublish. Kolom yang diperlukan ditandai"
945
+ comment_form_info : "Email Anda tidak akan dipublish. Kolom yang diperlukan ditandai dengan tanda "
946
946
  comment_form_comment_label : "Komentar"
947
- comment_form_md_info : "Markdown disupport."
947
+ comment_form_md_info : "Markdown didukung."
948
948
  comment_form_name_label : "Nama"
949
949
  comment_form_email_label : "Alamat email"
950
950
  comment_form_website_label : "Website (opsional)"
951
- comment_btn_submit : "Submit Komentar"
952
- comment_btn_submitted : "Telah disubmit"
953
- comment_success_msg : "Terimakasih atas komentar Anda! Komentar ini akan tampil setelah disetujui."
954
- comment_error_msg : "Maaf, ada kesalahan pada submisi Anda. Pastikan seluruh kolom sudah dilengkapi dan coba kembali."
955
- loading_label : "Sedang meload..."
956
- search_label_text :
957
- search_algolia_no_results :
951
+ comment_btn_submit : "Kirim Komentar"
952
+ comment_btn_submitted : "Telah dikirim"
953
+ comment_success_msg : "Terimakasih atas komentar Anda! Komentar akan tampil setelah disetujui."
954
+ comment_error_msg : "Maaf, ada kesalahan pada komentar Anda. Pastikan seluruh kolom sudah dilengkapi dan coba kembali."
955
+ loading_label : "Sedang memuat..."
956
+ search_label_text : "Masukkan kata kunci pencarian..."
957
+ search_placeholder_text : "Masukkan kata kunci pencarian..."
958
+ search_algolia_no_results : "Tidak ada hasil"
959
+ results_found : "Hasil pencarian ditemukan"
960
+ back_to_top : "Kembali ke awal"
958
961
  id-ID:
959
962
  <<: *DEFAULT_ID
960
963
 
@@ -972,7 +975,7 @@ vi: &DEFAULT_VI
972
975
  breadcrumb_separator : "/"
973
976
  menu_label : "Menu"
974
977
  search_label : "Tìm kiếm"
975
- toc_label : "Tại trang này"
978
+ toc_label : "Mục lục"
976
979
  ext_link_label : "Đường dẫn trực tiếp"
977
980
  less_than : "chỉ cần"
978
981
  minute_read : "phút để đọc"
@@ -1005,7 +1008,7 @@ vi: &DEFAULT_VI
1005
1008
  loading_label : "Đang tải..."
1006
1009
  search_label_text : "Nhập từ khóa cần tìm..."
1007
1010
  search_placeholder_text : "Nhập từ khóa cần tìm..."
1008
- search_algolia_no_results :
1011
+ search_algolia_no_results : "Không tìm thấy kết quả nào"
1009
1012
  results_found : "Kết quả tìm được"
1010
1013
  back_to_top : "Lên đầu trang"
1011
1014
  vi-VN:
@@ -1794,6 +1797,173 @@ my: &DEFAULT_MY
1794
1797
  my-MM:
1795
1798
  <<: *DEFAULT_MY
1796
1799
 
1800
+ # Norwegian
1801
+ # -------
1802
+ no: &DEFAULT_NO
1803
+ skip_links : "Hopp over lenker"
1804
+ skip_primary_nav : "Gå til primærnavigasjon"
1805
+ skip_content : "Gå til innhold"
1806
+ skip_footer : "Gå til fotnote"
1807
+ page : "Side"
1808
+ pagination_previous : "Forrige"
1809
+ pagination_next : "Neste"
1810
+ breadcrumb_home_label : "Hjem"
1811
+ breadcrumb_separator : "/"
1812
+ menu_label : "Vis/skjul meny"
1813
+ search_label : "Vis/skjul søk"
1814
+ toc_label : "På denne siden"
1815
+ ext_link_label : "Direkte lenke"
1816
+ less_than : "mindre enn"
1817
+ minute_read : "minutters lesing"
1818
+ share_on_label : "Del på"
1819
+ meta_label :
1820
+ tags_label : "Nøkkelord:"
1821
+ categories_label : "Kategorier:"
1822
+ date_label : "Oppdatert:"
1823
+ comments_label : "Skriv en kommentar"
1824
+ comments_title : "Kommentarer"
1825
+ more_label : "Lær mer"
1826
+ related_label : "Du vil kanskje også lese:"
1827
+ follow_label : "Følg:"
1828
+ feed_label : "Feed"
1829
+ powered_by : "Lagd med"
1830
+ website_label : "Nettside"
1831
+ email_label : "E-post"
1832
+ recent_posts : "Nyeste innlegg"
1833
+ undefined_wpm : "Parameteret words_per_minute er ikke definert i _config.yml"
1834
+ comment_form_info : "Din e-postadresse vil ikke bli publisert. Obligatoriske felt er markert"
1835
+ comment_form_comment_label : "Kommentar"
1836
+ comment_form_md_info : "Markdown er støttet"
1837
+ comment_form_name_label : "Navn"
1838
+ comment_form_email_label : "E-postadresse"
1839
+ comment_form_website_label : "Nettside (frivillig)"
1840
+ comment_btn_submit : "Send kommentar"
1841
+ comment_btn_submitted : "Sendt"
1842
+ comment_success_msg : "Takk for din kommentar! Den blir vist på siden så fort den er godkjent"
1843
+ comment_error_msg : "Beklager, noe gikk galt. Sjekk at alle obligatoriska felt er utfylt og prøv igjen"
1844
+ loading_label : "Laster..."
1845
+ search_label_text : "Skriv inn søkeord"
1846
+ search_placeholder_text : "Skriv inn søkeord"
1847
+ search_algolia_no_results : "Ingen treff"
1848
+ results_found : "Treff funnet"
1849
+ back_to_top : "Tillbake til toppen"
1850
+ no-NB:
1851
+ <<: *DEFAULT_NO
1852
+ no-NN:
1853
+ <<: *DEFAULT_NO
1854
+
1855
+ # Hebrew
1856
+ # -------
1857
+ he: &DEFAULT_HE
1858
+ skip_links : "דלגו על קישור"
1859
+ skip_primary_nav : "דלגו לראשי"
1860
+ skip_content : "דלגו לתוכן"
1861
+ skip_footer : "דלגו לתחתית"
1862
+ page : "דף"
1863
+ pagination_previous : "קודם"
1864
+ pagination_next : "הבא"
1865
+ breadcrumb_home_label : "בית"
1866
+ breadcrumb_separator : "/"
1867
+ menu_label : "סגירה/פתיחה של תפריט"
1868
+ search_label : "סגירה/פתיחה של חיפוש"
1869
+ toc_label : "בדף זה"
1870
+ ext_link_label : "קישור ישיר"
1871
+ less_than : "פחות מ"
1872
+ minute_read : "דקת קריאה"
1873
+ share_on_label : "שתפו ב"
1874
+ meta_label :
1875
+ tags_label : "תגיות:"
1876
+ categories_label : "קטגוריות:"
1877
+ date_label : "מעודכן:"
1878
+ comments_label : "השאירו הערה"
1879
+ comments_title : "הערות"
1880
+ more_label : "קראו עוד"
1881
+ related_label : "אולי יעניין אותך גם"
1882
+ follow_label : "עקבו אחרי"
1883
+ feed_label : "פיד"
1884
+ powered_by : "Powered by"
1885
+ website_label : "אתר"
1886
+ email_label : "אימייל"
1887
+ recent_posts : "פוסטים אחרונים"
1888
+ undefined_wpm : "Undefined parameter words_per_minute at _config.yml"
1889
+ comment_form_info : "האימייל שלך נשמר חסוי. שדות חובה מסומנים"
1890
+ comment_form_comment_label : "הערה"
1891
+ comment_form_md_info : "Markdown is supported."
1892
+ comment_form_name_label : "שם"
1893
+ comment_form_email_label : "כתובת אימייל"
1894
+ comment_form_website_label : "אתר (אפשרות)"
1895
+ comment_btn_submit : "שלחו הערה"
1896
+ comment_btn_submitted : "נשלח"
1897
+ comment_success_msg : "תודה על ההערה שלך! היא תופיע באתר ברגע שתאושר."
1898
+ comment_error_msg : "סליחה, קרתה תקלה בשליחה. אנא וודאו שכל השדות מלאים ונסו שנית."
1899
+ loading_label : "טוען..."
1900
+ search_label_text : "מילות חיפוש..."
1901
+ search_placeholder_text : "מילות חיפוש..."
1902
+ search_algolia_no_results : "אין תוצאות"
1903
+ results_found : "תוצאות נמצאו"
1904
+ back_to_top : "חזרה להתחלה"
1905
+ he-IL:
1906
+ <<: *DEFAULT_HE
1907
+
1908
+ # Arabic (عربي)
1909
+ # --------------
1910
+ ar: &DEFAULT_AR
1911
+ skip_links : "تخطي الروابط"
1912
+ skip_primary_nav : "تخطى الى شريط التنقل"
1913
+ skip_content : "الانتقال الى المحتوى"
1914
+ skip_footer : "الانتقال الى ذيل الصفحة"
1915
+ page : "صفحه"
1916
+ pagination_previous : "قبل"
1917
+ pagination_next : "بعد"
1918
+ breadcrumb_home_label : "الرئيس"
1919
+ breadcrumb_separator : "/"
1920
+ menu_label : "الخيارات"
1921
+ search_label : "البحث"
1922
+ toc_label : "على هذه الصفحة"
1923
+ ext_link_label : "رابط مباشر"
1924
+ less_than : "اقل من"
1925
+ minute_read : "دقيقة قرائية"
1926
+ share_on_label : "مشاركة"
1927
+ meta_label :
1928
+ tags_label : "العلامات الوصفية:"
1929
+ categories_label : "الفئات:"
1930
+ date_label : "تم التحديث:"
1931
+ comments_label : "اترك تعليق"
1932
+ comments_title : "التعليقات"
1933
+ more_label : "اقرأ المزيد"
1934
+ related_label : "قد يعجبك أيضا"
1935
+ follow_label : "تابع:"
1936
+ feed_label : "الاخبار - RSS"
1937
+ powered_by : "تم تطوير بواسطة"
1938
+ website_label : "موقع"
1939
+ email_label : "ايميل"
1940
+ recent_posts : "المشاركات الأخيرة"
1941
+ undefined_wpm : "معامل غير معرف في words_per_minute (كلمة في الدقيقة) في ملف _config.yml"
1942
+ comment_form_info : "لن يتم نشر عنوان بريدك الإلكتروني. الحقول المطلوبة إلزامية"
1943
+ comment_form_comment_label : "تعليق"
1944
+ comment_form_md_info : "لغة ال Markdown مدعومة."
1945
+ comment_form_name_label : "الاسم"
1946
+ comment_form_email_label : "البريد الالكتروني"
1947
+ comment_form_website_label : "الموقع (اختياري)"
1948
+ comment_btn_submit : "أضف تعليق"
1949
+ comment_btn_submitted : "تم الإرسال"
1950
+ comment_success_msg : "شكراً على التعليق! سيتم اظهاره عندما يتم موافقة عليه."
1951
+ comment_error_msg : "للأسف, هناك خطأ في المحاولة. الرجاء الحرص على تعبئة جميع الخانات و محاولة مجدداً."
1952
+ loading_label : "جاري التحميل..."
1953
+ search_label_text : "اكتب مصطلح للبحث..."
1954
+ search_placeholder_text : "اكتب مصطلح للبحث..."
1955
+ search_algolia_no_results : "لا توجد نتائج"
1956
+ results_found : "تم إيجاد نتيجة"
1957
+ back_to_top : "الانتقال الى الأعلى"
1958
+ ar-SD:
1959
+ <<: *DEFAULT_AR
1960
+ ar-SA:
1961
+ <<: *DEFAULT_AR
1962
+ ar-AE:
1963
+ <<: *DEFAULT_AR
1964
+ ar-EG:
1965
+ <<: *DEFAULT_AR
1966
+
1797
1967
  # Another locale
1798
1968
  # --------------
1799
1969
  #
@@ -10,7 +10,7 @@
10
10
  {% assign title = post.title %}
11
11
  {% endif %}
12
12
 
13
- <div class="{{ include.type | default: "list" }}__item">
13
+ <div class="{{ include.type | default: 'list' }}__item">
14
14
  <article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
15
15
  {% if include.type == "grid" and teaser %}
16
16
  <div class="archive__item-teaser">
@@ -24,7 +24,7 @@
24
24
  <a href="{{ post.url | relative_url }}" rel="permalink">{{ title }}</a>
25
25
  {% endif %}
26
26
  </h2>
27
- {% include post__meta.html type=include.type %}
27
+ {% include page__meta.html type=include.type %}
28
28
  {% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
29
29
  </article>
30
30
  </div>
@@ -6,19 +6,12 @@
6
6
  {% endcase %}
7
7
 
8
8
  {% if site.category_archive.path %}
9
- {% comment %}
10
- <!-- Sort alphabetically regardless of case e.g. a B c d E -->
11
- <!-- modified from http://www.codeofclimber.ru/2015/sorting-site-tags-in-jekyll/ -->
12
- {% endcomment %}
13
- {% capture page_categories %}{% for category in page.categories %}{{ category | downcase }}|{{ category }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
14
- {% assign category_hashes = page_categories | split: ',' | sort %}
9
+ {% assign categories_sorted = page.categories | sort_natural %}
15
10
 
16
11
  <p class="page__taxonomy">
17
12
  <strong><i class="fas fa-fw fa-folder-open" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].categories_label | default: "Categories:" }} </strong>
18
13
  <span itemprop="keywords">
19
- {% for hash in category_hashes %}
20
- {% assign keyValue = hash | split: '|' %}
21
- {% capture category_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %}
14
+ {% for category_word in categories_sorted %}
22
15
  <a href="{{ category_word | slugify | prepend: path_type | prepend: site.category_archive.path | relative_url }}" class="page__taxonomy-item" rel="tag">{{ category_word }}</a>{% unless forloop.last %}<span class="sep">, </span>{% endunless %}
23
16
  {% endfor %}
24
17
  </span>
@@ -35,7 +35,7 @@
35
35
  <div class="page__comments-form">
36
36
  <h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_label | default: "Leave a Comment" }}</h4>
37
37
  <p class="small">{{ site.data.ui-text[site.locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} <span class="required">*</span></p>
38
- <form id="new_comment" class="page__comments-form js-form form" method="post" action="{{ site.comments.staticman.endpoint | default: 'https://api.staticman.net/v2/entry/' }}{{ site.repository }}/{{ site.comments.staticman.branch }}/comments">
38
+ <form id="new_comment" class="page__comments-form js-form form" method="post" action="{{ site.comments.staticman.endpoint }}{{ site.repository }}/{{ site.comments.staticman.branch }}/comments">
39
39
  <div class="form__spinner">
40
40
  <i class="fas fa-spinner fa-spin fa-3x fa-fw"></i>
41
41
  <span class="sr-only">{{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }}</span>