type-on-strap 2.4.7 → 2.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +37 -28
  3. data/_data/language.yml +4 -1
  4. data/_includes/blog/post_footer.liquid +57 -0
  5. data/_includes/blog/post_info.liquid +1 -1
  6. data/_includes/default/footer.liquid +12 -6
  7. data/_includes/default/head.liquid +13 -16
  8. data/_includes/default/navbar.liquid +9 -7
  9. data/_includes/default/search_input.liquid +51 -0
  10. data/_layouts/archive.liquid +33 -0
  11. data/_layouts/categories.liquid +1 -1
  12. data/_layouts/default.html +7 -4
  13. data/_layouts/home.liquid +2 -4
  14. data/_layouts/page.liquid +24 -29
  15. data/_layouts/post.liquid +24 -74
  16. data/_sass/base/_global.scss +1 -1
  17. data/_sass/external/_font-awesome.scss +8 -16
  18. data/_sass/external/_katex.scss +5 -1146
  19. data/_sass/external/font-awesome/_animated.scss +142 -9
  20. data/_sass/external/font-awesome/_bordered-pulled.scss +13 -13
  21. data/_sass/external/font-awesome/_core.scss +28 -6
  22. data/_sass/external/font-awesome/_fixed-width.scss +2 -1
  23. data/_sass/external/font-awesome/_functions.scss +57 -0
  24. data/_sass/external/font-awesome/_icons.scss +7 -1459
  25. data/_sass/external/font-awesome/_list.scss +4 -4
  26. data/_sass/external/font-awesome/_mixins.scss +53 -34
  27. data/_sass/external/font-awesome/_rotated-flipped.scss +25 -18
  28. data/_sass/external/font-awesome/_screen-reader.scss +12 -3
  29. data/_sass/external/font-awesome/_shims.scss +640 -664
  30. data/_sass/external/font-awesome/_sizing.scss +16 -0
  31. data/_sass/external/font-awesome/_stacked.scss +5 -4
  32. data/_sass/external/font-awesome/_variables.scss +4923 -1409
  33. data/_sass/external/font-awesome/brands.scss +30 -0
  34. data/_sass/external/font-awesome/fontawesome.scss +21 -0
  35. data/_sass/external/font-awesome/regular.scss +26 -0
  36. data/_sass/external/font-awesome/solid.scss +26 -0
  37. data/_sass/external/font-awesome/v4-shims.scss +6 -1
  38. data/_sass/external/katex/katex.scss +1414 -0
  39. data/_sass/includes/_navbar.scss +6 -4
  40. data/_sass/includes/_share_buttons.scss +1 -1
  41. data/_sass/layouts/_categories.scss +5 -0
  42. data/_sass/layouts/_posts.scss +1 -1
  43. data/assets/data/search.liquid +6 -27
  44. data/assets/fonts/font-awesome/fa-brands-400.ttf +0 -0
  45. data/assets/fonts/font-awesome/fa-brands-400.woff2 +0 -0
  46. data/assets/fonts/font-awesome/fa-regular-400.ttf +0 -0
  47. data/assets/fonts/font-awesome/fa-regular-400.woff2 +0 -0
  48. data/assets/fonts/font-awesome/fa-solid-900.ttf +0 -0
  49. data/assets/fonts/font-awesome/fa-solid-900.woff2 +0 -0
  50. data/assets/fonts/font-awesome/fa-v4compatibility.ttf +0 -0
  51. data/assets/fonts/font-awesome/fa-v4compatibility.woff2 +0 -0
  52. data/assets/js/main.min.js +3 -3
  53. data/assets/js/partials/cookie_consent_init.js +5 -0
  54. data/assets/js/partials/dark-mode.js +22 -18
  55. data/assets/js/vendor/katex.auto-render.min.js +1 -0
  56. data/assets/js/vendor/katex.min.js +1 -1
  57. data/assets/js/vendor/mermaid.min.js +962 -791
  58. metadata +19 -17
  59. data/_sass/external/font-awesome/_brands.scss +0 -23
  60. data/_sass/external/font-awesome/_larger.scss +0 -23
  61. data/_sass/external/font-awesome/_regular.scss +0 -23
  62. data/_sass/external/font-awesome/_solid.scss +0 -24
  63. data/assets/fonts/font-awesome/fa-brands-400.eot +0 -0
  64. data/assets/fonts/font-awesome/fa-brands-400.svg +0 -3717
  65. data/assets/fonts/font-awesome/fa-brands-400.woff +0 -0
  66. data/assets/fonts/font-awesome/fa-regular-400.eot +0 -0
  67. data/assets/fonts/font-awesome/fa-regular-400.svg +0 -801
  68. data/assets/fonts/font-awesome/fa-regular-400.woff +0 -0
  69. data/assets/fonts/font-awesome/fa-solid-900.eot +0 -0
  70. data/assets/fonts/font-awesome/fa-solid-900.svg +0 -5028
  71. data/assets/fonts/font-awesome/fa-solid-900.woff +0 -0
  72. data/assets/js/vendor/auto-render.min.js +0 -1
