jekyll-theme-hydebetty 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (301) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +622 -0
  3. data/README.md +180 -0
  4. data/_includes/body/analytics.html +43 -0
  5. data/_includes/body/comments.html +6 -0
  6. data/_includes/body/footer.html +19 -0
  7. data/_includes/body/index.html +22 -0
  8. data/_includes/body/main.html +18 -0
  9. data/_includes/body/menu.html +24 -0
  10. data/_includes/body/nav.html +41 -0
  11. data/_includes/body/scripts.html +9 -0
  12. data/_includes/body/sidebar.html +47 -0
  13. data/_includes/components/about.html +8 -0
  14. data/_includes/components/author.html +24 -0
  15. data/_includes/components/avatar-tag.html +4 -0
  16. data/_includes/components/hy-img.html +40 -0
  17. data/_includes/components/link.html +12 -0
  18. data/_includes/components/message.html +14 -0
  19. data/_includes/components/pagination.html +15 -0
  20. data/_includes/components/post-list-item.html +7 -0
  21. data/_includes/components/post.html +49 -0
  22. data/_includes/components/related-posts.html +25 -0
  23. data/_includes/components/social-list-item.html +40 -0
  24. data/_includes/components/social.html +23 -0
  25. data/_includes/components/tag-list.html +26 -0
  26. data/_includes/head/feed-tag.html +1 -0
  27. data/_includes/head/index.html +9 -0
  28. data/_includes/head/links.html +33 -0
  29. data/_includes/head/meta.html +34 -0
  30. data/_includes/head/page-style.html +6 -0
  31. data/_includes/head/scripts.html +9 -0
  32. data/_includes/head/seo-fallback.html +13 -0
  33. data/_includes/head/seo-tag.html +4 -0
  34. data/_includes/head/styles.html +41 -0
  35. data/_includes/header.txt +13 -0
  36. data/_includes/icon-github.html +2 -0
  37. data/_includes/my-body.html +42 -0
  38. data/_includes/my-comments.html +24 -0
  39. data/_includes/my-head.html +13 -0
  40. data/_includes/my-scripts.html +55 -0
  41. data/_includes/scripts/cssrelpreload.min.js +1 -0
  42. data/_includes/scripts/load-js.js +60 -0
  43. data/_includes/scripts/load-js.min.js +0 -0
  44. data/_includes/scripts/loadCSS.min.js +1 -0
  45. data/_includes/scripts/nomodule.js +21 -0
  46. data/_includes/scripts/nomodule.min.js +0 -0
  47. data/_includes/scripts.html +33 -0
  48. data/_includes/smart-url.txt +1 -0
  49. data/_includes/styles/inline.scss +62 -0
  50. data/_includes/styles/page-style.scss +64 -0
  51. data/_includes/styles/style.scss +113 -0
  52. data/_includes/templates/animation.html +7 -0
  53. data/_includes/templates/back.html +6 -0
  54. data/_includes/templates/error.html +10 -0
  55. data/_includes/templates/forward.html +6 -0
  56. data/_includes/templates/index.html +12 -0
  57. data/_includes/templates/loading.html +6 -0
  58. data/_includes/templates/permalink.html +6 -0
  59. data/_layouts/about.html +43 -0
  60. data/_layouts/base.html +38 -0
  61. data/_layouts/blog.html +32 -0
  62. data/_layouts/compress.html +15 -0
  63. data/_layouts/default.html +56 -0
  64. data/_layouts/home.html +20 -0
  65. data/_layouts/list.html +46 -0
  66. data/_layouts/not-found.html +37 -0
  67. data/_layouts/page.html +27 -0
  68. data/_layouts/post.html +34 -0
  69. data/_layouts/redirect.html +23 -0
  70. data/_sass/_mixins.scss +63 -0
  71. data/_sass/_reboot-mod.scss +286 -0
  72. data/_sass/_spinner.scss +45 -0
  73. data/_sass/_syntax.scss +131 -0
  74. data/_sass/_variables.scss +63 -0
  75. data/_sass/hydejack/__inline__/_avatar.scss +48 -0
  76. data/_sass/hydejack/__inline__/_base.scss +73 -0
  77. data/_sass/hydejack/__inline__/_break-layout.scss +25 -0
  78. data/_sass/hydejack/__inline__/_content.scss +59 -0
  79. data/_sass/hydejack/__inline__/_footer.scss +25 -0
  80. data/_sass/hydejack/__inline__/_images.scss +38 -0
  81. data/_sass/hydejack/__inline__/_katex.scss +25 -0
  82. data/_sass/hydejack/__inline__/_links.scss +45 -0
  83. data/_sass/hydejack/__inline__/_mark-external.scss +25 -0
  84. data/_sass/hydejack/__inline__/_menu.scss +67 -0
  85. data/_sass/hydejack/__inline__/_sidebar.scss +144 -0
  86. data/_sass/hydejack/__inline__/_social.scss +58 -0
  87. data/_sass/hydejack/__inline__/_utilities.scss +45 -0
  88. data/_sass/hydejack/__link__/_avatar.scss +38 -0
  89. data/_sass/hydejack/__link__/_base.scss +42 -0
  90. data/_sass/hydejack/__link__/_break-layout.scss +64 -0
  91. data/_sass/hydejack/__link__/_content.scss +32 -0
  92. data/_sass/hydejack/__link__/_footer.scss +47 -0
  93. data/_sass/hydejack/__link__/_images.scss +90 -0
  94. data/_sass/hydejack/__link__/_katex.scss +57 -0
  95. data/_sass/hydejack/__link__/_links.scss +53 -0
  96. data/_sass/hydejack/__link__/_mark-external.scss +51 -0
  97. data/_sass/hydejack/__link__/_menu.scss +42 -0
  98. data/_sass/hydejack/__link__/_sidebar.scss +114 -0
  99. data/_sass/hydejack/__link__/_social.scss +33 -0
  100. data/_sass/hydejack/__link__/_utilities.scss +54 -0
  101. data/_sass/hydejack/_avatar.pre.scss +44 -0
  102. data/_sass/hydejack/_base.pre.scss +78 -0
  103. data/_sass/hydejack/_break-layout.pre.scss +55 -0
  104. data/_sass/hydejack/_content.pre.scss +56 -0
  105. data/_sass/hydejack/_footer.pre.scss +38 -0
  106. data/_sass/hydejack/_images.pre.scss +83 -0
  107. data/_sass/hydejack/_katex.pre.scss +48 -0
  108. data/_sass/hydejack/_links.pre.scss +47 -0
  109. data/_sass/hydejack/_mark-external.pre.scss +42 -0
  110. data/_sass/hydejack/_menu.pre.scss +74 -0
  111. data/_sass/hydejack/_sidebar.pre.scss +175 -0
  112. data/_sass/hydejack/_social.pre.scss +55 -0
  113. data/_sass/hydejack/_utilities.pre.scss +46 -0
  114. data/_sass/my-inline.scss +16 -0
  115. data/_sass/my-style.scss +9 -0
  116. data/_sass/my-variables.scss +1 -0
  117. data/_sass/pooleparty/__inline__/_base.scss +75 -0
  118. data/_sass/pooleparty/__inline__/_code.scss +25 -0
  119. data/_sass/pooleparty/__inline__/_footer.scss +25 -0
  120. data/_sass/pooleparty/__inline__/_footnotes.scss +25 -0
  121. data/_sass/pooleparty/__inline__/_message.scss +35 -0
  122. data/_sass/pooleparty/__inline__/_pagination.scss +25 -0
  123. data/_sass/pooleparty/__inline__/_posts.scss +49 -0
  124. data/_sass/pooleparty/__inline__/_read-more.scss +25 -0
  125. data/_sass/pooleparty/__inline__/_related.scss +38 -0
  126. data/_sass/pooleparty/__inline__/_table.scss +53 -0
  127. data/_sass/pooleparty/__inline__/_type.scss +88 -0
  128. data/_sass/pooleparty/__link__/_base.scss +40 -0
  129. data/_sass/pooleparty/__link__/_code.scss +75 -0
  130. data/_sass/pooleparty/__link__/_footer.scss +25 -0
  131. data/_sass/pooleparty/__link__/_footnotes.scss +80 -0
  132. data/_sass/pooleparty/__link__/_message.scss +25 -0
  133. data/_sass/pooleparty/__link__/_pagination.scss +90 -0
  134. data/_sass/pooleparty/__link__/_posts.scss +38 -0
  135. data/_sass/pooleparty/__link__/_read-more.scss +45 -0
  136. data/_sass/pooleparty/__link__/_related.scss +33 -0
  137. data/_sass/pooleparty/__link__/_table.scss +171 -0
  138. data/_sass/pooleparty/__link__/_type.scss +141 -0
  139. data/_sass/pooleparty/_base.pre.scss +74 -0
  140. data/_sass/pooleparty/_code.pre.scss +66 -0
  141. data/_sass/pooleparty/_footer.pre.scss +16 -0
  142. data/_sass/pooleparty/_footnotes.pre.scss +71 -0
  143. data/_sass/pooleparty/_message.pre.scss +26 -0
  144. data/_sass/pooleparty/_pagination.pre.scss +81 -0
  145. data/_sass/pooleparty/_posts.pre.scss +52 -0
  146. data/_sass/pooleparty/_read-more.pre.scss +36 -0
  147. data/_sass/pooleparty/_related.pre.scss +35 -0
  148. data/_sass/pooleparty/_table.pre.scss +180 -0
  149. data/_sass/pooleparty/_type.pre.scss +193 -0
  150. data/assets/Resume.pdf +0 -0
  151. data/assets/bower.json +11 -0
  152. data/assets/bower_components/html5shiv/.bower.json +26 -0
  153. data/assets/bower_components/html5shiv/Gruntfile.js +61 -0
  154. data/assets/bower_components/html5shiv/bower.json +15 -0
  155. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.js +524 -0
  156. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.min.js +4 -0
  157. data/assets/bower_components/html5shiv/dist/html5shiv.js +326 -0
  158. data/assets/bower_components/html5shiv/dist/html5shiv.min.js +4 -0
  159. data/assets/bower_components/html5shiv/package.json +16 -0
  160. data/assets/bower_components/katex/.bower.json +47 -0
  161. data/assets/bower_components/katex/LICENSE +21 -0
  162. data/assets/bower_components/katex/bower.json +36 -0
  163. data/assets/bower_components/katex/dist/contrib/auto-render.js +339 -0
  164. data/assets/bower_components/katex/dist/contrib/auto-render.min.js +1 -0
  165. data/assets/bower_components/katex/dist/contrib/auto-render.mjs +215 -0
  166. data/assets/bower_components/katex/dist/contrib/copy-tex.css +14 -0
  167. data/assets/bower_components/katex/dist/contrib/copy-tex.js +213 -0
  168. data/assets/bower_components/katex/dist/contrib/copy-tex.min.css +1 -0
  169. data/assets/bower_components/katex/dist/contrib/copy-tex.min.js +1 -0
  170. data/assets/bower_components/katex/dist/contrib/copy-tex.mjs +85 -0
  171. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.js +137 -0
  172. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.min.js +1 -0
  173. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.mjs +24 -0
  174. data/assets/bower_components/katex/dist/contrib/mhchem.js +3241 -0
  175. data/assets/bower_components/katex/dist/contrib/mhchem.min.js +1 -0
  176. data/assets/bower_components/katex/dist/contrib/mhchem.mjs +3109 -0
  177. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.ttf +0 -0
  178. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff +0 -0
  179. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  180. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  181. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  182. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  183. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  184. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  185. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  186. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  187. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  188. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  189. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  190. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  191. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  192. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.ttf +0 -0
  193. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff +0 -0
  194. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff2 +0 -0
  195. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  196. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  197. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  198. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.ttf +0 -0
  199. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff +0 -0
  200. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff2 +0 -0
  201. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.ttf +0 -0
  202. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff +0 -0
  203. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff2 +0 -0
  204. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  205. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  206. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  207. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.ttf +0 -0
  208. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff +0 -0
  209. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff2 +0 -0
  210. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  211. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  212. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  213. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  214. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  215. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  216. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  217. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  218. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  219. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.ttf +0 -0
  220. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff +0 -0
  221. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff2 +0 -0
  222. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.ttf +0 -0
  223. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff +0 -0
  224. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  225. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.ttf +0 -0
  226. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff +0 -0
  227. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  228. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.ttf +0 -0
  229. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff +0 -0
  230. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  231. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.ttf +0 -0
  232. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff +0 -0
  233. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  234. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  235. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  236. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  237. data/assets/bower_components/katex/dist/katex.css +1021 -0
  238. data/assets/bower_components/katex/dist/katex.js +16809 -0
  239. data/assets/bower_components/katex/dist/katex.min.css +1 -0
  240. data/assets/bower_components/katex/dist/katex.min.js +1 -0
  241. data/assets/bower_components/katex/dist/katex.mjs +16342 -0
  242. data/assets/bower_components/katex/yarn.lock +8952 -0
  243. data/assets/css/hydejack-7.5.2.css +3 -0
  244. data/assets/css/hydejack-8.5.2.css +3 -0
  245. data/assets/icomoon/fonts/icomoon.eot +0 -0
  246. data/assets/icomoon/fonts/icomoon.svg +96 -0
  247. data/assets/icomoon/fonts/icomoon.ttf +0 -0
  248. data/assets/icomoon/fonts/icomoon.woff +0 -0
  249. data/assets/icomoon/selection.json +1 -0
  250. data/assets/icomoon/style.css +284 -0
  251. data/assets/icons/favicon.ico +0 -0
  252. data/assets/icons/icon.png +0 -0
  253. data/assets/icons/icon@0,25x.png +0 -0
  254. data/assets/icons/icon@0,5x.png +0 -0
  255. data/assets/icons/icon@0,75x.png +0 -0
  256. data/assets/icons/icon@2x.png +0 -0
  257. data/assets/icons/icon@3x.png +0 -0
  258. data/assets/icons/tile-large.png +0 -0
  259. data/assets/icons/tile-medium.png +0 -0
  260. data/assets/icons/tile-small.png +0 -0
  261. data/assets/icons/tile-wide.png +0 -0
  262. data/assets/ieconfig.xml +15 -0
  263. data/assets/img/blog/COLOURlovers.com-Hydejack.png +0 -0
  264. data/assets/img/blog/blog-layout.jpg +0 -0
  265. data/assets/img/blog/caleb-george-old.jpg +0 -0
  266. data/assets/img/blog/caleb-george.jpg +0 -0
  267. data/assets/img/blog/cover-page.jpg +0 -0
  268. data/assets/img/blog/dark-mode-ii.jpg +0 -0
  269. data/assets/img/blog/dark-mode.jpg +0 -0
  270. data/assets/img/blog/example-content-ii.jpg +0 -0
  271. data/assets/img/blog/example-content-iii.jpg +0 -0
  272. data/assets/img/blog/hydejack-8.png +0 -0
  273. data/assets/img/blog/hydejack-8@0,25x.png +0 -0
  274. data/assets/img/blog/hydejack-8@0,5x.png +0 -0
  275. data/assets/img/blog/lazy-images.jpg +0 -0
  276. data/assets/img/blog/louis-hansel.jpg +0 -0
  277. data/assets/img/blog/resume.png +0 -0
  278. data/assets/img/blog/steve-harvey.jpg +0 -0
  279. data/assets/img/blog/w3m.png +0 -0
  280. data/assets/img/blog/wade-lambert.jpg +0 -0
  281. data/assets/img/docs/google-fonts.png +0 -0
  282. data/assets/img/projects/hy-drawer.svg +12 -0
  283. data/assets/img/projects/hy-img.svg +17 -0
  284. data/assets/img/projects/hy-push-state.svg +13 -0
  285. data/assets/img/sidebar-bg.jpg +0 -0
  286. data/assets/img/swipe.svg +22 -0
  287. data/assets/js/hydejack-8.5.2.js +161 -0
  288. data/assets/js/hydejack-legacy-8.5.2.js +190 -0
  289. data/assets/manifest.json +46 -0
  290. data/assets/version.json +3 -0
  291. data/assets/video/blog-layout.mp4 +0 -0
  292. data/assets/video/cover-page.mp4 +0 -0
  293. data/assets/video/dark-mode.mp4 +0 -0
  294. data/assets/video/lazy-images.mp4 +0 -0
  295. data/licenses/Apache-2.0.md +208 -0
  296. data/licenses/GPL-3.0.md +620 -0
  297. data/licenses/MIT.md +21 -0
  298. data/licenses/PRO.md +136 -0
  299. data/licenses/README.md +10 -0
  300. data/licenses/W3C.md +31 -0
  301. metadata +385 -0
