creek-jekyll-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (178) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +81 -0
  4. data/_config.yml +306 -0
  5. data/_data/README.md +3 -0
  6. data/_data/navigation/docs.yml +56 -0
  7. data/_data/navigation/main.yml +12 -0
  8. data/_data/navigation.yml +68 -0
  9. data/_data/ui-text.yml +2024 -0
  10. data/_includes/analytics-providers/custom.html +3 -0
  11. data/_includes/analytics-providers/google-gtag.html +9 -0
  12. data/_includes/analytics-providers/google-universal.html +7 -0
  13. data/_includes/analytics-providers/google.html +14 -0
  14. data/_includes/analytics.html +14 -0
  15. data/_includes/archive-single.html +30 -0
  16. data/_includes/author-profile-custom-links.html +7 -0
  17. data/_includes/author-profile.html +246 -0
  18. data/_includes/breadcrumbs.html +40 -0
  19. data/_includes/browser-upgrade.html +2 -0
  20. data/_includes/category-list.html +19 -0
  21. data/_includes/comment.html +22 -0
  22. data/_includes/comments-providers/custom.html +3 -0
  23. data/_includes/comments-providers/custom_scripts.html +3 -0
  24. data/_includes/comments-providers/discourse.html +13 -0
  25. data/_includes/comments-providers/disqus.html +15 -0
  26. data/_includes/comments-providers/facebook.html +8 -0
  27. data/_includes/comments-providers/giscus.html +24 -0
  28. data/_includes/comments-providers/scripts.html +20 -0
  29. data/_includes/comments-providers/staticman.html +40 -0
  30. data/_includes/comments-providers/staticman_v2.html +40 -0
  31. data/_includes/comments-providers/utterances.html +21 -0
  32. data/_includes/comments.html +180 -0
  33. data/_includes/documents-collection.html +15 -0
  34. data/_includes/feature_row +41 -0
  35. data/_includes/figure +9 -0
  36. data/_includes/footer/custom.html +3 -0
  37. data/_includes/footer.html +21 -0
  38. data/_includes/gallery +35 -0
  39. data/_includes/group-by-array +47 -0
  40. data/_includes/head/custom.html +15 -0
  41. data/_includes/head.html +25 -0
  42. data/_includes/masthead.html +35 -0
  43. data/_includes/nav_list +26 -0
  44. data/_includes/page__date.html +6 -0
  45. data/_includes/page__hero.html +55 -0
  46. data/_includes/page__hero_video.html +2 -0
  47. data/_includes/page__meta.html +31 -0
  48. data/_includes/page__taxonomy.html +7 -0
  49. data/_includes/paginator.html +69 -0
  50. data/_includes/post_pagination.html +14 -0
  51. data/_includes/posts-category.html +5 -0
  52. data/_includes/posts-tag.html +5 -0
  53. data/_includes/scripts.html +28 -0
  54. data/_includes/search/algolia-search-scripts.html +62 -0
  55. data/_includes/search/google-search-scripts.html +30 -0
  56. data/_includes/search/lunr-search-scripts.html +10 -0
  57. data/_includes/search/search_form.html +26 -0
  58. data/_includes/seo.html +158 -0
  59. data/_includes/sidebar.html +19 -0
  60. data/_includes/skip-links.html +7 -0
  61. data/_includes/social-share.html +11 -0
  62. data/_includes/tag-list.html +19 -0
  63. data/_includes/toc +7 -0
  64. data/_includes/toc.html +182 -0
  65. data/_includes/video +24 -0
  66. data/_layouts/archive-taxonomy.html +29 -0
  67. data/_layouts/archive.html +26 -0
  68. data/_layouts/categories.html +43 -0
  69. data/_layouts/category.html +10 -0
  70. data/_layouts/collection.html +10 -0
  71. data/_layouts/compress.html +10 -0
  72. data/_layouts/default.html +41 -0
  73. data/_layouts/home.html +22 -0
  74. data/_layouts/posts.html +30 -0
  75. data/_layouts/search.html +42 -0
  76. data/_layouts/single.html +95 -0
  77. data/_layouts/splash.html +22 -0
  78. data/_layouts/tag.html +10 -0
  79. data/_layouts/tags.html +43 -0
  80. data/_pages/404.html +26 -0
  81. data/_sass/minimal-mistakes/_animations.scss +21 -0
  82. data/_sass/minimal-mistakes/_archive.scss +463 -0
  83. data/_sass/minimal-mistakes/_base.scss +339 -0
  84. data/_sass/minimal-mistakes/_buttons.scss +97 -0
  85. data/_sass/minimal-mistakes/_footer.scss +85 -0
  86. data/_sass/minimal-mistakes/_forms.scss +359 -0
  87. data/_sass/minimal-mistakes/_masthead.scss +93 -0
  88. data/_sass/minimal-mistakes/_mixins.scss +92 -0
  89. data/_sass/minimal-mistakes/_navigation.scss +573 -0
  90. data/_sass/minimal-mistakes/_notices.scss +109 -0
  91. data/_sass/minimal-mistakes/_page.scss +578 -0
  92. data/_sass/minimal-mistakes/_print.scss +252 -0
  93. data/_sass/minimal-mistakes/_reset.scss +187 -0
  94. data/_sass/minimal-mistakes/_search.scss +132 -0
  95. data/_sass/minimal-mistakes/_sidebar.scss +353 -0
  96. data/_sass/minimal-mistakes/_syntax.scss +324 -0
  97. data/_sass/minimal-mistakes/_tables.scss +39 -0
  98. data/_sass/minimal-mistakes/_utilities.scss +593 -0
  99. data/_sass/minimal-mistakes/_variables.scss +173 -0
  100. data/_sass/minimal-mistakes/skins/_air.scss +23 -0
  101. data/_sass/minimal-mistakes/skins/_aqua.scss +34 -0
  102. data/_sass/minimal-mistakes/skins/_contrast.scss +52 -0
  103. data/_sass/minimal-mistakes/skins/_dark.scss +30 -0
  104. data/_sass/minimal-mistakes/skins/_default.scss +5 -0
  105. data/_sass/minimal-mistakes/skins/_dirt.scss +33 -0
  106. data/_sass/minimal-mistakes/skins/_mint.scss +24 -0
  107. data/_sass/minimal-mistakes/skins/_neon.scss +63 -0
  108. data/_sass/minimal-mistakes/skins/_plum.scss +70 -0
  109. data/_sass/minimal-mistakes/skins/_sunrise.scss +49 -0
  110. data/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss +114 -0
  111. data/_sass/minimal-mistakes/vendor/breakpoint/_context.scss +95 -0
  112. data/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss +151 -0
  113. data/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss +50 -0
  114. data/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss +15 -0
  115. data/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss +215 -0
  116. data/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss +82 -0
  117. data/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss +71 -0
  118. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss +33 -0
  119. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss +82 -0
  120. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss +31 -0
  121. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss +26 -0
  122. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss +36 -0
  123. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss +21 -0
  124. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss +22 -0
  125. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss +22 -0
  126. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss +60 -0
  127. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss +13 -0
  128. data/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss +18 -0
  129. data/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss +649 -0
  130. data/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss +46 -0
  131. data/_sass/minimal-mistakes/vendor/susy/_su.scss +4 -0
  132. data/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss +13 -0
  133. data/_sass/minimal-mistakes/vendor/susy/_susy.scss +5 -0
  134. data/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss +5 -0
  135. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss +7 -0
  136. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss +114 -0
  137. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +67 -0
  138. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss +14 -0
  139. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +18 -0
  140. data/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss +133 -0
  141. data/_sass/minimal-mistakes/vendor/susy/susy/_api.scss +318 -0
  142. data/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss +261 -0
  143. data/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss +163 -0
  144. data/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss +329 -0
  145. data/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss +441 -0
  146. data/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss +213 -0
  147. data/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss +191 -0
  148. data/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss +56 -0
  149. data/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss +167 -0
  150. data/_sass/minimal-mistakes.scss +40 -0
  151. data/assets/css/main.scss +9 -0
  152. data/assets/images/android-chrome-192x192.png +0 -0
  153. data/assets/images/android-chrome-512x512.png +0 -0
  154. data/assets/images/apple-touch-icon.png +0 -0
  155. data/assets/images/browserconfig.xml +9 -0
  156. data/assets/images/creek-logo.png +0 -0
  157. data/assets/images/favicon-16x16.png +0 -0
  158. data/assets/images/favicon-32x32.png +0 -0
  159. data/assets/images/favicon.ico +0 -0
  160. data/assets/images/mstile-150x150.png +0 -0
  161. data/assets/images/safari-pinned-tab.svg +48 -0
  162. data/assets/images/site-under-construction.png +0 -0
  163. data/assets/images/site.webmanifest +19 -0
  164. data/assets/js/_main.js +136 -0
  165. data/assets/js/lunr/lunr-en.js +73 -0
  166. data/assets/js/lunr/lunr-gr.js +526 -0
  167. data/assets/js/lunr/lunr-store.js +84 -0
  168. data/assets/js/lunr/lunr.js +3475 -0
  169. data/assets/js/lunr/lunr.min.js +6 -0
  170. data/assets/js/main.min.js +6 -0
  171. data/assets/js/plugins/gumshoe.js +484 -0
  172. data/assets/js/plugins/jquery.ba-throttle-debounce.js +252 -0
  173. data/assets/js/plugins/jquery.fitvids.js +82 -0
  174. data/assets/js/plugins/jquery.greedy-navigation.js +127 -0
  175. data/assets/js/plugins/jquery.magnific-popup.js +1860 -0
  176. data/assets/js/plugins/smooth-scroll.js +650 -0
  177. data/assets/js/vendor/jquery/jquery-3.6.0.js +10881 -0
  178. metadata +233 -0
