jekyll-theme-hydejack 8.5.2 → 9.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (293) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1208 -0
  3. data/LICENSE.md +9 -3
  4. data/NOTICE.md +290 -0
  5. data/README.md +126 -85
  6. data/_config.yml +73 -0
  7. data/_includes/base-classes +9 -0
  8. data/_includes/body/analytics.html +1 -1
  9. data/_includes/body/comments.html +1 -1
  10. data/_includes/body/footer.html +3 -3
  11. data/_includes/body/index.html +17 -16
  12. data/_includes/body/main.html +3 -13
  13. data/_includes/body/menu.html +3 -14
  14. data/_includes/body/nav.html +4 -4
  15. data/_includes/body/scripts.html +2 -4
  16. data/_includes/body/sidebar-bg.html +13 -0
  17. data/_includes/body/sidebar-sticky.html +25 -0
  18. data/_includes/body/sidebar.html +7 -40
  19. data/_includes/components/about.html +1 -1
  20. data/_includes/components/author.html +3 -3
  21. data/_includes/components/hy-img.html +15 -26
  22. data/_includes/components/link.html +1 -1
  23. data/_includes/components/message.html +1 -1
  24. data/_includes/components/post-list-item.html +3 -3
  25. data/_includes/components/post.html +14 -11
  26. data/_includes/components/related-posts.html +14 -4
  27. data/_includes/components/tag-list.html +5 -1
  28. data/_includes/head/css/inline +1 -0
  29. data/_includes/head/index.html +14 -8
  30. data/_includes/head/links-static.html +27 -0
  31. data/_includes/head/links.html +1 -32
  32. data/_includes/head/meta-static.html +18 -0
  33. data/_includes/head/meta.html +8 -24
  34. data/_includes/head/page-style.html +1 -3
  35. data/_includes/head/scripts.html +12 -7
  36. data/_includes/head/styles-inline.html +19 -0
  37. data/_includes/head/styles-layout.html +4 -0
  38. data/_includes/head/styles-no-inline.html +8 -0
  39. data/_includes/head/styles.html +5 -34
  40. data/_includes/header.txt +1 -1
  41. data/_includes/if-non-null +7 -0
  42. data/_includes/my-body.html +1 -1
  43. data/_includes/my-scripts.html +1 -1
  44. data/_includes/smart-url +1 -0
  45. data/_includes/smart-url.txt +1 -1
  46. data/_includes/styles/common.scss +18 -0
  47. data/_includes/styles/inline.scss +16 -28
  48. data/_includes/styles/page-style.scss +5 -60
  49. data/_includes/styles/style.scss +25 -36
  50. data/_includes/styles/variables.scss +62 -0
  51. data/_includes/templates/animation.html +1 -1
  52. data/_includes/templates/back.html +2 -2
  53. data/_includes/templates/error.html +1 -1
  54. data/_includes/templates/forward.html +2 -2
  55. data/_includes/templates/index.html +10 -11
  56. data/_includes/templates/loading.html +1 -1
  57. data/_includes/templates/permalink.html +2 -2
  58. data/_layouts/about.html +1 -1
  59. data/_layouts/base.html +6 -1
  60. data/_layouts/blog.html +9 -7
  61. data/_layouts/compress.html +1 -1
  62. data/_layouts/default.html +4 -4
  63. data/_layouts/list.html +11 -17
  64. data/_layouts/page.html +1 -0
  65. data/_layouts/post.html +5 -3
  66. data/_sass/_mixins.scss +6 -20
  67. data/_sass/_syntax.scss +142 -130
  68. data/_sass/_variables.scss +1 -42
  69. data/_sass/html.scss +42 -0
  70. data/_sass/hydejack/__inline__/_avatar.scss +10 -10
  71. data/_sass/hydejack/__inline__/_base.scss +7 -21
  72. data/_sass/hydejack/__inline__/_content.scss +9 -2
  73. data/_sass/hydejack/__inline__/_images.scss +1 -3
  74. data/_sass/hydejack/__inline__/_links.scss +28 -13
  75. data/_sass/hydejack/__inline__/_menu.scss +42 -13
  76. data/_sass/hydejack/__inline__/_sidebar.scss +40 -14
  77. data/_sass/hydejack/__inline__/_social.scss +3 -0
  78. data/_sass/hydejack/__inline__/_toc.scss +55 -0
  79. data/_sass/hydejack/__inline__/_utilities.scss +3 -0
  80. data/_sass/hydejack/__link__/_avatar.scss +0 -4
  81. data/_sass/hydejack/__link__/_base.scss +1 -2
  82. data/_sass/hydejack/__link__/_break-layout.scss +17 -8
  83. data/_sass/hydejack/__link__/_content.scss +1 -0
  84. data/_sass/hydejack/__link__/_footer.scss +6 -8
  85. data/_sass/hydejack/__link__/_images.scss +5 -40
  86. data/_sass/hydejack/__link__/_katex.scss +1 -26
  87. data/_sass/hydejack/__link__/_links.scss +29 -20
  88. data/_sass/hydejack/__link__/_mark-external.scss +2 -7
  89. data/_sass/hydejack/__link__/_menu.scss +63 -8
  90. data/_sass/hydejack/__link__/_sidebar.scss +12 -9
  91. data/_sass/hydejack/__link__/_toc.scss +53 -0
  92. data/_sass/hydejack/__link__/_utilities.scss +3 -0
  93. data/_sass/hydejack/_avatar.pre.scss +10 -12
  94. data/_sass/hydejack/_base.pre.scss +7 -23
  95. data/_sass/hydejack/_break-layout.pre.scss +19 -10
  96. data/_sass/hydejack/_content.pre.scss +10 -2
  97. data/_sass/hydejack/_footer.pre.scss +6 -8
  98. data/_sass/hydejack/_images.pre.scss +6 -42
  99. data/_sass/hydejack/_katex.pre.scss +3 -28
  100. data/_sass/hydejack/_links.pre.scss +49 -19
  101. data/_sass/hydejack/_mark-external.pre.scss +2 -7
  102. data/_sass/hydejack/_menu.pre.scss +91 -22
  103. data/_sass/hydejack/_sidebar.pre.scss +48 -22
  104. data/_sass/hydejack/_social.pre.scss +3 -0
  105. data/_sass/hydejack/_toc.pre.scss +65 -0
  106. data/_sass/hydejack/_utilities.pre.scss +3 -0
  107. data/_sass/my-inline.scss +2 -16
  108. data/_sass/my-style.scss +0 -9
  109. data/_sass/pooleparty/__inline__/_base.scss +10 -9
  110. data/_sass/pooleparty/__inline__/_message.scss +31 -0
  111. data/_sass/pooleparty/__inline__/_posts.scss +19 -2
  112. data/_sass/pooleparty/__inline__/_table.scss +0 -28
  113. data/_sass/pooleparty/__inline__/_type.scss +81 -15
  114. data/_sass/pooleparty/__link__/_base.scss +11 -5
  115. data/_sass/pooleparty/__link__/_code.scss +40 -7
  116. data/_sass/pooleparty/__link__/_footnotes.scss +4 -5
  117. data/_sass/pooleparty/__link__/_pagination.scss +3 -2
  118. data/_sass/pooleparty/__link__/_posts.scss +11 -6
  119. data/_sass/pooleparty/__link__/_read-more.scss +1 -1
  120. data/_sass/pooleparty/__link__/_table.scss +27 -16
  121. data/_sass/pooleparty/__link__/_type.scss +56 -19
  122. data/_sass/pooleparty/_base.pre.scss +25 -18
  123. data/_sass/pooleparty/_code.pre.scss +40 -7
  124. data/_sass/pooleparty/_footnotes.pre.scss +4 -5
  125. data/_sass/pooleparty/_message.pre.scss +33 -2
  126. data/_sass/pooleparty/_pagination.pre.scss +5 -4
  127. data/_sass/pooleparty/_posts.pre.scss +34 -12
  128. data/_sass/pooleparty/_read-more.pre.scss +1 -1
  129. data/_sass/pooleparty/_table.pre.scss +13 -20
  130. data/_sass/pooleparty/_type.pre.scss +100 -35
  131. data/assets/bower_components/MathJax/.bower.json +28 -0
  132. data/assets/bower_components/MathJax/LICENSE +202 -0
  133. data/assets/bower_components/MathJax/bower.json +11 -0
  134. data/assets/bower_components/MathJax/composer.json +14 -0
  135. data/assets/bower_components/MathJax/es5/a11y/assistive-mml.js +1 -0
  136. data/assets/bower_components/MathJax/es5/a11y/complexity.js +1 -0
  137. data/assets/bower_components/MathJax/es5/a11y/explorer.js +1 -0
  138. data/assets/bower_components/MathJax/es5/a11y/semantic-enrich.js +1 -0
  139. data/assets/bower_components/MathJax/es5/adaptors/liteDOM.js +1 -0
  140. data/assets/bower_components/MathJax/es5/core.js +1 -0
  141. data/assets/bower_components/MathJax/es5/input/asciimath.js +1 -0
  142. data/assets/bower_components/MathJax/es5/input/mml.js +1 -0
  143. data/assets/bower_components/MathJax/es5/input/mml/entities.js +1 -0
  144. data/assets/bower_components/MathJax/es5/input/tex-base.js +1 -0
  145. data/assets/bower_components/MathJax/es5/input/tex-full.js +1 -0
  146. data/assets/bower_components/MathJax/es5/input/tex.js +1 -0
  147. data/assets/bower_components/MathJax/es5/input/tex/extensions/action.js +1 -0
  148. data/assets/bower_components/MathJax/es5/input/tex/extensions/all-packages.js +1 -0
  149. data/assets/bower_components/MathJax/es5/input/tex/extensions/ams.js +1 -0
  150. data/assets/bower_components/MathJax/es5/input/tex/extensions/amscd.js +1 -0
  151. data/assets/bower_components/MathJax/es5/input/tex/extensions/autoload.js +1 -0
  152. data/assets/bower_components/MathJax/es5/input/tex/extensions/bbox.js +1 -0
  153. data/assets/bower_components/MathJax/es5/input/tex/extensions/boldsymbol.js +1 -0
  154. data/assets/bower_components/MathJax/es5/input/tex/extensions/braket.js +1 -0
  155. data/assets/bower_components/MathJax/es5/input/tex/extensions/bussproofs.js +1 -0
  156. data/assets/bower_components/MathJax/es5/input/tex/extensions/cancel.js +1 -0
  157. data/assets/bower_components/MathJax/es5/input/tex/extensions/color.js +1 -0
  158. data/assets/bower_components/MathJax/es5/input/tex/extensions/colorV2.js +1 -0
  159. data/assets/bower_components/MathJax/es5/input/tex/extensions/configMacros.js +1 -0
  160. data/assets/bower_components/MathJax/es5/input/tex/extensions/enclose.js +1 -0
  161. data/assets/bower_components/MathJax/es5/input/tex/extensions/extpfeil.js +1 -0
  162. data/assets/bower_components/MathJax/es5/input/tex/extensions/html.js +1 -0
  163. data/assets/bower_components/MathJax/es5/input/tex/extensions/mhchem.js +1 -0
  164. data/assets/bower_components/MathJax/es5/input/tex/extensions/newcommand.js +1 -0
  165. data/assets/bower_components/MathJax/es5/input/tex/extensions/noerrors.js +1 -0
  166. data/assets/bower_components/MathJax/es5/input/tex/extensions/noundefined.js +1 -0
  167. data/assets/bower_components/MathJax/es5/input/tex/extensions/physics.js +1 -0
  168. data/assets/bower_components/MathJax/es5/input/tex/extensions/require.js +1 -0
  169. data/assets/bower_components/MathJax/es5/input/tex/extensions/tagFormat.js +1 -0
  170. data/assets/bower_components/MathJax/es5/input/tex/extensions/unicode.js +1 -0
  171. data/assets/bower_components/MathJax/es5/input/tex/extensions/verb.js +1 -0
  172. data/assets/bower_components/MathJax/es5/latest.js +1 -0
  173. data/assets/bower_components/MathJax/es5/loader.js +1 -0
  174. data/assets/bower_components/MathJax/es5/mml-chtml.js +1 -0
  175. data/assets/bower_components/MathJax/es5/mml-svg.js +1 -0
  176. data/assets/bower_components/MathJax/es5/node-main.js +1 -0
  177. data/assets/bower_components/MathJax/es5/output/chtml.js +1 -0
  178. data/assets/bower_components/MathJax/es5/output/chtml/fonts/tex.js +1 -0
  179. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  180. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  181. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  182. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  183. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  184. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  185. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  186. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  187. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  188. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  189. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  190. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  191. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  192. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  193. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  194. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  195. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  196. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  197. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  198. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  199. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  200. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  201. data/assets/bower_components/MathJax/es5/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  202. data/assets/bower_components/MathJax/es5/output/svg.js +1 -0
  203. data/assets/bower_components/MathJax/es5/output/svg/fonts/tex.js +1 -0
  204. data/assets/bower_components/MathJax/es5/sre/mathmaps/en.js +104 -0
  205. data/assets/bower_components/MathJax/es5/sre/mathmaps/es.js +104 -0
  206. data/assets/bower_components/MathJax/es5/sre/mathmaps/fr.js +104 -0
  207. data/assets/bower_components/MathJax/es5/sre/mathmaps/mathmaps_ie.js +410 -0
  208. data/assets/bower_components/MathJax/es5/sre/mathmaps/nemeth.js +104 -0
  209. data/assets/bower_components/MathJax/es5/sre/sre_browser.js +1709 -0
  210. data/assets/bower_components/MathJax/es5/startup.js +1 -0
  211. data/assets/bower_components/MathJax/es5/tex-chtml-full.js +1 -0
  212. data/assets/bower_components/MathJax/es5/tex-chtml.js +1 -0
  213. data/assets/bower_components/MathJax/es5/tex-mml-chtml.js +1 -0
  214. data/assets/bower_components/MathJax/es5/tex-mml-svg.js +1 -0
  215. data/assets/bower_components/MathJax/es5/tex-svg-full.js +1 -0
  216. data/assets/bower_components/MathJax/es5/tex-svg.js +1 -0
  217. data/assets/bower_components/MathJax/es5/ui/menu.js +1 -0
  218. data/assets/bower_components/MathJax/package.json +59 -0
  219. data/assets/bower_components/katex/.bower.json +2 -3
  220. data/assets/css/{hydejack-7.5.2.css → hydejack-9.0.0.css} +0 -0
  221. data/assets/icomoon/fonts/icomoon.eot +0 -0
  222. data/assets/icomoon/fonts/icomoon.svg +8 -2
  223. data/assets/icomoon/fonts/icomoon.ttf +0 -0
  224. data/assets/icomoon/fonts/icomoon.woff +0 -0
  225. data/assets/icomoon/selection.json +1 -1
  226. data/assets/icomoon/style.css +31 -12
  227. data/assets/js/.gitkeep +0 -0
  228. data/assets/js/LEGACY-drawer-hydejack-9.0.0.js +14 -0
  229. data/assets/js/LEGACY-fetch-hydejack-9.0.0.js +14 -0
  230. data/assets/js/LEGACY-hydejack-9.0.0.js +28 -0
  231. data/assets/js/LEGACY-navbar-hydejack-9.0.0.js +14 -0
  232. data/assets/js/LEGACY-push-state-hydejack-9.0.0.js +14 -0
  233. data/assets/js/LEGACY-resize-observer-hydejack-9.0.0.js +14 -0
  234. data/assets/js/LEGACY-shadydom-hydejack-9.0.0.js +14 -0
  235. data/assets/js/LEGACY-vendors~drawer-hydejack-9.0.0.js +47 -0
  236. data/assets/js/LEGACY-vendors~drawer~push-state-hydejack-9.0.0.js +215 -0
  237. data/assets/js/LEGACY-vendors~fetch-hydejack-9.0.0.js +14 -0
  238. data/assets/js/LEGACY-vendors~intersection-observer-hydejack-9.0.0.js +14 -0
  239. data/assets/js/LEGACY-vendors~push-state-hydejack-9.0.0.js +33 -0
  240. data/assets/js/LEGACY-vendors~shadydom-hydejack-9.0.0.js +155 -0
  241. data/assets/js/LEGACY-vendors~webanimations-hydejack-9.0.0.js +14 -0
  242. data/assets/js/LEGACY-vendors~webcomponents-hydejack-9.0.0.js +34 -0
  243. data/assets/js/LEGACY-webcomponents-hydejack-9.0.0.js +14 -0
  244. data/assets/js/drawer-hydejack-9.0.0.js +14 -0
  245. data/assets/js/fetch-hydejack-9.0.0.js +14 -0
  246. data/assets/js/hydejack-9.0.0.js +28 -0
  247. data/assets/js/navbar-hydejack-9.0.0.js +14 -0
  248. data/assets/js/push-state-hydejack-9.0.0.js +14 -0
  249. data/assets/js/resize-observer-hydejack-9.0.0.js +14 -0
  250. data/assets/js/shadydom-hydejack-9.0.0.js +14 -0
  251. data/assets/js/vendors~drawer-hydejack-9.0.0.js +47 -0
  252. data/assets/js/vendors~drawer~push-state-hydejack-9.0.0.js +163 -0
  253. data/assets/js/vendors~intersection-observer-hydejack-9.0.0.js +14 -0
  254. data/assets/js/vendors~push-state-hydejack-9.0.0.js +33 -0
  255. data/assets/js/vendors~shadydom-hydejack-9.0.0.js +146 -0
  256. data/assets/js/vendors~webanimations-hydejack-9.0.0.js +14 -0
  257. data/assets/js/webcomponents-hydejack-9.0.0.js +14 -0
  258. data/assets/version.json +3 -2
  259. data/licenses/PRO.md +4 -0
  260. data/licenses/README.md +1 -1
  261. data/licenses/{W3C.md → W3C-20150513.md} +0 -0
  262. metadata +161 -40
  263. data/_includes/scripts.html +0 -33
  264. data/assets/Resume.pdf +0 -0
  265. data/assets/css/hydejack-8.5.2.css +0 -3
  266. data/assets/img/blog/COLOURlovers.com-Hydejack.png +0 -0
  267. data/assets/img/blog/blog-layout.jpg +0 -0
  268. data/assets/img/blog/caleb-george-old.jpg +0 -0
  269. data/assets/img/blog/caleb-george.jpg +0 -0
  270. data/assets/img/blog/cover-page.jpg +0 -0
  271. data/assets/img/blog/dark-mode-ii.jpg +0 -0
  272. data/assets/img/blog/dark-mode.jpg +0 -0
  273. data/assets/img/blog/example-content-ii.jpg +0 -0
  274. data/assets/img/blog/example-content-iii.jpg +0 -0
  275. data/assets/img/blog/hydejack-8.png +0 -0
  276. data/assets/img/blog/hydejack-8@0,25x.png +0 -0
  277. data/assets/img/blog/hydejack-8@0,5x.png +0 -0
  278. data/assets/img/blog/lazy-images.jpg +0 -0
  279. data/assets/img/blog/louis-hansel.jpg +0 -0
  280. data/assets/img/blog/resume.png +0 -0
  281. data/assets/img/blog/steve-harvey.jpg +0 -0
  282. data/assets/img/blog/w3m.png +0 -0
  283. data/assets/img/blog/wade-lambert.jpg +0 -0
  284. data/assets/img/docs/google-fonts.png +0 -0
  285. data/assets/img/projects/hy-drawer.svg +0 -12
  286. data/assets/img/projects/hy-img.svg +0 -17
  287. data/assets/img/projects/hy-push-state.svg +0 -13
  288. data/assets/js/hydejack-8.5.2.js +0 -161
  289. data/assets/js/hydejack-legacy-8.5.2.js +0 -190
  290. data/assets/video/blog-layout.mp4 +0 -0
  291. data/assets/video/cover-page.mp4 +0 -0
  292. data/assets/video/dark-mode.mp4 +0 -0
  293. data/assets/video/lazy-images.mp4 +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: b98df7a1599315d29976856b9e3326f6fd55bf8c