@@ -0,0 +1,30 @@
1
+ /*!
2
+ * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2023 Fonticons, Inc.
5
+ */
6
+ @import 'functions';
7
+ @import 'variables';
8
+
9
+ :root, :host {
10
+ --#{$fa-css-prefix}-style-family-brands: 'Font Awesome 6 Brands';
11
+ --#{$fa-css-prefix}-font-brands: normal 400 1em/1 'Font Awesome 6 Brands';
12
+ }
13
+
14
+ @font-face {
15
+ font-family: 'Font Awesome 6 Brands';
16
+ font-style: normal;
17
+ font-weight: 400;
18
+ font-display: $fa-font-display;
19
+ src: url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
20
+ url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype');
21
+ }
22
+
23
+ .fab,
24
+ .#{$fa-css-prefix}-brands {
25
+ font-weight: 400;
26
+ }
27
+
28
+ @each $name, $icon in $fa-brand-icons {
29
+ .#{$fa-css-prefix}-#{$name}:before { content: unquote("\"#{ $icon }\""); }
30
+ }
@@ -0,0 +1,21 @@
1
+ /*!
2
+ * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2023 Fonticons, Inc.
5
+ */
6
+ // Font Awesome core compile (Web Fonts-based)
7
+ // -------------------------
8
+
9
+ @import 'functions';
10
+ @import 'variables';
11
+ @import 'mixins';
12
+ @import 'core';
13
+ @import 'sizing';
14
+ @import 'fixed-width';
15
+ @import 'list';
16
+ @import 'bordered-pulled';
17
+ @import 'animated';
18
+ @import 'rotated-flipped';
19
+ @import 'stacked';
20
+ @import 'icons';
21
+ @import 'screen-reader';
@@ -0,0 +1,26 @@
1
+ /*!
2
+ * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2023 Fonticons, Inc.
5
+ */
6
+ @import 'functions';
7
+ @import 'variables';
8
+
9
+ :root, :host {
10
+ --#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
11
+ --#{$fa-css-prefix}-font-regular: normal 400 1em/1 '#{ $fa-style-family }';
12
+ }
13
+
14
+ @font-face {
15
+ font-family: 'Font Awesome 6 Free';
16
+ font-style: normal;
17
+ font-weight: 400;
18
+ font-display: $fa-font-display;
19
+ src: url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
20
+ url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype');
21
+ }
22
+
23
+ .far,
24
+ .#{$fa-css-prefix}-regular {
25
+ font-weight: 400;
26
+ }
@@ -0,0 +1,26 @@
1
+ /*!
2
+ * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2023 Fonticons, Inc.
5
+ */
6
+ @import 'functions';
7
+ @import 'variables';
8
+
9
+ :root, :host {
10
+ --#{$fa-css-prefix}-style-family-classic: '#{ $fa-style-family }';
11
+ --#{$fa-css-prefix}-font-solid: normal 900 1em/1 '#{ $fa-style-family }';
12
+ }
13
+
14
+ @font-face {
15
+ font-family: 'Font Awesome 6 Free';
16
+ font-style: normal;
17
+ font-weight: 900;
18
+ font-display: $fa-font-display;
19
+ src: url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
20
+ url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype');
21
+ }
22
+
23
+ .fas,
24
+ .#{$fa-css-prefix}-solid {
25
+ font-weight: 900;
26
+ }
@@ -1,6 +1,11 @@
1
1
  /*!
2
- * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com
2
+ * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
3
3
  * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ * Copyright 2023 Fonticons, Inc.
4
5
  */
6
+ // V4 shims compile (Web Fonts-based)
7
+ // -------------------------
8
+
9
+ @import 'functions';
5
10
  @import 'variables';
6
11
  @import 'shims';