@@ -0,0 +1,191 @@
1
+ /// Syntax Utilities for Extending Susy
2
+ /// ===================================
3
+ /// There are many steps involved
4
+ /// when translating between the Susy syntax layer,
5
+ /// and the Su core math.
6
+ /// That entire process can be condensed with these two functions.
7
+ /// For anyone that wants to access the full power of Susy,
8
+ /// and build their own plugins, functions, or mixins –
9
+ /// this is the primary API for compiling user input,
10
+ /// and accessing the core math.
11
+ ///
12
+ /// This is the same technique we use internally,
13
+ /// to keep our API layer simple and light-weight.
14
+ /// Every function accepts two arguments,
15
+ /// a "shorthand" description of the span or context,
16
+ /// and an optional settings-map to override global defaults.
17
+ ///
18
+ /// - Use `susy-compile()` to parse, merge, and normalize
19
+ /// all the user settings into a single map.
20
+ /// - Then use `su-call()` to call one of the core math functions,
21
+ /// with whatever data is needed for that function.
22
+ ///
23
+ /// @group plugin-utils
24
+ /// @see susy-compile
25
+ /// @see su-call
26
+ ///
27
+ /// @example scss - Susy API `gutter` function
28
+ /// @function susy-gutter(
29
+ /// $context: susy-get('columns'),
30
+ /// $config: ()
31
+ /// ) {
32
+ /// // compile and normalize all user arguments and global settings
33
+ /// $context: susy-compile($context, $config, 'context-only');
34
+ /// // call `su-gutter` with the appropriate data
35
+ /// @return su-call('su-gutter', $context);
36
+ /// }
37
+ ///
38
+ /// @example scss - Sample `span` mixin for floated grids
39
+ /// @mixin span(
40
+ /// $span,
41
+ /// $config: ()
42
+ /// ) {
43
+ /// $context: susy-compile($span, $config);
44
+ /// width: su-call('su-span', $context);
45
+ ///
46
+ /// @if index($span, 'last') {
47
+ /// float: right;
48
+ /// } @else {
49
+ /// float: left;
50
+ /// margin-right: su-call('su-gutter', $context);
51
+ /// }
52
+ /// }
53
+
54
+
55
+
56
+ // Compile
57
+ // -------
58
+ /// Susy's syntax layer has various moving parts,
59
+ /// with syntax-parsing for the grid/span shorthand,
60
+ /// and normalization for each of the resulting values.
61
+ /// The compile function rolls this all together
62
+ /// in a single call –
63
+ /// for quick access from our internal API functions,
64
+ /// or any additional functions and mixins you add to your project.
65
+ /// Pass user input and configuration maps to the compiler,
66
+ /// and it will hand back a map of values ready for Su.
67
+ /// Combine this with the `su-call` function
68
+ /// to quickly parse, normalize, and process grid calculations.
69
+ ///
70
+ /// @group plugin-utils
71
+ /// @see su-call
72
+ ///
73
+ /// @param {list | map} $shorthand -
74
+ /// Shorthand expression to define the width of the span,
75
+ /// optionally containing:
76
+ /// - a count, length, or column-list span;
77
+ /// - `at $n`, `first`, or `last` location on asymmetrical grids;
78
+ /// - `narrow`, `wide`, or `wider` for optionally spreading
79
+ /// across adjacent gutters;
80
+ /// - `of $n <spread>` for available grid columns
81
+ /// and spread of the container
82
+ /// (span counts like `of 6` are only valid
83
+ /// in the context of symmetrical grids);
84
+ /// - and `set-gutters $n` to override global gutter settings
85
+ /// @param {map} $config [null] -
86
+ /// Optional map of Susy grid configuration settings
87
+ /// @param {bool} $context-only [false] -
88
+ /// Allow the parser to ignore span and span-spread values,
89
+ /// only parsing context and container-spread
90
+ ///
91
+ /// @return {map} -
92
+ /// Parsed and normalized map of settings,
93
+ /// based on global and local configuration,
94
+ /// alongwith shorthad adjustments.
95
+ ///
96
+ /// @example scss -
97
+ /// $user-input: 3 wide of susy-repeat(6, 120px) set-gutters 10px;
98
+ /// $grid-data: susy-compile($user-input, $susy);
99
+ ///
100
+ /// @each $key, $value in $grid-data {
101
+ /// /* #{$key}: #{$value}, */
102
+ /// }
103
+ @function susy-compile(
104
+ $short,
105
+ $config: null,
106
+ $context-only: false
107
+ ) {
108
+ // Get and normalize config
109
+ $config: if($config, susy-settings($config), susy-settings());
110
+ $normal-config: susy-normalize($config);
111
+
112
+ // Parse and normalize shorthand
113
+ @if (type-of($short) != 'map') and (length($short) > 0) {
114
+ $short: susy-parse($short, $context-only);
115
+ }
116
+
117
+ $normal-short: susy-normalize($short, $normal-config);
118
+
119
+ // Merge and return
120
+ @return map-merge($normal-config, $normal-short);
121
+ }
122
+
123
+
124
+
125
+ // Call
126
+ // ----
127
+ /// The Susy parsing and normalization process
128
+ /// results in a map of configuration settings,
129
+ /// much like the global `$susy` settings map.
130
+ /// In order to pass that information along to Su math functions,
131
+ /// the proper values have to be picked out,
132
+ /// and converted to arguments.
133
+ ///
134
+ /// The `su-call` function streamlines that process,
135
+ /// weeding out the unnecessary data,
136
+ /// and passing the rest along to Su in the proper format.
137
+ /// Combine this with `susy-compile` to quickly parse,
138
+ /// normalize, and process grid calculations.
139
+ ///
140
+ /// @group plugin-utils
141
+ ///
142
+ /// @require su-span
143
+ /// @require su-gutter
144
+ /// @require su-slice
145
+ /// @see susy-compile
146
+ ///
147
+ /// @param {'su-span' | 'su-gutter' | 'su-slice'} $name -
148
+ /// Name of the Su math function to call.
149
+ /// @param {map} $config -
150
+ /// Parsed and normalized map of Susy configuration settings
151
+ /// to use for math-function arguments.
152
+ ///
153
+ /// @return {*} -
154
+ /// Results of the function being called.
155
+ ///
156
+ /// @example scss -
157
+ /// $user-input: 3 wide of susy-repeat(6, 120px) set-gutters 10px;
158
+ /// $grid-data: susy-compile($user-input, $susy);
159
+ ///
160
+ /// .su-span {
161
+ /// width: su-call('su-span', $grid-data);
162
+ /// }
163
+ @function su-call(
164
+ $name,
165
+ $config
166
+ ) {
167
+ $grid-function-args: (
168
+ 'su-span': ('span', 'columns', 'gutters', 'spread', 'container-spread', 'location'),
169
+ 'su-gutter': ('columns', 'gutters', 'container-spread'),
170
+ 'su-slice': ('span', 'columns', 'location'),
171
+ );
172
+
173
+ $args: map-get($grid-function-args, $name);
174
+
175
+ @if not $args {
176
+ $options: 'Try one of these: #{map-keys($grid-function-args)}';
177
+ @return _susy-error(
178
+ '#{$name} is not a public Su function. #{$options}',
179
+ 'su-call');
180
+ }
181
+
182
+ $call: if(function-exists('get-function'), get-function($name), $name);
183
+ $output: ();
184
+
185
+ @each $arg in $args {
186
+ $value: map-get($config, $arg);
187
+ $output: if($value, map-merge($output, ($arg: $value)), $output);
188
+ }
189
+
190
+ @return call($call, $output...);
191
+ }
@@ -0,0 +1,56 @@
1
+ // Unprefix Susy
2
+ // =============
3
+
4
+
5
+ // Span
6
+ // ----
7
+ /// Un-prefixed alias for `susy-span`
8
+ /// (available by default)
9
+ ///
10
+ /// @group api
11
+ /// @alias susy-span
12
+ ///
13
+ /// @param {list} $span
14
+ /// @param {map} $config [()]
15
+ @function span(
16
+ $span,
17
+ $config: ()
18
+ ) {
19
+ @return susy-span($span, $config);
20
+ }
21
+
22
+
23
+ // Gutter
24
+ // ------
25
+ /// Un-prefixed alias for `susy-gutter`
26
+ /// (available by default)
27
+ ///
28
+ /// @group api
29
+ /// @alias susy-gutter
30
+ ///
31
+ /// @param {integer | list} $context [null] -
32
+ /// @param {map} $config [()]
33
+ @function gutter(
34
+ $context: susy-get('columns'),
35
+ $config: ()
36
+ ) {
37
+ @return susy-gutter($context, $config);
38
+ }
39
+
40
+
41
+ // Slice
42
+ // -----
43
+ /// Un-prefixed alias for `susy-slice`
44
+ /// (available by default)
45
+ ///
46
+ /// @group api
47
+ /// @alias susy-slice
48
+ ///
49
+ /// @param {list} $span
50
+ /// @param {map} $config [()]
51
+ @function slice(
52
+ $span,
53
+ $config: ()
54
+ ) {
55
+ @return susy-slice($span, $config);
56
+ }
@@ -0,0 +1,167 @@
1
+ // Sass Utilities
2
+ // ==============
3
+ // - Susy Error Output Override [variable]
4
+ // - Susy Error [function]
5
+
6
+
7
+
8
+ // Susy Error Output Override
9
+ // --------------------------
10
+ /// Turn off error output for testing
11
+ /// @group x-utility
12
+ /// @access private
13
+ $_susy-error-output-override: false !default;
14
+
15
+
16
+
17
+ // Susy Error
18
+ // ----------
19
+ /// Optionally return error messages without failing,
20
+ /// as a way to test error cases
21
+ ///
22
+ /// @group x-utility
23
+ /// @access private
24
+ ///
25
+ /// @param {string} $message -
26
+ /// A useful error message, explaining the problem
27
+ /// @param {string} $source -
28
+ /// The original source of the error for debugging
29
+ /// @param {bool} $override [$_susy-error-output-override] -
30
+ /// Optionally return the error rather than failing
31
+ /// @return {string} -
32
+ /// Combined error with source and message
33
+ /// @throws When `$override == true`
34
+ @function _susy-error(
35
+ $message,
36
+ $source,
37
+ $override: $_susy-error-output-override
38
+ ) {
39
+ @if $override {
40
+ @return 'ERROR [#{$source}] #{$message}';
41
+ }
42
+
43
+ @error '[#{$source}] #{$message}';
44
+ }
45
+
46
+
47
+ // Su Is Comparable
48
+ // ----------------
49
+ /// Check that the units in a grid are comparable
50
+ ///
51
+ /// @group x-validation
52
+ /// @access private
53
+ ///
54
+ /// @param {numbers} $lengths… -
55
+ /// Arglist of all the number values to compare
56
+ /// (columns, gutters, span, etc)
57
+ ///
58
+ /// @return {'fluid' | 'static' | false} -
59
+ /// The type of span (fluid or static) when units match,
60
+ /// or `false` for mismatched units
61
+ @function _su-is-comparable(
62
+ $lengths...
63
+ ) {
64
+ $first: nth($lengths, 1);
65
+
66
+ @if (length($lengths) == 1) {
67
+ @return if(unitless($first), 'fluid', 'static');
68
+ }
69
+
70
+ @for $i from 2 through length($lengths) {
71
+ $comp: nth($lengths, $i);
72
+
73
+ $fail: not comparable($first, $comp);
74
+ $fail: $fail or (unitless($first) and not unitless($comp));
75
+ $fail: $fail or (unitless($comp) and not unitless($first));
76
+
77
+ @if $fail {
78
+ @return false;
79
+ }
80
+ }
81
+
82
+ @return if(unitless($first), 'fluid', 'static');
83
+ }
84
+
85
+
86
+ // Su Map Add Units
87
+ // ----------------
88
+ /// The calc features use a map of units and values
89
+ /// to compile the proper algorythm.
90
+ /// This function adds a new value to any comparable existing unit/value,
91
+ /// or adds a new unit/value pair to the map
92
+ ///
93
+ /// @group x-utility
94
+ /// @access private
95
+ ///
96
+ /// @param {map} $map -
97
+ /// A map of unit/value pairs, e.g. ('px': 120px)
98
+ /// @param {length} $value -
99
+ /// A new length to be added to the map
100
+ /// @return {map} -
101
+ /// The updated map, with new value added
102
+ ///
103
+ /// @example scss -
104
+ /// $map: (0px: 120px);
105
+ /// $map: _su-map-add-units($map, 1in); // add a comparable unit
106
+ /// $map: _su-map-add-units($map, 3vw); // add a new unit
107
+ ///
108
+ /// @each $units, $value in $map {
109
+ /// /* #{$units}: #{$value} */
110
+ /// }
111
+ @function _su-map-add-units(
112
+ $map,
113
+ $value
114
+ ) {
115
+ $unit: $value * 0;
116
+ $has: map-get($map, $unit) or 0;
117
+
118
+ @if ($has == 0) {
119
+ @each $try, $could in $map {
120
+ $match: comparable($try, $value);
121
+ $unit: if($match, $try, $unit);
122
+ $has: if($match, $could, $has);
123
+ }
124
+ }
125
+
126
+ @return map-merge($map, ($unit: $has + $value));
127
+ }
128
+
129
+
130
+ // Susy Flatten
131
+ // ------------
132
+ /// Flatten a multidimensional list
133
+ ///
134
+ /// @group x-utility
135
+ /// @access private
136
+ ///
137
+ /// @param {list} $list -
138
+ /// The list to be flattened
139
+ /// @return {list} -
140
+ /// The flattened list
141
+ ///
142
+ /// @example scss -
143
+ /// $list: 120px (30em 30em) 120px;
144
+ /// /* #{_susy-flatten($list)} */
145
+ @function _susy-flatten(
146
+ $list
147
+ ) {
148
+ $flat: ();
149
+
150
+ // Don't iterate over maps
151
+ @if (type-of($list) == 'map') {
152
+ @return $list;
153
+ }
154
+
155
+ // Iterate over lists (or single items)
156
+ @each $item in $list {
157
+ @if (type-of($item) == 'list') {
158
+ $item: _susy-flatten($item);
159
+ $flat: join($flat, $item);
160
+ } @else {
161
+ $flat: append($flat, $item);
162
+ }
163
+ }
164
+
165
+ // Return flattened list
166
+ @return $flat;
167
+ }
@@ -0,0 +1,40 @@
1
+ /*!
2
+ * Minimal Mistakes Jekyll Theme 4.24.0 by Michael Rose
3
+ * Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes
4
+ * Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE)
5
+ */
6
+
7
+ /* Variables */
8
+ @import "minimal-mistakes/variables";
9
+
10
+ /* Mixins and functions */
11
+ @import "minimal-mistakes/vendor/breakpoint/breakpoint";
12
+ @include breakpoint-set("to ems", true);
13
+ @import "minimal-mistakes/vendor/magnific-popup/magnific-popup"; // Magnific Popup
14
+ @import "minimal-mistakes/vendor/susy/susy";
15
+ @import "minimal-mistakes/mixins";
16
+
17
+ /* Core CSS */
18
+ @import "minimal-mistakes/reset";
19
+ @import "minimal-mistakes/base";
20
+ @import "minimal-mistakes/forms";
21
+ @import "minimal-mistakes/tables";
22
+ @import "minimal-mistakes/animations";
23
+
24
+ /* Components */
25
+ @import "minimal-mistakes/buttons";
26
+ @import "minimal-mistakes/notices";
27
+ @import "minimal-mistakes/masthead";
28
+ @import "minimal-mistakes/navigation";
29
+ @import "minimal-mistakes/footer";
30
+ @import "minimal-mistakes/search";
31
+ @import "minimal-mistakes/syntax";
32
+
33
+ /* Utility classes */
34
+ @import "minimal-mistakes/utilities";
35
+
36
+ /* Layout specific */
37
+ @import "minimal-mistakes/page";
38
+ @import "minimal-mistakes/archive";
39
+ @import "minimal-mistakes/sidebar";
40
+ @import "minimal-mistakes/print";
@@ -0,0 +1,9 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ search: false
4
+ ---
5
+
6
+ @charset "utf-8";
7
+
8
+ @import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin
9
+ @import "minimal-mistakes"; // main partials
Binary file
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <browserconfig>
3
+ <msapplication>
4
+ <tile>
5
+ <square150x150logo src="/assets/images/mstile-150x150.png"/>
6
+ <TileColor>#da532c</TileColor>
7
+ </tile>
8
+ </msapplication>
9
+ </browserconfig>
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,48 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
3
+ "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
4
+ <svg version="1.0" xmlns="http://www.w3.org/2000/svg"
5
+ width="512.000000pt" height="512.000000pt" viewBox="0 0 512.000000 512.000000"
6
+ preserveAspectRatio="xMidYMid meet">
7
+ <metadata>
8
+ Created by potrace 1.14, written by Peter Selinger 2001-2017
9
+ </metadata>
10
+ <g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
11
+ fill="#000000" stroke="none">
12
+ <path d="M2675 4800 c-249 -17 -418 -41 -505 -70 -47 -16 -116 -37 -155 -46
13
+ -38 -8 -101 -31 -139 -50 -39 -19 -75 -34 -81 -34 -16 0 -242 -115 -264 -133
14
+ -9 -8 -36 -25 -61 -37 -25 -13 -61 -37 -82 -54 -20 -17 -50 -40 -66 -51 -109
15
+ -72 -274 -227 -378 -356 -99 -122 -132 -167 -150 -201 -9 -18 -33 -58 -53 -88
16
+ -20 -30 -43 -71 -50 -90 -8 -19 -25 -51 -38 -71 -37 -56 -115 -278 -153 -434
17
+ -12 -49 -29 -117 -37 -150 -11 -42 -17 -140 -20 -332 -6 -289 2 -402 37 -533
18
+ 11 -41 29 -120 41 -175 11 -55 32 -120 45 -144 13 -24 31 -71 40 -105 8 -34
19
+ 28 -79 43 -101 15 -22 38 -66 50 -97 13 -32 30 -63 38 -70 8 -6 28 -37 44 -67
20
+ 36 -67 87 -143 128 -191 141 -164 184 -210 257 -273 158 -136 252 -208 325
21
+ -246 30 -16 61 -36 68 -45 7 -8 38 -25 69 -36 30 -12 68 -30 83 -41 16 -11 61
22
+ -31 101 -45 40 -13 93 -35 118 -48 25 -13 79 -31 121 -40 42 -8 110 -27 150
23
+ -41 213 -75 917 -77 1119 -4 30 12 97 31 149 45 52 13 115 34 140 47 25 14 72
24
+ 32 104 41 31 9 78 30 104 46 25 16 67 36 94 45 26 9 53 23 61 32 7 9 35 26 62
25
+ 39 27 12 72 39 100 59 28 19 67 47 86 60 19 14 48 33 64 42 16 10 76 59 134
26
+ 108 57 50 115 98 128 108 19 15 24 28 24 65 0 43 -4 50 -77 126 -43 45 -116
27
+ 123 -163 174 -47 51 -114 123 -149 160 -35 37 -79 86 -98 110 -20 23 -44 42
28
+ -55 42 -32 0 -81 -25 -119 -61 -34 -33 -50 -46 -184 -143 -33 -24 -85 -55
29
+ -115 -68 -30 -14 -61 -32 -68 -41 -8 -9 -37 -23 -65 -32 -29 -10 -83 -32 -122
30
+ -50 -43 -21 -104 -40 -160 -49 -49 -8 -112 -23 -140 -31 -78 -26 -292 -31
31
+ -385 -10 -41 9 -124 27 -185 40 -73 15 -138 36 -194 64 -47 22 -90 41 -97 41
32
+ -6 0 -29 14 -50 31 -22 17 -57 40 -79 51 -35 18 -64 40 -129 98 -36 33 -80 76
33
+ -100 99 -12 13 -38 42 -59 64 -20 23 -37 45 -37 51 0 5 -18 32 -39 60 -22 28
34
+ -48 71 -59 96 -10 25 -31 62 -45 83 -14 21 -31 64 -37 95 -7 31 -25 89 -40
35
+ 129 -63 158 -68 580 -9 741 12 31 32 95 46 141 13 47 33 96 42 110 10 15 33
36
+ 53 50 86 55 103 159 245 216 293 10 9 35 33 55 53 19 20 44 42 56 47 12 6 41
37
+ 28 65 48 24 20 60 44 79 52 19 8 47 25 62 37 15 13 58 33 95 45 37 13 92 34
38
+ 122 48 166 77 658 80 836 5 33 -13 86 -33 117 -44 70 -22 110 -43 127 -63 7
39
+ -8 35 -22 62 -31 27 -9 67 -32 90 -51 22 -19 45 -34 49 -34 5 0 30 -18 55 -40
40
+ 25 -22 49 -40 53 -40 4 0 42 -34 85 -75 116 -111 159 -128 196 -77 39 53 96
41
+ 125 141 177 25 29 68 81 95 115 28 35 62 74 76 89 15 14 35 40 45 56 20 32 57
42
+ 75 117 135 33 32 38 43 33 67 -10 45 -35 75 -116 141 -41 34 -93 77 -115 95
43
+ -22 19 -54 41 -71 50 -17 9 -37 23 -44 32 -8 9 -41 30 -74 47 -34 17 -70 38
44
+ -81 48 -11 10 -48 30 -83 43 -34 14 -74 35 -89 47 -14 11 -51 27 -82 36 -31 9
45
+ -76 28 -101 42 -24 14 -92 38 -150 53 -58 15 -130 36 -160 47 -52 19 -206 41
46
+ -425 62 -110 10 -148 10 -310 0z"/>
47
+ </g>
48
+ </svg>
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "",
3
+ "short_name": "",
4
+ "icons": [
5
+ {
6
+ "src": "/assets/images/android-chrome-192x192.png",
7
+ "sizes": "192x192",
8
+ "type": "image/png"
9
+ },
10
+ {
11
+ "src": "/assets/images/android-chrome-512x512.png",
12
+ "sizes": "512x512",
13
+ "type": "image/png"
14
+ }
15
+ ],
16
+ "theme_color": "#ffffff",
17
+ "background_color": "#ffffff",
18
+ "display": "standalone"
19
+ }