4
- data.tar.gz: e869b23d08fdfff1a48aec7d20abc70d753de187
2
+ SHA256:
3
+ metadata.gz: a314cd5b75d30fc1e4bbc19338070903550ce7d713dfb937492354a24fe43c83
4
+ data.tar.gz: 40b93120771bb04bd9e20c7364c8c9af435bd2d933a12daca89c916993a592fe
5
5
  SHA512:
6
- metadata.gz: a5e97dd3a3749f69246c1524c1cb7bf91dd01d7e6a46bfd45f822941c110d9ccf57a7d6b5f8eb4b152747da8990ca9f6c0c418c224a8066dc74f58ea4be87315
7
- data.tar.gz: e4b4c51ecd81421c80a1207613b1375c924b653728198bf78f269758d0e088dc9d3bc7af7937ded7817b9021daafd9f537486bc3b2dd4471b031300bc1a0706e
6
+ metadata.gz: ce0a3facce2b53043d8e3c1c42d8441022fc1f2791a722d6834b3955ac0a7be4a77898f29663f02b6ffd69c3bbe5d376e98725b28370efc65cd8262390b518d3
7
+ data.tar.gz: 91ad85915d356a3e71bdad7ea3d2bef1b5fda0f8fd44693f5963b0dbc0c8260e5f4aa7c2f807db6dd1961c7f940eb7b428b2d990e0104a729a733b057e253c0e
@@ -0,0 +1,1208 @@
1
+
2
+
3
+ # CHANGELOG
4
+
5
+
6
+
7
+
8
+
9
+ ## v9.0.0
10
+ ### Major
11
+ * Added Built-In Search Functionality
12
+
13
+ Hydejack now has its own built-in search solution, that integrates well with the existing page style and the new navbar.
14
+
15
+ The solution is entirely browser-based which means it even works while offline and doesn't depend on an 3rd party.
16
+ This works, because Hydejack is designed for personal sites that generally have less than 1000 pages.
17
+ In my testing, Jekyll build times have been a problem long before search query times.
18
+
19
+ The results of the search are surprisingly good, but have only been tested in English and (somewhat) German.
20
+ For better language support, I might build an integration with Algolia at some point, which has the best results,
21
+ but requires stable internet connection and an API key.
22
+ I'd be interested to hear about problems with search in other languages to determine if this is necessary.
23
+
24
+ * Added Table of Contents that is prettier, sticky, and dynamic.
25
+
26
+ Adding a table of contents is part of kramdown and can be done in all versions of Hydejack.
27
+ However, v9 adds a dynamic version that will stick to the 3rd column on large screens and highlight the current section.
28
+
29
+ Note that this will reduce the amount of space freed up by the `no_break_layout: false` setting (otherwise the ToC would overlap with code blocks, math blocks, etc).
30
+
31
+ * Added a scroll-linked navbar that disappears when scrolling down and re-appears when scrolling up.
32
+
33
+ * Math support has been revamped because the old solution stopped working with Jekyll 4. Hydejack now supports both KaTeX and MathJax.
34
+
35
+ The MathJax implementation is more similar to the old solution. It comes with a client-side runtime (MathJax in this case)
36
+ and works on GitHub Pages. It is the more heavy-weight of the two and doesn't work without JavaScript enabled.
37
+ Due to the size of the complete MathJax package, it only works partially with offline support enabled.
38
+
39
+ The KaTeX implementation has been changed to pre-render the KaTeX output during site building.
40
+ It _does not_ ship a client-side runtime, which is more lightweight and works _without_ JavaScript.
41
+ In my opinion, it is the more elegant solution, but it requires a JavaScript runtime on the machine that builds the site.
42
+ This means that this solution doesn't work on GitHub Pages.
43
+
44
+ You can switch between the two implementations by changing the `kramdown.math_engine` key to either `katex` or `mathjax` in your config file.
45
+ The KaTeX implementation also requires the `kramdown-math-katex` gem in your `Gemfile`.
46
+
47
+ * Drastically improved build times through the use of `jekyll-include-cache`.
48
+ Most of the previous tips on [improving page build speed](hydejack/_posts/2019-02-18-improving-site-build-speed.md) should now be obsolete.
49
+
50
+ * Added `grid` layout in PRO version that mirrors the `projects` layout, but for posts.
51
+ If you've set `image`s for your posts, it will give your blog a more modern look.
52
+
53
+ ### Minor
54
+ * CSS variables are now configurable via `_data/variables.yml`. While there are other ways to change them, this has the broadest reach across HTML (`img[sizes]` attribute!), CSS and JS.
55
+ * Many JS content features (such as `#` heading links) now work even when `hydejack.no_push_state` is enabled.
56
+ * Linking to posts in the `home` and `post` layout now accept either paths or URLs. [Read more](docs/basics.md#adding-related-posts-to-a-post).
57
+ * The star icons in the resume layout can now be disabled via `no_skill_icons` and `no_language_icons`.
58
+ * Resume layout now supports the following keys: `born`, `citizenship`, and `maritalStatus`.
59
+ * PRO only: Added `hide_dates` option to disable showing blog post dates.
60
+ * The `blog` layout now works without pagination, simply showing all posts on a single page when the `jekyll-pagination` plugin is not found.
61
+ * The `projects`, `resume`, and `grid` layout now make better use of large screens, by letting content expand to the right of the screen. Restore the previous , set `no_break_columns` in front matter.
62
+ * Removed smooth scroll polyfill for Safari/Webkit as it has caused problems with sticky content.
63
+ * Figure captions can now be added to code blocks, math blocks, and tables in addition to just images using the `.figcaption` CSS class.
64
+ * The order of the comment section relative to the about and related posts sections can now be customized via the `hydejack.post_addons` and `hydejack.project_addons` keys. See the example `_config.yml` for more.
65
+ * Clicking the image in the `blog` layout will now navigate to the blog post. In the PRO version it will do so with the classic "move image in place" animation.
66
+ * Grouping projects by year can now be disabled. Use `no_groups: true` in the front matter. This also applies to the new `grid` layout and the old `list` layout.
67
+ * hy-img has been removed and replaced with browser's native `loading=lazy` attribute
68
+ * Now serving separate JavaScript files for old and new browsers, allowing it to take advantage of many new language features.
69
+ * JavaScript files are now chunked, so that only what is needed is loaded on demand.
70
+ * hy-drawer and hy-push-state have been rewritten in TypeScript and LitHTML, fixing many bugs in the process.
71
+ * Updated to Jekyll 4.1
72
+ * Hydejack now has a dedicated offline page that will be shown when the client is offline and tries to open a page that hasn't been cached.
73
+ The content of the page can be customized by creating `offline.md` file in the root with `layout: offline`, similar to `404.md`.
74
+ * The code font can now be customized in the config file via the `font_code` key.
75
+
76
+ ### Design
77
+ * Many layouts (`projects`, `resume`, `home`) will now use more space on large screens (disable via `hydejack.no_third_column`)
78
+ * Headings now appear "oversized" on larger screens and extend to the right end of the screen (disable via `hydejack.no_large_headings`)
79
+ * The base font size is now smaller across screen sizes (can be configured in `_sass/_variables.scss`)
80
+ * The content width is now larger across screen sizes (can be configured in `_sass/_variables.scss`)
81
+ * The link style has been changed to make picking accent colors easier for dark mode. It's also possible to link images now without worrying about underlines.
82
+ * The amount of whitespace has been reduced. Previously it had been increased but it felt too much.
83
+ * Added a [`note` class](docs/writing.md#adding-notes) that succeeds the `message` for adding auxillary content. The `message` class still exists.
84
+ * The navbar buttons made to look more like buttons
85
+ * Dark mode colors have been toned down a bit
86
+ * Improved dark mode text rendering on macOS
87
+ * The permalink style has been changed to use "#" instead of an icon.
88
+ * Definition list now have a double colon after the definition term.
89
+ * Changed the style of footnote links on small screens to make them easier to click.
90
+
91
+ ### Fixes
92
+ * Horizontal scrolling on a code block, math black, or table can no longer accidentally open the drawer.
93
+ * The client-side scripts are now more robust to missing HTML elements. This should ease theme customization.
94
+ * Setting `sitemap: false` will now also add a `noindex` meta tag to prevent accidental search engine indexation.
95
+ * Fixed back button not showing when opening in standalone mode for the first time.
96
+ * The menu icon is now hidden when the drawer is disabled.
97
+ * Using `no_drawer: true` is now working properly on cover pages when `no_push_state: false` is set.
98
+ * Reduced the amount of pixels cached by the `will-change` optimization and fixed the corresponding warning in Firefox.
99
+
100
+
101
+ ## v8.5.2
102
+ August 31 2019
103
+
104
+
105
+ * Fixed breaking builds due to name collision when upgrading to 8.5
106
+ This is caused when using both `_plugins/jekyll-replace-imgs` and the new `jekyll-replace-img` ruby gem.
107
+ I recommend deleting `_plugins/jekyll-replace-imgs` when using the `jekyll-replace-img` gem.
108
+ Note that this is an optional plugin.
109
+ * Fixed `nomodule` script loading for Safari 10.1
110
+ * Fixed [#176](https://github.com/hydecorp/hydejack/issues/176)
111
+
112
+ ## v8.5.1
113
+ Aug 1 2019
114
+
115
+
116
+ * Fixed minification bug
117
+
118
+ ## v8.5.0
119
+ Aug 1 2019
120
+
121
+
122
+ ### Changed
123
+ * [PRO] The theme now matches the operating system's dark mode.
124
+ * Scrolling down on a page with an open drawer will now close the drawer
125
+ * Reloading a cover page after the drawer has been closed will now open the page with the drawer closed
126
+ * Removed JavaScript-based web font swapping in favor of using `font-display: swap`
127
+ * Darkened font color in dark mode to reduce contrast
128
+ * Updated KaTeX to the latest version
129
+ * Increased the durations of various animations slightly
130
+ * Now using [`jekyll-replace-img`](https://github.com/qwtel/jekyll-replace-img) instead of custom code in `_plugins` folder
131
+ * Added a separate, smaller JavaScript bundle for modern browsers
132
+
133
+ ### Added
134
+ * Added support for figure captions on code blocks
135
+ * Added `keybase` to social media icons
136
+ * [PRO] There's now a forward button when using the theme as a PWA
137
+
138
+ ### Fixed
139
+ * Fixed print layout when dark mode is enabled
140
+ * Using `CSSTransformValue` correctly
141
+ * Fixed a minor style bug for dates
142
+ * Fixed a bug where light mode would flash when loading a page in dark mode
143
+ * Minimal support for IE11
144
+
145
+ ## v8.4.0
146
+ Mar 9 2019
147
+
148
+
149
+ * Added support for `noindex` property in the front matter
150
+ * Fixed ordering of selected projects/post in welcome layout
151
+ * Updated dependencies
152
+
153
+ ## v8.3.0
154
+ Feb 18 2019
155
+
156
+
157
+ This version adds new options to increase production build speed. Read [this post](hydejack/_posts/2019-02-18-improving-site-build-speed.md) for details.
158
+
159
+ ### Added
160
+ * Added `no_page_style` config option to increase site build speed.
161
+ * Added `menu` config option to increase site build speed.
162
+ * Copying math will now add the LaTeX source to the clipboard.
163
+
164
+ ### Changed
165
+ * Upgraded KaTeX to version 0.10.0.
166
+
167
+ ## v8.2.0
168
+ Feb 1 2019
169
+
170
+
171
+ * Added support for custom `related_posts`
172
+ * Removed footer from print layout
173
+ * Increased photo size in print resume
174
+ * Improved `welcome` layout generation performance
175
+ * Fixed a bug that prevented scrolling to headlines with non-ascii characters (Thanks [@ForelaxX](https://github.com/ForelaxX))
176
+
177
+
178
+ ## v8.1.1
179
+ Sep 1 2018
180
+
181
+
182
+ ### Fixes
183
+ * Fixed an issue that prevented the drawer from working on iOS 10.
184
+ * Changing the page via push state will now also update the `link[rel=canonical]` tag.
185
+ * Changing the page via push state will now also update the `meta[name=description]` tag.
186
+ * Fixed an issue that prevented the JS from building on Netlify.
187
+
188
+ ## v8.1.0
189
+ Aug 18 2018
190
+
191
+
192
+ This release adds Dark Mode for Hydejack PRO customers.
193
+
194
+ ### Breaking
195
+ * Removed cookie banner from free version
196
+ * Removed offline support from free version
197
+
198
+ In an attempt to make the PRO offering more appealing, I'm removing features that arguably should have never been included in the free version.
199
+ As software licenses go, nobody is stopping you from using the old code, but updates will no longer be included.
200
+
201
+ ### Changed
202
+ * The cookies banners is now showing at the bottom of the page and its background color is no longer transparent to increase visibility
203
+ * Changed the default syntax theme from "GitHub" to "Atom One Light"
204
+ * Adapted `figure` CSS class to accommodate different children, not just `img`s
205
+ * `video` tags now have a `max-width` of 100%
206
+ * Increased margin before headings to `5rem`, up from 4
207
+ * Increased margin of `hr` elements.
208
+ * Cookies banner can now be enabled without using Google Analytics
209
+ * Clicking the cookie banner "Okay" button will now fire a `hy--cookies-ok` event on `document`, so that custom analytics solutions can plug in.
210
+ * All Google Analytics code has been removed from Hydejack's core and moved to `_includes/body/analytics.js`.
211
+ * All Disqus code has been removed from Hydejack's core and moved to `_includes/comments.html` and `_includes/my-comments.html`.
212
+ * Using CSS Custom Properties instead of SASS variables for certain properties to enable style customization using only CSS.
213
+ * Added shadow to sidebar
214
+ * Navbar is longer positioned `fixed`
215
+
216
+ ### Added
217
+ * [PRO] Added Dark Mode
218
+ * `border` CSS class
219
+
220
+
221
+ ## v8.0.0
222
+ Jul 16 2018
223
+
224
+
225
+ So far Hydejack has been a decent Jekyll theme, but with v8 it really starts stand out among the competition: Beautiful and unique landing pages, lazy-loading images, and experimental offline support are just the most prominent new features.
226
+
227
+ ### Breaking
228
+ * The expected format for sidebar images has changed.
229
+ A sidebar image should now be a full-screen ~16:10 image.
230
+
231
+ Comment: The sidebar can now be fully extended on desktop, which generally requires a large landscape image to fill the entire window.
232
+ To save bandwidth, you can blur the image on the left and right edges and save it as JPG.
233
+
234
+ * The `about` and `welcome` layout no longer prepend the content with the author information.
235
+ Instead, the author info can be shown by adding the `<!--author-->` marker to the top of the file. You can also place it anywhere else.
236
+
237
+ Comment: Showing the author description on the top of the `welcome` and `about` layouts felt like an imposition and was a left-over from when I was developing Hydejack primarily for myself.
238
+
239
+ * [PRO] The `welcome` layout no longer adds recent posts and projects to the bottom of the page. Instead, they have to be explicitly set using the `<!--posts-->` and `<!--projects-->` markers. The `content_separator` front matter opton is now ignored.
240
+
241
+ Comment: The old behavior felt arbitrary, and `<!--more-->` wasn't a good name to be replaced with recent projects ands posts.
242
+
243
+ * Setting the accent color and sidebar image for an entire category/tag/author is no longer possible.
244
+ To achieve a similar effect, use [Front Matter defaults][ffd] instead.
245
+
246
+ E.g. to set the accent color and image for every post in the `hydejack` folder, use:
247
+
248
+ ~~~yml
249
+ defaults:
250
+ - scope:
251
+ path: hydejack
252
+ values:
253
+ accent_color: rgb(38,139,210)
254
+ accent_image: /assets/img/hydejack-bg.jpg
255
+ ~~~
256
+
257
+ Comment: The code to find the color for a given page was complicated and slow (potentially iterating all categories/tags to find the right one).
258
+
259
+ ### Changed
260
+
261
+ * The drawer now responds to mouse inputs.
262
+ * The default heading font is now less bold. To restore the old behavior, edit (create if it's missing) `_sass/my-variables.scss` and add `$font-weight-heading: 700;`.
263
+ * Hydejack now uses lazy-loading hy-img tags instead of regular `img` tags.
264
+ To revert to using regular images, set `hydejack.no_img` in the config file to `true`.
265
+ * Cookie consent is now stored as a cookie (instead of `LocalStorage`) and expires after 1 year.
266
+ * Scrolling to a fragment link is now smooth.
267
+ * Font loading now works differently, and will be cancelled on slow connections.
268
+ * The sidebar content is now centered.
269
+ * The sidebar will now show the site's logo, which can be set in the config file under the `logo` key.
270
+ * [PRO] Updated embedded Bootstrap to v4.
271
+ * [PRO] Project cards now throw a shadow instead of having a border.
272
+
273
+ ### Added
274
+ * Pages can now have the `cover` key in the front matter.
275
+ When set to `true`, the sidebar will be opened when visiting the page directly.
276
+ E.g. <https://hydejack.com/>
277
+
278
+ * Added a `_plugin` that automatically replaces `<img>` tags with lazy-loading `<hy-img>` tags. If you don't want images to load lazily, delete or rename the `_plugins` folder.
279
+ Note that this plugin will never run when building the site on GitHub Pages.
280
+
281
+ To get the most out of this plugin, it is recommended to provide the width and height of the image, e.g.
282
+
283
+ ~~~md
284
+ ![Some image](assets/img/some-img.png)
285
+ ~~~
286
+
287
+ This will cause hy-img to render a placeholder of 800 by 600 `px`, preventing the document height from changing after the image has finished loading.
288
+
289
+ * Added experimental offline support via Service Workers. Use with care!
290
+ For details, [read the docs](docs/advanced.md#enabling-offline-support).
291
+
292
+ * Added the `figure` CSS class, which allows images to have nicer-looking captions. E.g.
293
+
294
+ ~~~md
295
+ ![An image with a caption](https://placehold.it/800x50)
296
+ A caption to an image.
297
+
298
+ ~~~
299
+
300
+ * Clicking on a footnote will give its corresponding text a subtle highlight.
301
+
302
+ * [PRO] Projects can now have an optional `end_date` field in the front matter.
303
+ The `date` is treated as the start date in this case.
304
+
305
+ ### Fixes
306
+ * The back button now works in combination with fragment links.
307
+
308
+ [ffd]: https://jekyllrb.com/docs/configuration/#front-matter-defaults
309
+
310
+ ## v7.5.1
311
+ Apr 2 2018
312
+
313
+
314
+ ### Changed
315
+ * Moved from browserify to webpack
316
+ * Updated ruby dependencies
317
+ * Updated JS dependencies
318
+ * Updated hy-push-state and hy-drawer to latest versions
319
+
320
+ ## v7.5.0
321
+ Dec 18 2017
322
+
323
+
324
+ ### Added
325
+ * Added secondary `legal` nav in footer:
326
+
327
+ ```yml
328
+ # file: `_config.yml`
329
+ legal:
330
+ - title: Cookies Policy
331
+ href: /cookies-policy/
332
+ - title: Foobar
333
+ href: https://foobar.com/
334
+ ```
335
+
336
+ * The "heading permalink" can now be configured via `strings.yml`:
337
+
338
+ ```yml
339
+ # file: `_data/strings.yml`
340
+ permalink: Permalink
341
+ permalink_icon: icon-link
342
+ ```
343
+
344
+ * Sections on resume layout can now be rearranged, e.g.:
345
+
346
+ ```yml
347
+ # file: `resume.md`
348
+ left_column:
349
+ - work
350
+ - volunteer
351
+ - education
352
+ - awards
353
+ - publications
354
+ - references
355
+ right_column:
356
+ - languages
357
+ - skills
358
+ - interests
359
+ ```
360
+
361
+
362
+ ### Fixed
363
+ * Fixed a bug that caused `<sup>` tags to render as regular text ([#52](https://github.com/hydecorp/hydejack/pull/52))
364
+ * Fixed a bug that caused Disqus to load the same thread on all pages ([#53](https://github.com/hydecorp/hydejack/pull/52))
365
+ * Fixed a bug that prevented Disqus comments to be loaded on sites that didn't cause scroll events
366
+ * Fixed a bug that caused Disqus to be loaded over HTTP instead of HTTPS.
367
+ * Fixed a bug that caused an extra space in URLs ([#55](https://github.com/hydecorp/hydejack/pull/55)).
368
+ * Comments no longer show up in the print version of the page.
369
+
370
+ ### Other
371
+ * Set base font to `11pt` in print layout.
372
+ * Set resume print layout to use 2 columns (A4 sheet)
373
+
374
+ ## v7.4.2
375
+ Dec 1 2017
376
+
377
+
378
+ ### Fixed
379
+ * Dramatically improved resume print layout.
380
+ It is now much less likely that there will be page breaks within logical units.
381
+ * Fixed a bug that cause the page to break when setting `no_drawer`.
382
+ * Fixed a bug that cased the "Random Posts" heading to appear, even when there are no posts to show
383
+
384
+ ## v7.4.1
385
+ Nov 27 2017
386
+
387
+
388
+ ### Fixed
389
+ * Fixed storing user-related data before accepting cookies.
390
+ * Fixed tab order of cookie banner, so keyboard users can access it more easily.
391
+ * Accepting cookies no longer causes a page reload in some browsers.
392
+ * Fixed appearance of the okay button in the free version.
393
+ * Menu icon now useable while the cookies banner is active.
394
+ * Loading icon is now visible while the cookies banner is active.
395
+ * Removed cookies banner from print layout.
396
+ * Removed inline styles from cookie banner.
397
+
398
+ ## v7.4.0
399
+ Nov 25 2017
400
+
401
+
402
+ ### Added
403
+ * Allow markdown in copyright string
404
+ * Added `theme_color` front-matter property to micro-manage the value of the the `theme-color` meta tag.
405
+ When not set, will use `accent_color`.
406
+ * Added `theme_color` site setting, to set the value of `themeColor` in the app manifest.
407
+ When not set, will use `accent_color`.
408
+ * Added `cookies_banner` setting:
409
+
410
+ ~~~yml
411
+ # file: `_config.yml`
412
+ hydejack:
413
+ cookies_banner: true
414
+ ~~~
415
+
416
+ Enabling this setting will show a notice at the top of the page to new visitors.
417
+ You can change the wording of the notice in `_data/strings.yml`
418
+ with the `cookies_banner.text` and `cookies_banner.okay` keys:
419
+
420
+ ~~~yml
421
+ # file: `_data/strings.yml`
422
+ cookies_banner:
423
+ text: This site uses cookies.
424
+ okay: Okay
425
+ ~~~
426
+
427
+ ### Fixed
428
+ * Drawer no longer resizes/repaints in iOS Safari (iPhone) and Chrome for Android when the address bar autohides.
429
+ * Fixed a bug that caused the drawer flicker/open unexpectedly when scrolling in mobile browsers.
430
+ * Fixed how `image` works when using the `jekyll-seo-tag` plugin.
431
+
432
+ ### Design
433
+ * Changed how line breaks work in resume layout
434
+ * Changed margins of horizontals lines
435
+
436
+ ### Other
437
+ * Updated docs
438
+ * Updated posts
439
+
440
+
441
+ ## v7.3.0
442
+ Nov 17 2017
443
+
444
+
445
+ ### Added
446
+ * Allow markdown content on `projects` layout.
447
+ * Renamed `big_project` option on projects to `featured` (`big_project` still works)
448
+
449
+ ### Fixed
450
+ * Fixed default font weights
451
+ * Fixed hard-coded `/projects/` URL in project layout
452
+ * Link to feed.xml is only generated when using the `jekyll-feed` plugin
453
+
454
+
455
+ ## v7.2.0
456
+ Nov 13 2017
457
+
458
+
459
+ ### Added
460
+ * Added `_sass/my-variables.scss` file, which you can use to selectively override SCSS variables.
461
+ * Font weights can now be configured via SCSS variables:
462
+ * `$font-weight` for normal font.
463
+ * `$font-weight-bold` for `strong` tags and similar.
464
+ * `$font-weight-heading` for headings.
465
+
466
+ ### Design
467
+ * Message boxes will no longer span the full width, even with the break layout feature enabled.
468
+ * Increased space between project card rows, so they look less like a brick wall.
469
+
470
+ ### Fixes
471
+ * Reduced the draw range of the drawer on iOS, so that a larger portion of the screen is available for zooming (a11y).
472
+ * Default images are now optimized, so they are no longer flagged by Google PageSpeed Insights and similar tools.
473
+ * Query parameters are no longer used for cache busting.
474
+ Instead, the version number is no part of the file name for the CSS and JS resources.
475
+
476
+
477
+ ## v7.1.1
478
+ Nov 3 2017
479
+
480
+
481
+ ### Fixes
482
+ * Fix IE11 feature detection
483
+
484
+ ## v7.1.0
485
+ Nov 2 2017
486
+
487
+
488
+ ### Changed
489
+ * Renamed `no_description` to `hide_description`.
490
+ Since this feature isn't yet documented outside of the change log, the old name *will not* continue to work.
491
+ * When providing images to `image`, `image.path`, `image.src`, `image.srcset` and `accent_image `,
492
+ it is no longer necessary to prepend the url with the `baseurl` of the site,
493
+ e.g. values like `accent_image: /assets/img/sidebar-bg.jpg` are now valid.
494
+ * Limited scope of `a` and `img` styles to content areas.
495
+ * Upgraded KaTeX to v0.8.3
496
+ * Upgraded `jekyll-relative-links` to v5.0.1
497
+
498
+ ### Fixes
499
+ * `font` and `font_heading` are now properly set when using the `no_inline_css` option [#47](https://github.com/hydecorp/hydejack/issues/47).
500
+ * Fixed default values for `image` and `logo` that were referring to non-existing images.
501
+ * Added missing JS dev dependencies.
502
+
503
+ ### Content
504
+ * Updated documentation
505
+ * Updated index, download, about and README pages.
506
+
507
+ ## v7.0.1
508
+ Oct 27 2017
509
+
510
+
511
+ ### Fixes
512
+ * Removed readme files from `assets` that would show up as pages when building on GitHub Pages [#42](https://github.com/hydecorp/hydejack/issues/42).
513
+ * Disabled push state on Firefox for iOS
514
+ * Changed some default settings in `_config.yml`
515
+
516
+ ### Content
517
+ * Updated documentation
518
+
519
+ ### Removed
520
+ * Removed outdated example script in `my-scripts.html`
521
+
522
+ ## v7.0.0
523
+ Oct 24 2017
524
+
525
+
526
+ ### License Change
527
+ The *free version* of Hydejack is now [GPL-3.0] licensed, which is a more restrictive license than MIT (but still *Open Source*).
528
+ This was necessary because the two major components that make up Hydejack,
529
+ [hy-push-state](https://hydecorp.github.io/hy-push-state/) and
530
+ [hy-drawer](https://hydecorp.github.io/hy-drawer/),
531
+ are now GPL licensed in turn.
532
+
533
+ How will this affect you?
534
+ * If you bought the *PRO version* you are not affected at all.
535
+ * You can continue to use previous versions of Hydejack according to their license (MIT).
536
+ * If you upgrade, keep the source code in a public repository and make sure you include the new `LICENSE.md` file.
537
+ DO NOT publish the *new code* with an *old license*.
538
+ * If you upgrade and make changes to the source code, you are required to make those changes available to the public
539
+ under a GPL-3.0 compatible license.
540
+
541
+ The full license text is available [here][GPL-3.0].
542
+ You can read a summary on [tl;drLegel](https://tldrlegal.com/license/gnu-general-public-license-v3-(gpl-3)).
543
+
544
+ If this change is not acceptable to you, DO NOT upgrade or consider [buying][buy] a [PRO license][PRO-license].
545
+
546
+ Note that the above does not constitute legal advice.
547
+
548
+ ### Breaking
549
+ This is a major release, but almost all options and APIs that were described in the docs continue to work.
550
+ Some names have changed and are no longer mentioned in the docs, but they are still part of the code and continue to work.
551
+
552
+ That being said, you should be aware of these (small) breaking changes:
553
+
554
+ * The favicon is now located in `assets/icons`. To change the favicon of the page, edit `favicon.ico` (png) in the folder.
555
+
556
+ * Changed the way tables work, so that they do the right thing more often.
557
+ Tables are now scrollable by default, but small tables are no longer stretched to span the full width.
558
+ Setting `scroll-table` on a larger table is sill recommended, as it will set `white-space: nowrap`.
559
+
560
+ * Autogenerated ids for posts now look like `post-2017-01-01-my-title` instead of `post-2017/01/01/my-title`.
561
+
562
+ * Event names described in the scripting chapter have changed from `y-push-state-*` to `hy-push-state-*`,
563
+ except `y-push-state-animationend`, which has been removed. See the [docs][pstate] for more.
564
+
565
+ [pstate]: docs/scripts.md#registering-push-state-event-listeners
566
+
567
+ ### Changes
568
+ * `image` has been renamed to `accent_image`, but `image` continues to work unless you add the `jekyll-seo-tag` plugin.
569
+ This change was necessary because `jekyll-seo-tag` uses the `image` keyword to set the thumbnail image of a page.
570
+ While it *may* be desirable to use the same image for both the sidebar and the thumbnail,
571
+ the new preferred way to set sidebar images is by using the `accent_image` key.
572
+
573
+ * `color` has been renamed to `accent_color` to be consistent with the new `accent_image` key, but `color` continues to work.
574
+
575
+ * Various options that do not make sense outside the context of Hydejack (like `no_push_state` or `no_drawer`)
576
+ have been moved under a common `hydejack` key. However, the old options continue to work.
577
+
578
+ ```yml
579
+ hydejack:
580
+ no_push_state: false
581
+ no_drawer: false
582
+ ```
583
+
584
+ * All plugins (gems) are now optional.
585
+ The gem-based version of the theme no longer uses any plugins by default,
586
+ while the download version follow a "batteries-included" approach and enables some by default.
587
+
588
+ * Links to the `/assets/` folder are no longer intercepted by the push state features,
589
+ which means clickable images and download links should work fine now.
590
+
591
+ * Reader views in Firefox and Safari have an easier time recognizing the main content.
592
+
593
+ * [Internal] No more `<style>` tags in the `body`.
594
+
595
+ * [Internal] Content that is generated via JS (error pages, loading, etc...) is now cloned from `template` tags,
596
+ where it is easier to modify (but before you do, check out the new `_data/strings.yml` file).
597
+
598
+ * [Internal] Changed how CSS code is organized.
599
+ Previously there were two versions of each CSS file for each 'topic',
600
+ one containing core styles to be inlined into the page, the other containing those fetched asynchronously via link tag.
601
+ Now there is only one file per topic, with the parts to be inlined/linked marked with comments.
602
+ A script has been added to "split" the CSS into the inline/link parts.
603
+ Note that this does not affect your `my-*.scss` files.
604
+
605
+ * [Internal] Many CSS classnames have changes, specifically those that would conflict with Bootstrap class names.
606
+
607
+ * [Internal] Many files in `_includes` have been reorganized, specially `head.html` and `body.html` have been broken up into smaller parts.
608
+
609
+ * [Internal] The `y-drawer` component (MIT) has been replaced with the `hy-drawer` component (GPL-3.0).
610
+
611
+ * [Internal] The `y-push-state` component (MIT) has been replaced with the `hy-push-state` component (GPL-3.0).
612
+
613
+ ### Added
614
+ * The theme now has support for the [`jekyll-seo-tag`](https://github.com/jekyll/jekyll-seo-tag) plugin.
615
+ To use this gem, make sure you use the latest `Gemfile` and `Gemfile.lock` and run `bundle install`.
616
+ In your config file, add `jekyll-seo-tag` to `plugins` (formerly called `gems`).
617
+
618
+ * All texts that were previously hard-coded into the theme can now be configured via `_data/strings.yml`.
619
+ This makes it possible to change certain phases without having to change source files,
620
+ but it should also make it easier to use Hydejack with other languages.
621
+ Time and date formats can also be configured, using Ruby's
622
+ [format directives](http://ruby-doc.org/core-2.4.1/Time.html#method-i-strftime).
623
+
624
+ * The `lang` key now accepts values like `en-us` or `de_AT`.
625
+
626
+ * Made the site "mobile web app capable"
627
+ * Added `manifest.json` for "Add to Homescreen" support on Android
628
+ * Added `theme-color` meta tag that matches the `accent_color` and changes dynamically
629
+ * Added `apple-mobile-web-app-*` meta tags
630
+ * Added `ieconfig.xml` for "Pin to start menu" support in Windows 10.
631
+ * Old icons and new ones are now located in `assets/icons`.
632
+
633
+ * Hydejack now marks up content as *structured data*, to the extent possible.
634
+ The resume is provided as <https://schema.org/Person>
635
+ as well as [hCard](http://microformats.org/wiki/hcard),
636
+ while projects are provided as <https://schema.org/CreativeWork>.
637
+ You can use the [Structured Data Testing Tool](https://search.google.com/structured-data/testing-tool/) to see the results.
638
+
639
+ If you do not want to expose your data in machine-readable form, you can set the `no_structured_data` flag to `true` in your config file.
640
+
641
+ ```yml
642
+ hydejack:
643
+ no_structured_data: true
644
+ ```
645
+
646
+ Note that this only applies to the resume and project layout, not the data generated by by `jekyll-seo-tag`
647
+ (Facebook Open Graph and Twitter cards).
648
+
649
+ * [PRO] Added "big projects". You can make a project card span the entire content width (instead of half),
650
+ by setting `big_project` to `true` in the project's front matter.
651
+
652
+ * [PRO] The welcome layout now has a `content_separator` option,
653
+ which allows content to move below the "Selected/Latest Projects" and "Selected/Latest Posts" section.
654
+ Usage:
655
+
656
+ ~~~md
657
+ ---
658
+ layout: welcome
659
+ content_separator: <!--more-->
660
+ ---
661
+
662
+ Content above
663
+
664
+ <!--more-->
665
+
666
+ Content below
667
+ ~~~
668
+
669
+ * [PRO] The PRO version now has built-in support for [Tinyletter](https://www.tinyletter.com).
670
+ To show a newsletter subscription box below each post, set `tinyletter: <username>` in your config file.
671
+ If you want to use a different mailing provider, you can add your own form in `_includes/my-newsletter.html`.
672
+
673
+ * [PRO] The PRO version now includes styles for input elements, using the same CSS class names as Bootstrap.
674
+ Check out the [Bootstrap docs](https://getbootstrap.com/docs/4.0/components/forms/) to learn more.
675
+
676
+ * [PRO] Added links to random posts at the bottom of each post. This can be beneficial for search engine rankings and content discovery.
677
+ You can remove them with the new `post_addons` option (see below).
678
+
679
+ * [PRO] If a `endDate` is missing in your `resume.json`, it will render as "\<startDate\> -- *present*".
680
+ You can change the wording in the new `strings.yml` file.
681
+
682
+ * Added support for [`jekyll-avatar`](https://github.com/benbalter/jekyll-avatar).
683
+ If this plugin is enabled in your config file, it will show the avatar of your github account
684
+ (`author.social.github`, `author.github.username` `author.github`).
685
+
686
+ * Added support for [`jekyll-gist`](https://github.com/jekyll/jekyll-gist).
687
+
688
+ * You can now add links to external sites in the sidebar.
689
+ Create a file like `something.md` and add a `title`, `menu`, `order` (optional) and a `redirect_to` field to the front matter, e.g.:
690
+
691
+ ```yml
692
+ ---
693
+ title: External
694
+ menu: true
695
+ redirect_to: https://example.com/
696
+ ---
697
+ ```
698
+
699
+ You may combine this with the [`jekyll-redirect-from`](https://github.com/jekyll/jekyll-redirect-from) plugin
700
+ to generate a redirect page, but this is optional.
701
+
702
+ * You can now configure the order of complementary content below posts and projects.
703
+ By default, Hydejack will show the author first (if any), the newsletter box next (if any),
704
+ and related posts/projects last.
705
+
706
+ ```yml
707
+ hydejack:
708
+ post_addons: [about, newsletter, related, random]
709
+ project_addons: [about, newsletter, other]
710
+ ```
711
+
712
+ To change the order in the output, change to order in the array.
713
+ You can also drop entries from the output by removing them from the list.
714
+
715
+ * Added an error page that is shown when client-side network errors occur. It contains a link to retry loading the page.
716
+ Previously, the browser's default error page would have been shown.
717
+
718
+ * Added `hide_description` option to pages to prevent the content of `description` fields to show up in the output.
719
+ This allows you to use the `description` field in the front matter to set descriptions for search engines and sharing on social media,
720
+ without having to worry about the output.
721
+
722
+ You can activate this for all pages by adding to your config file:
723
+
724
+ ```yml
725
+ defaults:
726
+ - scope:
727
+ path: ''
728
+ values:
729
+ hide_description: true
730
+ ```
731
+
732
+ * Added a new option called `no_inline_css`.
733
+ When `true`, Hydejack will generate a single CSS file to be fetched (synchronously) via `link` tag,
734
+ instead of inlining half and including the rest via `link` tag.
735
+
736
+ This option *may* be useful when serving content over HTTP/2, but you should perform your own tests.
737
+ For more on inlining CSS, [see this](https://varvy.com/pagespeed/inline-small-css.html).
738
+
739
+ ```yml
740
+ hydejack:
741
+ no_inline_css: true
742
+ ```
743
+
744
+ * Added `dns-prefetch` links to Google Fonts and Google Analytics domains to further boost page load speed.
745
+ These are only included when using Google Fonts/Analytics.
746
+
747
+ * You can now define an arbitrary CSS `background` for the sidebar instead of just images, e.g.:
748
+
749
+ ```yml
750
+ accent_image:
751
+ background: 'linear-gradient(to bottom, rgba(35,62,76,1) 0%,rgba(60,146,158,1) 50%,rgba(213,213,212,1) 100%) #4fb1ba'
752
+ ```
753
+
754
+ * Category and tag pages can now have arbitrary content (to be shown *above* the list).
755
+
756
+ * Links can now be marked for FLIP animations by adding the `flip-title` class. Use this for links that have
757
+ the exact same text as the title of the page they are linking, e.g. `[NOTICE](NOTICE.md)`.
758
+
759
+
760
+ ### Performance
761
+ * Reduced building time during development.
762
+ Roughly 50% of the time was spent rebuilding the inline CSS, which is now built once and included via `link` tag.
763
+ Production builds still inlines CSS, so the building speed remains unchanged.
764
+ For more on how to improve building speeds, [see here](docs/writing.md#a-word-on-building-speeds).
765
+
766
+ ### Design
767
+ * The default background image is no longer anti-selling the theme...
768
+
769
+ * Code blocks, math blocks and tables now use as much space as there is available on the screen.
770
+ Limiting the line length makes sense for paragraphs, as they are more difficult to read
771
+ when they span the entire length on a large display,
772
+ but it is less useful for content, like tables, long formulas or code.
773
+
774
+ If you do not like this change, you can set `no_break_layout` to `true` in your config file.
775
+
776
+ ```yml
777
+ hydejack:
778
+ no_break_layout: true
779
+ ```
780
+
781
+ * Margin below code blocks, math blocks and tables increased from `1rem` to `2rem`.
782
+
783
+ * Gray text now has a higher contrast ratio:
784
+ I don't want anybody to ["suffer from design"](https://lostinmobile.com/2016/10/25/im-suffering-from-design/).
785
+
786
+ * Reduced the number of responsive breakpoints.
787
+
788
+ * Added a hover effect on project images.
789
+
790
+ * On mobile, footnotes will be shown as [1] instead of superscript, making them easer to tap.
791
+
792
+ * The sidebar now has a subtle shadow on mobile, to indicate that it can be drawn from the side.
793
+
794
+ * The sidebar now has less margin on the sides.
795
+
796
+ * The sidebar now fits 5 social media icons, up from 4.
797
+
798
+ * The `description` in the sidebar now has a smaller font size when it is longer than 100 characters.
799
+ This is to encourage writing a longer `description` for search engines (~160 characters).
800
+
801
+ * `h1`, `h2` and `h3` headings now have different `line-height`s to improve readability when they span multiple lines.
802
+
803
+ * Marks on external links are now less opaque, but have a hover effect.
804
+
805
+ * More responsible usage of `font_heading` in resume layout.
806
+
807
+ * When hovering over a headline, a `#` link will appear, so that readers can link to individual headlines.
808
+
809
+ * Changed the loading spinner to use a single icon instead of several animated `div`s.
810
+
811
+ ### Fixes
812
+ * When linking to an internal document that doesn't match the regular content structure,
813
+ the 'hot replacement' will no longer get stuck, and reload the page instead.
814
+ * Fix jumping to `#` links after navigating to a new page.
815
+ * Fix jumping to `#` links in MS Edge.
816
+ * Fixed a bug on iOS were scrolling was blocked after closing the drawer.
817
+ * Fixed a bug where the image used during the project FLIP animation would note be replaced with the higher resolution image
818
+ after the animation in certain browsers.
819
+ * The drawer is now less likely to be opened by accident.
820
+
821
+ ## v6.6.1
822
+ Aug 10 2017
823
+
824
+
825
+ * Fixed sending incorrect paths to Google Analytics.
826
+ In previous versions, Hydejack would always send the URL of the initial page for all subsequent page views.
827
+ Thanks [@dannydwarren](https://twitter.com/dannydwarren) for pointing this out.
828
+ * Fixed `tagline` not showing up in the title.
829
+
830
+ ## v6.6.0
831
+ Aug 7 2017
832
+
833
+
834
+ * Dependencies from external domains have been removed
835
+ (with the exception of those that are explicitly defined and optional: Google Analytics, Google Fonts and Disqus).
836
+ Instead, they are now located in the assets folder and managed via Bower.
837
+ * KaTeX is no longer loaded on pages that do not contain math blocks.
838
+ * `preload` link tags no longer use `onload`. Instead callbacks are registered within a script tag.
839
+ * Code in code blocks is no longer smaller sized than inline code.
840
+ To undo this change, open (or create) `_sass/my-inline.scss` and add the following:
841
+
842
+ ~~~css
843
+ pre code { font-size: .75em; }
844
+ ~~~
845
+
846
+ * Added `_includes/my-head.html`, to make it easier to add things to the `<head/>` without modifying the source.
847
+ This is especially useful when using the gem-based version of the theme.
848
+
849
+ ## v6.5.0
850
+ Jul 27 2017
851
+
852
+
853
+ This maintenance release includes various quality-of-life improvements when using the gem-based version of the theme.
854
+
855
+ ### Added
856
+ * Hydejack now uses additional Jekyll plugins by default, which make working with GitHub more convenient.
857
+ They have been added to the `Gemfile` and `_config.yml`.
858
+ Note that existing users need to update their `_config.yml`:
859
+
860
+ ~~~yml
861
+ gems:
862
+ - jekyll-default-layout # new
863
+ - jekyll-feed
864
+ - jekyll-optional-front-matter # new
865
+ - jekyll-paginate
866
+ - jekyll-redirect-from
867
+ - jekyll-relative-links # new
868
+ - jekyll-sitemap
869
+ ~~~
870
+
871
+ * Added `licenses` folder that includes the full license texts of licenses mentioned in `NOTICE.md`.
872
+ * You can, once again, define the author in `_config.yml`.
873
+ Using `_data/authors.yml` is still recommended (and takes precedence),
874
+ but this option is more convenient when setting up a quick (project-) page using the gem-based theme.
875
+ Also, a mini-version of `_data/social.yml` can be provided as part `_config.yml`, e.g.:
876
+
877
+ ~~~yml
878
+ author:
879
+ social:
880
+ github: https://github.com/hydecorp/hydejack
881
+ npm: https://www.npmjs.com/package/hydejack
882
+ download: https://github.com/hydecorp/hydejack/archive/v6.5.0.zip
883
+
884
+ data_social:
885
+ github:
886
+ name: GitHub
887
+ icon: icon-github
888
+ npm:
889
+ name: npm
890
+ icon: icon-npm
891
+ download:
892
+ name: Download
893
+ icon: icon-box-add
894
+ ~~~
895
+
896
+ * A download icon has been added to the default icon font and `_data/social.yml` has been updated.
897
+ * Added `_includes/my-scripts.html`, `_sass/my-inline.scss` and `_sass/my-style.scss` to make it easier to add custom scripts and styles without modifying the source. This is especially handy when using the gem-based version of the theme.
898
+
899
+ ### Changed
900
+ * Loading web fonts now starts earlier and content download no longer blocks
901
+ swapping out the fallback font for the new font.
902
+ Previously, a page containing lots of images could have delayed displaying the web fonts significantly.
903
+ * The `home` layout no longer contains a message suggesting that you don't use it.
904
+ * The `home` layout now shows up to 5 blog posts and up to 5 pages blow the regular content.
905
+ * The version history has been moved from `docs/<version>/versions.md` to `CHANGELOG.md`.
906
+ * The license notices have been moved from `docs/<version>/licenses.md` to `NOTICE.md`.
907
+ * Updated gem and npm dependencies
908
+
909
+ ### Design
910
+ * The default font has been changed from "Noto Serif" to "Noto Sans".
911
+ If you have a `font` entry in `_config.yml`, this will have no effect.
912
+ * `nap.jpg` is no longer used as default background image in the gem-based theme.
913
+ * The sidebar content width is now limited to the width of the sidebar (this only effects large screens).
914
+ * Project cards and pagination buttons now have slightly rounded borders for a less "rigid" look.
915
+
916
+ #### How to restore the old styles
917
+ If you would like to use the old font, add the following to `_config.yml`:
918
+
919
+ ~~~yml
920
+ font_heading: "'Roboto Slab', Helvetica, Arial, sans-serif"
921
+ font: "'Noto Serif', Georgia, serif"
922
+ google_fonts: "Roboto+Slab:700|Noto+Serif:400,400i,700,700i"
923
+ ~~~
924
+
925
+ If you were relying on the default setting for the background image, add the following to `_config.yml`:
926
+
927
+ ~~~yml
928
+ image: /hydejack/assets/img/nap.jpg
929
+ ~~~
930
+
931
+ Note that you have to replace `/hydejack` with your `baseurl`.
932
+
933
+ To restore the old sidebar, open (or create) `_sass/my-inline.scss` and add the following:
934
+
935
+ ~~~css
936
+ @media screen { .sidebar-sticky { left: 2rem; max-width: none; } }
937
+ ~~~
938
+
939
+ To remove the border radius, open (or create) `_sass/my-inline.scss` and add the following:
940
+
941
+ ~~~css
942
+ .card, .pagination-item { border-radius: 0!important; }
943
+ ~~~
944
+
945
+ ## v6.4.1
946
+ Jun 23 2017
947
+
948
+
949
+ * Fix invalid color hex
950
+
951
+ ## v6.4.0
952
+ Jun 21 2017
953
+
954
+
955
+ In this release I've added a "Other Projects" section to the bottom of each project page,
956
+ making it easier for users to navigate through your collection and discover other projects.
957
+ Also, it's now possible to display larger (data-) tables that were previously cut off (especially on mobile devices).
958
+
959
+ For more on how to add tables, see the new section in [docs/writing][writing].
960
+
961
+ Smaller changes include a reduced usage of horizontal lines and a more "semantic" use of `hr` elements.
962
+ Specifically, the semantics of the resume layout have been improved.
963
+
964
+ ### Minor
965
+ * Added "Other Projects" section to the bottom of the project layout (similar to "Related Posts")
966
+ * Added CSS classes that make viewing larger (data-) tables possible
967
+ * Added section on tables to [docs/writing][writing]
968
+ * Reduced use of `<hr/>` elements, using CSS borders instead.
969
+ * Improved semantic HTML of resume
970
+ * Follow favicon best practices and include example icons
971
+ * Added `no_google_fonts` option
972
+
973
+ ### Design
974
+ * Reduced number of horizontal lines, making many layouts feel less "cluttered" (esp. `blog` layout)
975
+ * Made link hover styles consistent across the board
976
+ * Visually separated `thead` and `tbody` and `tfoot` within tables.
977
+ * Changed RSS and email icons
978
+ * Removed top margin for consecutive headings, e.g. when using `h3` immediately after `h2`.
979
+
980
+ ### Fixes
981
+ * Fixed bug that caused inline math to be moved to the end of a paragraph when dynamically loading a page.
982
+ * Fixed bug that caused layout to break in IE11.
983
+ * Fixed bug that caused the project animation to "jump" when using long project titles.
984
+ * No more empty attributes on `img` tags.
985
+
986
+ ## v6.3.0
987
+ Jun 6 2017
988
+
989
+
990
+ This release makes including third party plugins easier.
991
+ Until now, the push state approach to loading new pages has been interfering with embedded `script` tags.
992
+ This version changes this by simulating the sequential loading of script tags on a fresh page load.
993
+
994
+ This approach should work in a majority of cases, but can still cause problems with scripts that can't be added more than once per page.
995
+ If an issue can't be resolved, there's now the option to disable push state by setting `disable_push_state: true` in `config.yml`.
996
+
997
+ ### Minor
998
+ * Support embedding `script` tags in markdown content
999
+ * Add `disable_push_state` option to `_config.yml`
1000
+ * Add `disable_drawer` option to `_config.yml`
1001
+ * Rename syntax highlighting file to `syntax.scss`
1002
+ * Added [chapter on third party scripts][scripts] to documentation
1003
+
1004
+ ### Design
1005
+ * Add subtle intro animation
1006
+ * Rename "Check out X for more" to "See X for more" on welcome\* page
1007
+ * Replace "»" with "→" in "read more"-type of links
1008
+
1009
+ ### Fixes
1010
+ * Fix default color in gem-based theme
1011
+
1012
+ ## v6.2.0
1013
+ May 29 2017
1014
+
1015
+
1016
+ * Changed default color and image
1017
+ * Updated demo content
1018
+ * Finalized welcome and project page
1019
+ * Color is now fading correctly when no background image is provided
1020
+ * Added exemplary usage of excerpt separator
1021
+ * Removed social media links from `welcome` and `about` page
1022
+ * Updated dependencies
1023
+
1024
+ ## v6.1.1
1025
+ May 23 2017
1026
+
1027
+
1028
+ * Add support for `lang` in front matter and `_config.yml`.
1029
+ * Add support for `keywords` in front matter and `_config.yml`.
1030
+
1031
+ ## v6.1.0
1032
+ May 15 2017
1033
+
1034
+
1035
+ * Updated JS dependencies
1036
+ * Added version history and licenses to documentation
1037
+ * Fixed print layout
1038
+
1039
+ ## v6.0.0 (JavaScripten)
1040
+ May 3 2017
1041
+
1042
+
1043
+ Hydejack has always featured a JavaScript-heavy sidebar, but other than that, JS has been used sparingly. This changes with this release, which adds a ton of (optional) code that changes the feel of the theme dramatically.
1044
+
1045
+ ### Major
1046
+ Pages are now loaded and swapped through JavaScript. This has a number of effects. First of all, it looks cool, but the animations aren't just about aesthetics: They also help to hide the network time of fetching the next page, making the entire site feel faster. At the same time, the FOUC introduced in the last release will no longer occur (except on the initial page load).
1047
+
1048
+ * Most JS is now unified in the `_js` directory and written in ES2016.
1049
+ * The `blog-by-tag` layout has been renamed to `list`.
1050
+ * `public` folder has been renamed to `assets` to make the theme compatible with Jekyll's gem-based themes.
1051
+ * Tags are now supported via Jekyll Collections instead of `_data`.
1052
+ * The sidebar can now add links to all kinds of pages.
1053
+ * Categories are now supported.
1054
+ * Author information moved to `_data/authors.yml`
1055
+ * Added support for multiple authors.
1056
+ * Using `jekyll-feed` plugin (supported on GitHub Pages) instead of custom solution.
1057
+ * Added `about` layout.
1058
+ * Added `not-found` layout.
1059
+ * Added `redirect` layout
1060
+
1061
+ See the [the migration guide][migration] for instructions on how to upgrade.
1062
+
1063
+ ### Minor
1064
+ * The "accent" font (heading font) is now used for all headings. This gives the theme a "bolder" look and was necessary for the animation: link => heading.
1065
+ * Changed default text font from "PT Serif" to "Noto Serif".
1066
+ * Added [CSS classes][writing] for styling markdown content.
1067
+ * Links have a new style. They now always display an underline to make the choice of the link color less critical (darker colors were hard to distinguish from regular text).
1068
+ * Made social media icons larger and easier to tap.
1069
+ * Social media icons are now also part of the "about" sections of a post.
1070
+ * Added support for a copyright notice at the bottom. Can be set via the config variable `copyright`.
1071
+ * Changed responsive breakpoints and added support for very large displays.
1072
+ * The site is now printable.
1073
+ * The `blog` layout now only shows the excerpt instead of the full post.
1074
+ * Links to external pages are now marked with a symbol.
1075
+ * Added margin above social media icons to prevent accidental tapping
1076
+ * Added gem files so that `bundle install` and `bundle exec jekyll serve` work
1077
+ * Disabled HTML minification when running via `jekyll serve`
1078
+ * Added dingbat to signal end of post
1079
+
1080
+ ### Fixes
1081
+ * Related posts is no longer blank for posts that do not belong to a category.
1082
+ * Footnotes now use the text version of "leftwards arrow with hook" instead of the emoji on iOS.
1083
+ * Text is no longer invisible while waiting for Google Fonts to load.
1084
+ * Always show scrollbar to prevent layout "jumps"
1085
+
1086
+ ## v5.3.0
1087
+ Oct 1 2016
1088
+
1089
+
1090
+ a11y improvements
1091
+ - Use HTML5 semantics tags + roles
1092
+ - Don't set `maximum-scale=1`
1093
+ - Fix bug with `sr-only` class
1094
+
1095
+ Math support improvements
1096
+ - LaTeX syntax errors will no longer prevent correct math blocks from being rendered
1097
+ - LaTeX syntax errors logged to console
1098
+
1099
+ ## v5.2.0
1100
+ Sep 29 2016
1101
+
1102
+
1103
+ Prevent structural FOUC
1104
+
1105
+ ## v5.1.0
1106
+ Sep 28 2016
1107
+
1108
+
1109
+ Cross-browser compatibility improvements:
1110
+ - Added features tests
1111
+ - Fixed layout in IE 10 and 11
1112
+ - Disabled stylesheets and JS in IE 9 and below.
1113
+
1114
+ ## v5.0.0 (The Fast One)
1115
+ Sep 16 2016
1116
+
1117
+
1118
+ This major release increases page load speed dramatically. The page now scores roughly 90/100 on [Google's PageSpeed Insights](https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fqwtel.com%2Fhydejack%2F) (up from ~50) and has a high score on similar tools.
1119
+
1120
+ Most importantly, the critical rendering path is no longer blocked by loading styles or scripts, meaning the site becomes visible faster.
1121
+
1122
+ Page load speed matters to Google, but is also _very_ apparent to visitors with slow internet connections.
1123
+
1124
+ However, as a side effect of these optimizations, the site now has a visible [FOUC](https://en.wikipedia.org/wiki/Flash_of_unstyled_content).
1125
+ Future versions might address this, but it is the currency in which loading speed is being payed for and can not be fully avoided.
1126
+
1127
+ ### Major
1128
+ - HTML, CSS and JS served minified.
1129
+ - JS downloading starts only after the rest of the page is renderd.
1130
+ - Critical CSS (above-the-fold) is inlined into the document, the rest is fetched later.
1131
+
1132
+ In order to minify the CSS and make it more modular it has been rewritten in SCSS.
1133
+
1134
+ ### Minor
1135
+ - Colored focus outline in page color
1136
+ - Tabindex for tab navigation
1137
+ - Social media icons easier tappable with finger
1138
+
1139
+ ### Trivia
1140
+ Not strictly part of the release, but the images have been blurred to increase text readability and help with loading speed as well (burred images get compressed by JPG much better).
1141
+
1142
+ ## v4.0.1
1143
+ Sep 11 2016
1144
+
1145
+
1146
+ Fix per-page color and image
1147
+
1148
+ ## v4.0.0 (Social Media Impocalypse)
1149
+ Aug 30 2016
1150
+
1151
+
1152
+ ### Breaking
1153
+ - Structure of `_config.yml` has changed
1154
+ - Social media usernames are now located under `author: social: <platform>: <username>`.
1155
+ - `disqus` is now a top-level entry (moved from `author`).
1156
+ - Now has `font`, `font_accent` and `google_fonts` fields that are mandatory.
1157
+ - Now defaults to the `blog` layout, old style is available via `blog-by-tag` layout, see `archive.html`.
1158
+
1159
+ ### New features
1160
+ - Added _a lot_ of social media icons, configurable via `_config.yml`.
1161
+ - New `blog` layout. Classic, paginated.
1162
+ - Fonts are configurable via `_config.yml`.
1163
+
1164
+ ### Design
1165
+ - Link underlines are now fixed-sized for all font sizes (no thicker lines for headlines, etc)
1166
+
1167
+ ### Fixes
1168
+ - Correctly set the meta description field using either the `description` field or `post.excerpt` as a fallback (used to contain the unmodified markdown).
1169
+ - Fixed various URL bugs relating to `site.baseurl`.
1170
+
1171
+ ### Internal
1172
+ - Refactoring, preventing code duplications, heavier usage of `includes`.
1173
+
1174
+ ## v3.0.0 (Hydejack)
1175
+ May 7 2016
1176
+
1177
+
1178
+ Hydejack is a pretentious two-column [Jekyll](http://jekyllrb.com) theme, stolen by [`@qwtel`](https://twitter.com/qwtel) from [Hyde](http://hyde.getpoole.com). You could say it was.. [hydejacked](http://media3.giphy.com/media/makedRIckZBW8/giphy.gif).
1179
+
1180
+ ### Features
1181
+ Unlike Hyde, it's very opinionated about how you are going to use it.
1182
+
1183
+ Features include:
1184
+ * Touch-enabled sidebar / drawer for mobile, including fallback when JS is disabled.
1185
+ * Github Pages compatible tag support based on [this post][tag].
1186
+ * Customizable link color and sidebar image, per-site, per-tag and per-post.
1187
+ * Optional author section at the bottom of each post.
1188
+ * Optional comment section powered by Disqus.
1189
+ * Layout for posts grouped by year
1190
+ * Wide array of social media icons on sidebar.
1191
+ * Math blocks via [KaTeX](https://khan.github.io/KaTeX/).
1192
+
1193
+ ## v2.0.0 (Hyde)
1194
+ Jan 2 2014
1195
+
1196
+
1197
+ ## v1.0.0 (Hyde)
1198
+ Oct 15 2013
1199
+
1200
+
1201
+ [tag]: http://www.minddust.com/post/tags-and-categories-on-github-pages/
1202
+ [migration]: docs/upgrade.md
1203
+ [writing]: docs/writing.md
1204
+ [scripts]: docs/scripts.md
1205
+
1206
+ [buy]: https://app.simplegoods.co/i/AQTTVBOE
1207
+ [PRO-license]: licenses/PRO.md
1208
+ [GPL-3.0]: licenses/GPL-3.0.md