@@ -0,0 +1,4 @@
1
+ {% comment %}<!--
2
+ Including `avatar` in a partial prevents a parse error when `jekyll-avatar` is not included.
3
+ -->{% endcomment %}
4
+ {% avatar user=include.user size=128 %}
@@ -0,0 +1,40 @@
1
+ {% if include.img.src or include.img.path %}
2
+ {% assign srcset = null %}
3
+
4
+ {% if include.img.srcset %}
5
+ {% capture srcset %}{% for hash in include.img.srcset %}{% assign tmp = hash[1] %}{% include smart-url.txt url=tmp %} {{ hash[0] }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
6
+ {% endif %}
7
+
8
+ {% assign src = include.img.src | default:include.img.path %}
9
+ {% capture attrs %}
10
+ src="{% include smart-url.txt url=src %}"
11
+ {% if include.class %}class="{{ include.class }}"{% endif %}
12
+ {% if include.alt %}alt="{{ include.alt }}"{% endif %}
13
+ {% if srcset %}srcset="{{ srcset | strip }}"{% endif %}
14
+ {% if include.sizes %}sizes="{{ include.sizes }}"{% endif %}
15
+ {% endcapture %}
16
+ {% else %}
17
+ {% capture attrs %}
18
+ src="{% include smart-url.txt url=include.img %}"
19
+ {% if include.class %}class="{{ include.class }}"{% endif %}
20
+ {% if include.alt %}alt="{{ include.alt }}"{% endif %}
21
+ {% endcapture %}
22
+ {% endif %}
23
+
24
+ {% unless site.hydejack.no_img %}
25
+ <hy-img
26
+ {{ attrs }}
27
+ {% if include.property %}property="{{ include.property }}"{% endif %}
28
+ root-margin="512px"
29
+ >
30
+ <noscript><img data-ignore {{ attrs }}/></noscript>
31
+ <span class="loading" slot="loading" hidden>
32
+ <span class="icon-cog"></span>
33
+ </span>
34
+ </hy-img>
35
+ {% else %}
36
+ <img
37
+ {{ attrs }}
38
+ {% if include.property %}property="{{ include.property }}"{% endif %}
39
+ />
40
+ {% endunless %}
@@ -0,0 +1,12 @@
1
+ {% if include.href.size > 0 %}
2
+ <a
3
+ class="{{ include.class }} {{ include.a_class }}"
4
+ href="{{ include.href }}"
5
+ {% if include.rel %}rel="{{ include.rel }}"{% endif %}
6
+ {% if include.property %}property="{{ include.property }}"{% endif %}
7
+ >
8
+ {{ include.title }}
9
+ </a>
10
+ {% else %}
11
+ <span class="{{ include.class }} {{ include.span_class }}">{{ include.title }}</span>
12
+ {% endif %}
@@ -0,0 +1,14 @@
1
+ {% assign alt = include.alt %}
2
+ {% unless alt %}{% capture alt %}<div class="hr pb0"></div>{% endcapture %}{% endunless %}
3
+
4
+ {% if include.text.size > 0 %}
5
+ {% unless include.hide %}
6
+ <p class="message" {% if include.property %}property="{{ include.property }}"{% endif %}>
7
+ {{ include.text | markdownify | replace:"<p>","" | replace:"</p>","" }}
8
+ </p>
9
+ {% else %}
10
+ {{ alt }}
11
+ {% endunless %}
12
+ {% else %}
13
+ {{ alt }}
14
+ {% endif %}
@@ -0,0 +1,15 @@
1
+ <h2 class="sr-only">{{ site.data.strings.pagination | default:"Pagination" }}</h2>
2
+ <nav class="pagination heading clearfix" role="navigation">
3
+ <ul>
4
+ <li class="pagination-item older" >
5
+ {% assign next_title = site.data.strings.older | default:"Older" %}
6
+ {% assign next_href = paginator.next_page_path | relative_url %}
7
+ {% include components/link.html rel="next" title=next_title href=next_href %}
8
+ </li>
9
+ <li class="pagination-item newer" >
10
+ {% assign prev_title = site.data.strings.newer | default:"Newer" %}
11
+ {% assign prev_href = paginator.previous_page_path | relative_url %}
12
+ {% include components/link.html rel="prev" title=prev_title href=prev_href %}
13
+ </li>
14
+ </ul>
15
+ </nav>
@@ -0,0 +1,7 @@
1
+ {% assign post = include.post %}
2
+ {% assign format = include.format | default:site.data.strings.date_formats.related_post | default:"%d %b %Y" %}
3
+
4
+ <li>
5
+ <a href="{{ post.url | relative_url }}" class="h4 flip-title"><span>{{ post.title }}</span></a>
6
+ <time class="heading faded fine" datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date:format }}</time>
7
+ </li>
@@ -0,0 +1,49 @@
1
+ {% assign post = include.post %}
2
+ {% assign no_link_title = include.no_link_title %}
3
+ {% assign no_excerpt = include.no_excerpt %}
4
+ {% assign hide_image = include.hide_image %}
5
+
6
+ <article id="post{{ post.id | replace:'/','-' }}" class="page post mb6" role="article">
7
+ <header>
8
+ <h1 class="post-title">
9
+ {% unless no_link_title %}<a href="{{ post.url | relative_url }}" class="flip-title">{% endunless %}
10
+ {{ post.title }}
11
+ {% unless no_link_title %}</a>{% endunless %}
12
+ </h1>
13
+
14
+ <p class="post-date heading">
15
+ {% assign post_format = site.data.strings.date_formats.post | default:"%d %b %Y" %}
16
+ <time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date:post_format }}</time>
17
+ {% assign category_start = site.data.strings.category_start | default:"in " %}
18
+ {% assign tag_start = site.data.strings.tag_start | default:"on " %}
19
+ {% assign category_separator = site.data.strings.category_separator | default:" / " %}
20
+ {% assign tag_separator = site.data.strings.tag_separator | default:", " %}
21
+ {% include components/tag-list.html tags=post.categories meta=site.featured_categories start_with=category_start separator=category_separator %}
22
+ {% include components/tag-list.html tags=post.tags meta=site.featured_tags start_with=tag_start separator=tag_separator %}
23
+ </p>
24
+
25
+ {% assign alt = false %}
26
+ {% unless hide_image %}{% if post.image %}
27
+ <div class="img lead sixteen-nine">
28
+ {% include components/hy-img.html img=post.image alt=post.title %}
29
+ </div>
30
+ {% assign alt = '' %}
31
+ {% endif %}{% endunless %}
32
+
33
+ {% include components/message.html text=post.description hide=page.hide_description alt=alt %}
34
+ </header>
35
+
36
+ {% if no_excerpt %}
37
+ {{ post.content }}
38
+ {% else %}
39
+ {{ post.excerpt }}
40
+
41
+ {% capture post_title %}<a class="heading flip-title" href="{{ post.url | relative_url }}">{{ post.title }}</a>{% endcapture %}
42
+ {% assign text = site.data.strings.continue_reading | default:"Continue reading <!--post_title-->" %}
43
+ <footer>
44
+ <p class="read-more">
45
+ {{ text | replace:"<!--post_title-->", post_title }}
46
+ </p>
47
+ </footer>
48
+ {% endif %}
49
+ </article>
@@ -0,0 +1,25 @@
1
+ {% assign post = include.post %}
2
+
3
+ {% if page.related_posts %}
4
+ {% assign related_posts = site.posts | where_exp:"post", "page.related_posts contains post.path" %}
5
+ {% elsif site.hydejack.use_lsi or site.use_lsi %}
6
+ {% assign related_posts = site.related_posts %}
7
+ {% elsif post.categories.first %}
8
+ {% assign related_posts = site.categories[post.categories.first] | where_exp:"post", "post.url != page.url" %}
9
+ {% elsif post.tags.first %}
10
+ {% assign related_posts = site.tags[post.tags.first] | where_exp:"post", "post.url != page.url" %}
11
+ {% else %}
12
+ {% assign related_posts = site.related_posts %}
13
+ {% endif %}
14
+
15
+ {% if related_posts.size > 0 %}
16
+ <aside class="related mb4" role="complementary">
17
+ <h2 class="hr">{{ site.data.strings.related_posts | default:"Related Posts" }}</h2>
18
+
19
+ <ul class="related-posts">
20
+ {% for post in related_posts limit:3 %}
21
+ {% include components/post-list-item.html post=post %}
22
+ {% endfor %}
23
+ </ul>
24
+ </aside>
25
+ {% endif %}
@@ -0,0 +1,40 @@
1
+ {% assign platform = include.platform | downcase %}
2
+ {% assign username = include.username %}
3
+
4
+ {% if username.size > 0 %}
5
+ {% assign = data_social = site.data.social[platform] | default:site.data_social[platform] %}
6
+
7
+ {% assign name = data_social.name | default:include.platform %}
8
+ {% assign icon = data_social.icon | default:'icon-link' %}
9
+ {% assign app = data_social.append %}
10
+ {% assign prep = data_social.prepend %}
11
+
12
+ {% unless data_social %}
13
+ {% if platform == "email" %}
14
+ {% assign name = "Email" %}
15
+ {% assign icon = "icon-mail" %}
16
+ {% assign prep = "mailto:" %}
17
+ {% elsif platform == "twitter" %}
18
+ {% assign name = "Twitter" %}
19
+ {% assign icon = "icon-twitter" %}
20
+ {% assign prep = "https://twitter.com/" %}
21
+ {% elsif platform == "github" %}
22
+ {% assign name = "GitHub" %}
23
+ {% assign icon = "icon-github" %}
24
+ {% assign prep = "https://github.com/" %}
25
+ {% endif %}
26
+ {% endunless %}
27
+
28
+ {% if username contains "//" or username contains "mailto:" %}
29
+ {% assign url = username %}
30
+ {% else %}
31
+ {% assign url = username | prepend:prep | append:app %}
32
+ {% endif %}
33
+
34
+ <li>
35
+ <a href="{{ url }}" title="{{ name }}" class="no-mark-external">
36
+ <span class="{{ icon }}"></span>
37
+ <span class="sr-only">{{ name }}</span>
38
+ </a>
39
+ </li>
40
+ {% endif %}
@@ -0,0 +1,23 @@
1
+ <span class="sr-only">{{ site.data.strings.social | default:"Social" }}{{ site.data.strings.colon }}</span>
2
+ <ul>
3
+ {% if include.author.social %}
4
+ {% for link in include.author.social %}
5
+ {% include components/social-list-item.html platform=link.first username=link.last %}
6
+ {% endfor %}
7
+ {% else %}
8
+ {% assign twitter_username = author.twitter.username | default: author.twitter | default:site.twitter.username | default:site.twitter | default:site.twitter_username %}
9
+ {% if twitter_username %}
10
+ {% include components/social-list-item.html platform="twitter" username=twitter_username %}
11
+ {% endif %}
12
+
13
+ {% assign github_username = author.github.username | default: author.github | default:site.github.username | default:site.github | default:site.github_username %}
14
+ {% if github_username %}
15
+ {% include components/social-list-item.html platform="github" username=github_username %}
16
+ {% endif %}
17
+
18
+ {% assign email = author.email | default: site.email %}
19
+ {% if email %}
20
+ {% include components/social-list-item.html platform="email" username=email %}
21
+ {% endif %}
22
+ {% endif %}
23
+ </ul>
@@ -0,0 +1,26 @@
1
+ {% assign tags = include.tags %}
2
+ {% assign meta = include.meta %}
3
+ {% assign start_with = include.start_with %}
4
+ {% assign separator = include.separator %}
5
+ {% assign end_with = include.end_with %}
6
+
7
+ {% assign content = '' %}
8
+
9
+ {% if tags.size > 0 %}
10
+ {% assign content = start_with %}
11
+ {% for tag_slug in tags %}
12
+ {% capture iter_separator %}{% if forloop.last %}{{ end_with }}{% else %}{{ separator }}{% endif %}{% endcapture %}
13
+
14
+ {% assign tag = meta | where: "slug", tag_slug | first %}
15
+
16
+ {% if tag %}
17
+ {% capture content_temp %}{{ content }}<a href="{{ tag.url | relative_url }}" class="flip-title">{{ tag.title }}</a>{{ iter_separator }}{% endcapture %}
18
+ {% else %}
19
+ {% capture content_temp %}{{ content }}<span>{{ tag_slug | capitalize }}</span>{{ iter_separator }}{% endcapture %}
20
+ {% endif %}
21
+
22
+ {% assign content = content_temp %}
23
+ {% endfor %}
24
+ {% endif %}
25
+
26
+ {{ content }}
@@ -0,0 +1 @@
1
+ {% feed_meta %}
@@ -0,0 +1,9 @@
1
+ {% assign google_fonts = site.google_fonts | default:"Roboto+Slab:400|Noto+Sans:400,400i,700,700i" %}
2
+ {% assign font_heading = site.font_heading | default:"Roboto Slab, Helvetica, Arial, sans-serif" %}
3
+ {% assign font = site.font | default:"Noto Sans, Helvetica, Arial, sans-serif" %}
4
+
5
+ {% include head/meta.html %}
6
+ {% include head/links.html %}
7
+ {% include head/scripts.html %}
8
+ {% include head/styles.html %}
9
+ {% include my-head.html %}
@@ -0,0 +1,33 @@
1
+ {% if plugins contains 'jekyll-feed' %}{% include head/feed-tag.html %}{% endif %}
2
+
3
+ {% assign lang = page.lang | default:site.lang | default:'en' %}
4
+ <link rel="alternate" href="{{ page.url | absolute_url }}" hreflang="{{ lang | downcase | replace:'_','-' }}">
5
+
6
+ <link rel="shortcut icon" href="{{ '/assets/icons/favicon.ico' | relative_url }}">
7
+ <link rel="apple-touch-icon" href="{{ '/assets/icons/icon.png' | relative_url }}">
8
+
9
+ <link rel="manifest" href="{{ '/assets/manifest.json' | relative_url }}">
10
+
11
+ {% unless site.hydejack.no_google_fonts or site.no_google_fonts %}
12
+ <link rel="dns-prefetch" href="https://fonts.googleapis.com">
13
+ <link rel="dns-prefetch" href="https://fonts.gstatic.com">
14
+ {% endunless %}
15
+ {% if site.google_analytics %}
16
+ <link rel="dns-prefetch" href="https://www.google-analytics.com">
17
+ {% endif %}
18
+
19
+ {% comment %}<!--
20
+ This is to avoid hard-coding URLs in JS (where they can't be discovered by automated tools).
21
+ -->{% endcomment %}
22
+ <link rel="dns-prefetch" href="{{ '/' | relative_url }}" id="_baseURL">
23
+ <link rel="dns-prefetch" href="{{ '/sw.js' | relative_url }}" id="_hrefSW">
24
+ <link rel="dns-prefetch" href="{{ '/assets/bower_components/katex/dist/katex.min.js' | relative_url }}" id="_hrefKatexJS">
25
+ <link rel="dns-prefetch" href="{{ '/assets/bower_components/katex/dist/katex.min.css' | relative_url }}" id="_hrefKatexCSS">
26
+ <link rel="dns-prefetch" href="{{ '/assets/bower_components/katex/dist/contrib/copy-tex.min.js' | relative_url }}" id="_hrefKatexCopyJS">
27
+ <link rel="dns-prefetch" href="{{ '/assets/bower_components/katex/dist/contrib/copy-tex.min.css' | relative_url }}" id="_hrefKatexCopyCSS">
28
+ <link rel="dns-prefetch" href="{{ '/assets/img/swipe.svg' | relative_url }}" id="_hrefSwipeSVG">
29
+
30
+ {% assign disqus = site.disqus | default:site.disqus_shortname %}
31
+ {% if disqus %}
32
+ <link rel="dns-prefetch" href="https://{{ disqus }}.disqus.com" id="_hrefDisqus">
33
+ {% endif %}
@@ -0,0 +1,34 @@
1
+ <meta charset="utf-8">
2
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
3
+ <meta http-equiv="x-ua-compatible" content="ie=edge">
4
+
5
+ {% if page.noindex %}
6
+ <meta name="robots" content="noindex">
7
+ {% endif %}
8
+
9
+ {% unless page.redirect %}
10
+ {% if plugins contains 'jekyll-seo-tag' %}{% include head/seo-tag.html %}
11
+ {% else %}{% include head/seo-fallback.html %}{% endif %}
12
+
13
+ {% if site.keywords.size > 0 or page.keywords.size > 0 %}
14
+ <meta name="keywords" content="{{ page.keywords | default:site.keywords | join:',' }}">
15
+ {% endif %}
16
+ {% else %}
17
+ <meta http-equiv="refresh" content="0; url={{ page.redirect.to }}">
18
+ <title>{{ site.data.strings.redirecting | default:"Redirecting..." }}</title>
19
+ {% endunless %}
20
+
21
+ <meta name="mobile-web-app-capable" content="yes">
22
+
23
+ <meta name="apple-mobile-web-app-capable" content="yes">
24
+ <meta name="apple-mobile-web-app-title" content="{{ site.title }}">
25
+ <meta name="apple-mobile-web-app-status-bar-style" content="black">
26
+
27
+ <meta name="application-name" content="{{ site.title }}">
28
+ <meta name="msapplication-config" content="{{ '/assets/ieconfig.xml' | relative_url }}">
29
+
30
+ {% unless site.hydejack.no_theme_color %}
31
+ <meta name="theme-color" content="{{ theme_color | default:'#193747' }}">
32
+ {% endunless %}
33
+
34
+ <meta name="generator" content="Hydejack v8.5.2" />
@@ -0,0 +1,6 @@
1
+ <style id="_pageStyle">
2
+ {% capture page_style %}
3
+ {% include styles/page-style.scss color=color theme_color=theme_color %}
4
+ {% endcapture %}
5
+ {{ page_style | scssify }}
6
+ </style>
@@ -0,0 +1,9 @@
1
+ <script>
2
+ {% include scripts/load-js.min.js %};
3
+ {% include scripts/loadCSS.min.js %};
4
+ {% include scripts/cssrelpreload.min.js %};
5
+ !function(w, d) {
6
+ w._noPushState = {{ site.hydejack.no_push_state | default:site.disable_push_state | default:false }};
7
+ w._noDrawer = {{ site.hydejack.no_drawer | default:site.disable_drawer | default:false }};
8
+ }(window, document);
9
+ </script>
@@ -0,0 +1,13 @@
1
+ {% assign strings = site.data.strings %}
2
+ {% capture title %}
3
+ {% if page.url == "/" %}
4
+ {{ site.title }}{% if site.tagline %} {{ strings.separator | default:"|" }} {{ site.tagline }}{% endif %}
5
+ {% elsif page.title.size > 0 %}
6
+ {{ page.title }} {{ strings.separator | default:"|" }} {{ site.title }}
7
+ {% else %}
8
+ {{ site.title }}
9
+ {% endif %}
10
+ {% endcapture %}
11
+ <title>{{ title | strip }}</title>
12
+ <meta name="description" content="{{ page.description | default:page.excerpt | default:site.description | markdownify | strip_html }}">
13
+ <link rel="canonical" href="{{ page.url | absolute_url }}">
@@ -0,0 +1,4 @@
1
+ {% comment %}<!--
2
+ Including `seo` in a partial prevents a parse error when `jekyll-seo-tag` is not included
3
+ -->{% endcomment %}
4
+ {% seo %}
@@ -0,0 +1,41 @@
1
+ <!--[if gt IE 8]><!---->
2
+ {% capture style_url %}{% link assets/css/hydejack-8.5.2.css %}{% endcapture %}
3
+ {% capture icons_url %}{% link assets/icomoon/style.css %}{% endcapture %}
4
+ {% capture fonts_url %}https://fonts.googleapis.com/css?family={{ google_fonts }}&display=swap{% endcapture %}
5
+
6
+ {% assign font_heading = site.font_heading | default:"Roboto Slab, Helvetica, Arial, sans-serif" %}
7
+ {% assign font = site.font | default:"Noto Sans, Helvetica, Arial, sans-serif" %}
8
+
9
+ {% assign layout = page.layout %}
10
+ {% assign no_google_fonts = site.hydejack.no_google_fonts or site.no_google_fonts %}
11
+
12
+ {% if site.hydejack.no_inline_css or jekyll.environment == 'development' %}
13
+ <link rel="stylesheet" href="{{ style_url | relative_url }}">
14
+ <link rel="stylesheet" href="{{ icons_url | relative_url }}">
15
+ {% unless no_google_fonts %}
16
+ <link rel="stylesheet" href="{{ fonts_url }}">
17
+ {% endunless %}
18
+ {% else %}
19
+ <style>
20
+ {% capture to_scssify %}{% include styles/inline.scss %}{% endcapture %}{{ to_scssify | scssify }}
21
+ </style>
22
+
23
+ <link rel="preload" as="style" href="{{ style_url | relative_url }}" id="_stylePreload">
24
+ <link rel="preload" as="style" href="{{ icons_url | relative_url }}" id="_iconsPreload">
25
+ {% unless no_google_fonts %}
26
+ <link rel="preload" as="style" href="{{ fonts_url }}" id="_fontsPreload">
27
+ {% endunless %}
28
+
29
+ <script>setRel('_stylePreload');setRel('_iconsPreload');/*{% unless no_google_fonts %}*/setRel('_fontsPreload');/*{% endunless %}*/</script>
30
+ <noscript>
31
+ <link rel="stylesheet" href="{{ style_url | relative_url }}">
32
+ <link rel="stylesheet" href="{{ icons_url | relative_url }}">
33
+ {% unless no_google_fonts %}
34
+ <link rel="stylesheet" href="{{ fonts_url }}">
35
+ {% endunless %}
36
+ </noscript>
37
+ {% endif %}
38
+ {% unless site.hydejack.no_page_style %}
39
+ {% include head/page-style.html %}
40
+ {% endunless %}
41
+ <!--<![endif]-->
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * __ __ __ __
3
+ * /\ \/\ \ /\ \ __ /\ \
4
+ * \ \ \_\ \ __ __ \_\ \ __ /\_\ __ ___ \ \ \/'\
5
+ * \ \ _ \ /\ \/\ \ /'_` \ /'__`\ \/\ \ /'__`\ /'___\\ \ , <
6
+ * \ \ \ \ \\ \ \_\ \ /\ \L\ \ /\ __/ \ \ \ /\ \L\.\_ /\ \__/ \ \ \\`\
7
+ * \ \_\ \_\\/`____ \\ \___,_\\ \____\ _\ \ \\ \__/.\_\\ \____\ \ \_\ \_\
8
+ * \/_/\/_/ `/___/> \\/__,_ / \/____//\ \_\ \\/__/\/_/ \/____/ \/_/\/_/
9
+ * /\___/ \ \____/
10
+ * \/__/ \/___/
11
+ *
12
+ * Powered by Hydejack v8.5.2 <https://hydejack.com/>
13
+ */