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
data/LICENSE.md CHANGED
@@ -1,7 +1,13 @@
1
+
2
+
1
3
  # LICENSE
2
4
 
5
+
6
+
7
+
3
8
  ## GNU GENERAL PUBLIC LICENSE
4
9
 
10
+
5
11
  Version 3, 29 June 2007
6
12
 
7
13
  Copyright (C) 2007 Free Software Foundation, Inc.
@@ -219,7 +225,7 @@ produce it from the Program, in the form of source code under the
219
225
  terms of section 4, provided that you also meet all of these
220
226
  conditions:
221
227
 
222
- {:style="list-style-type:lower-latin"}
228
+
223
229
  1. The work must carry prominent notices stating that you modified
224
230
  it, and giving a relevant date.
225
231
  2. The work must carry prominent notices stating that it is
@@ -255,7 +261,7 @@ sections 4 and 5, provided that you also convey the machine-readable
255
261
  Corresponding Source under the terms of this License, in one of these
256
262
  ways:
257
263
 
258
- {:style="list-style-type:lower-latin"}
264
+
259
265
  1. Convey the object code in, or embodied in, a physical product
260
266
  (including a physical distribution medium), accompanied by the
261
267
  Corresponding Source fixed on a durable physical medium
@@ -367,7 +373,7 @@ Notwithstanding any other provision of this License, for material you
367
373
  add to a covered work, you may (if authorized by the copyright holders
368
374
  of that material) supplement the terms of this License with terms:
369
375
 
370
- {:style="list-style-type:lower-latin"}
376
+
371
377
  1. Disclaiming warranty or limiting liability differently from the
372
378
  terms of sections 15 and 16 of this License; or
373
379
  2. Requiring preservation of specified reasonable legal notices or
@@ -0,0 +1,290 @@
1
+
2
+
3
+ # NOTICE
4
+
5
+
6
+
7
+
8
+ Copyright (c) 2020 Florian Klampfer <https://qwtel.com/>
9
+
10
+ This program is free software: you can redistribute it and/or modify
11
+ it under the terms of the GNU General Public License as published by
12
+ the Free Software Foundation, either version 3 of the License, or
13
+ (at your option) any later version.
14
+
15
+ This program is distributed in the hope that it will be useful,
16
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
17
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
+ GNU General Public License for more details.
19
+
20
+ You should have received a copy of the GNU General Public License
21
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
22
+
23
+
24
+ ## Attributions
25
+ Appropriate credit as per Creative Commons licenses.
26
+
27
+ | Work | License | Changes
28
+ |:-------------------------------------------------------|:---------------|:-
29
+ | [Photo][ph] by [Caleb George][cg] | [Unsplash] | Rearranged objects, Filled in content, blurred
30
+ | [IcoMoon Icons Free Version][11] by [Keyamoon][12] | [CC-BY-SA-4.0] | None
31
+ | [Touch-161562.svg][41] | [CC0-1.0] | Composition
32
+
33
+
34
+ ## Licenses
35
+ Parts of this software are provided under separate licenses.
36
+
37
+ ### Hyde
38
+ This software also uses portions of the
39
+ `poole/hyde`
40
+ project, which is [MIT] licensed with the following copyright:
41
+
42
+ > Copyright (c) 2013 Mark Otto.
43
+
44
+
45
+ ### hy-drawer
46
+ This software also uses portions of the
47
+ `hydecorp/hy-drawer`
48
+ project, which is [GPL-3.0] licensed with the following copyright:
49
+
50
+ > Copyright (c) 2018 Florian Klampfer <https://qwtel.com/>
51
+
52
+
53
+ ### hy-push-state
54
+ This software also uses portions of the
55
+ `hydecorp/hy-push-state`
56
+ project, which is [GPL-3.0] licensed with the following copyright:
57
+
58
+ > Copyright (c) 2018 Florian Klampfer <https://qwtel.com/>
59
+
60
+
61
+ ### RxJS
62
+ This software also uses portions of the
63
+ `ReactiveX/rxjs`
64
+ project, which is [Apache-2.0] licensed with the following copyright:
65
+
66
+ > Copyright (c) 2015-2017 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
67
+
68
+ No substantial changes to the software were made.
69
+ No `NOTICE` file was provided.
70
+
71
+
72
+ ### KaTeX
73
+ This software also uses portions of the
74
+ `Khan/KaTeX`
75
+ project, which is [MIT] licensed with the following copyright:
76
+
77
+ > Copyright (c) 2015 Khan Academy
78
+
79
+
80
+ ### core-js
81
+ This software also uses portions of the
82
+ `zloirock/core-js`
83
+ project, which is [MIT] licensed with the following copyright:
84
+
85
+ > Copyright (c) 2014-2016 Denis Pushkarev
86
+
87
+
88
+ ### Web Animations
89
+ This software also uses portions of the
90
+ `web-animations/web-animations-js`
91
+ project, which is [Apache-2.0] licensed with the following copyright:
92
+
93
+ > Copyright 2014 Google Inc. All rights reserved.
94
+
95
+ No substantial changes to the software were made.
96
+ No `NOTICE` file was provided.
97
+
98
+
99
+ ### Modernizr
100
+ This software also uses portions of the
101
+ `Modernizr/Modernizr`
102
+ project, which is [MIT] licensed with the following copyright:
103
+
104
+ > Copyright (c)
105
+ > Faruk Ates
106
+ > Paul Irish
107
+ > Alex Sexton
108
+ > Ryan Seddon
109
+ > Patrick Kettner
110
+ > Stu Cox
111
+ > Richard Herrera
112
+
113
+
114
+ ### Compress HTML in Jekyll
115
+ This software also uses portions of the
116
+ `penibelst/jekyll-compress-html`
117
+ project, which is [MIT] licensed with the following copyright:
118
+
119
+ > Copyright (c) 2014 Anatol Broder
120
+
121
+
122
+ ### The HTML5 Shiv
123
+ This software also uses portions of the
124
+ `aFarkas/html5shiv`
125
+ project, which is [MIT] licensed with the following copyright:
126
+
127
+ > Copyright (c) 2014 Alexander Farkas (aFarkas).
128
+
129
+
130
+ ### DOM4
131
+ This software also uses portions of the
132
+ `WebReflection/dom4`
133
+ project, which is [MIT] licensed with the following copyright:
134
+
135
+ > Copyright (C) 2013-2015 by Andrea Giammarchi - @WebReflection
136
+
137
+
138
+ ### loadCSS
139
+ This software also uses portions of the
140
+ `filamentgroup/loadCSS`
141
+ project, which is [MIT] licensed with the following copyright:
142
+
143
+ > Copyright (c) @scottjehl, 2016 Filament Group
144
+
145
+
146
+ ### Ratchet
147
+ This software also uses portions of the
148
+ `twbs/ratchet`
149
+ project, which is [MIT] licensed with the following copyright:
150
+
151
+ > Copyright (c) 2015 connors and other contributors
152
+
153
+
154
+ ### Swipe
155
+ This software also uses portions of the
156
+ `thebird/Swipe`
157
+ project, which is [MIT] licensed with the following copyright:
158
+
159
+ > Copyright (c) 2013 Brad Birdsall
160
+
161
+
162
+ ### smoothState
163
+ This software also uses portions of the
164
+ `miguel-perez/smoothState.js`
165
+ project, which is [MIT] licensed with the following copyright:
166
+
167
+ > Copyright (c) 2014 Miguel Angel Perez
168
+
169
+
170
+ ### Bootstrap
171
+ This software also uses portions of the
172
+ `twbs/bootstrap`
173
+ project, which is [MIT] licensed with the following copyright:
174
+
175
+ > Copyright (c) 2011-2018 Twitter, Inc.
176
+ > Copyright (c) 2011-2018 The Bootstrap Authors
177
+
178
+
179
+ ### Atom One Light Syntax
180
+ This software also uses portions of the
181
+ `atom/one-light-syntax`
182
+ project, which is [MIT] licensed with the following copyright:
183
+
184
+ > Copyright (c) 2016 GitHub Inc.
185
+
186
+
187
+ ### Atom One Dark Syntax
188
+ This software also uses portions of the
189
+ `atom/one-dark-syntax`
190
+ project, which is [MIT] licensed with the following copyright:
191
+
192
+ > Copyright (c) 2016 GitHub Inc.
193
+
194
+
195
+ ### MiniSearch
196
+ This software also uses portions of the
197
+ `lucaong/minisearch`
198
+ project, which is [MIT] licensed with the following copyright:
199
+
200
+ > Copyright 2018 Luca Ongaro
201
+
202
+
203
+ ### window.fetch polyfill
204
+ This software also uses portions of the
205
+ `github/fetch`
206
+ project, which is [MIT] licensed with the following copyright:
207
+
208
+ > Copyright (c) 2014-2016 GitHub, Inc.
209
+
210
+
211
+ ### AbortController polyfill for abortable fetch()
212
+ This software also uses portions of the
213
+ `mo/abortcontroller-polyfill`
214
+ project, which is [MIT] licensed with the following copyright:
215
+
216
+ > Copyright (c) 2017 molsson
217
+
218
+
219
+ ### ResizeObserver Polyfill
220
+ This software also uses portions of the
221
+ `juggle/resize-observer`
222
+ project, which is [Apache-2.0] licensed with the following copyright:
223
+
224
+ > Copyright 2019 JUGGLE LTD
225
+
226
+
227
+ ### kv-storage polyfill
228
+ This software also uses portions of the
229
+ `GoogleChromeLabs/kv-storage-polyfill`
230
+ project, which is [Apache-2.0] licensed with the following copyright:
231
+
232
+ > Copyright 2019 Google Inc.
233
+
234
+
235
+ ### IntersectionObserver polyfill
236
+ This software also uses portions of the
237
+ `w3c/IntersectionObserver`
238
+ project, which is [W3C-20150513] licensed with the following copyright:
239
+
240
+ > Copyright 2016 Google Inc. All Rights Reserved.
241
+
242
+ No substantial changes to the software were made.
243
+
244
+
245
+ ### Web Components Polyfills
246
+ This software also uses portions of the
247
+ `webcomponents/webcomponentsjs`
248
+ project, which is BSD-style licensed with the following copyright:
249
+
250
+ > Copyright (c) 2019 The Polymer Authors. All rights reserved.
251
+
252
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
253
+
254
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
255
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
256
+ * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
257
+
258
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
259
+
260
+ ### lit-html
261
+ This software also uses portions of the
262
+ `Polymer/lit-html`
263
+ project, which is BSD-style licensed with the following copyright:
264
+
265
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
266
+
267
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
268
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
269
+ * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
270
+
271
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272
+
273
+
274
+ [11]: https://icomoon.io/#icons-icomoon
275
+ [12]: http://keyamoon.com/
276
+ [21]: https://commons.wikimedia.org/wiki/File:Jacques_Louis_David_-_Bonaparte_franchissant_le_Grand_Saint-Bernard,_20_mai_1800_-_Google_Art_Project.jpg
277
+ [31]: https://commons.wikimedia.org/wiki/File:Mandel_zoom_08_satellite_antenna.jpg
278
+ [41]: https://commons.wikimedia.org/wiki/File:Touch-161562.svg
279
+ [ph]: https://unsplash.com/photos/AtvuPUenaeI?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText
280
+ [cg]: http://www.caleb-morris.com/
281
+
282
+ [MIT]: licenses/MIT.md
283
+ [GPL-3.0]: licenses/GPL-3.0.md
284
+ [Apache-2.0]: licenses/Apache-2.0.md
285
+ [W3C-20150513]: licenses/W3C-20150513.md
286
+ [CC-BY-SA-4.0]: https://creativecommons.org/licenses/by-sa/4.0/
287
+ [CC-BY-SA-3.0]: https://creativecommons.org/licenses/by-sa/3.0/
288
+ [CC0-1.0]: https://creativecommons.org/publicdomain/zero/1.0/deed.en
289
+ [Unsplash]: https://unsplash.com/license
290
+
data/README.md CHANGED
@@ -1,37 +1,55 @@
1
+
2
+
1
3
  # Hydejack
2
4
 
3
- The "Best Jekyll Theme by a Mile".
5
+ A boutique Jekyll theme for hackers, nerds, and academics.
6
+
7
+
8
+
4
9
 
5
10
 
6
- ![Screenshot](assets/img/blog/hydejack-8.png)
11
+ ![Screenshot](https://hydejack.com/assets/img/blog/hydejack-8.png)
12
+
7
13
  Hydejack's cover page on a variety of screens.
8
14
 
9
15
 
10
- **Hydejack** is your presence on the web. It gives you a *blog* that is suitable for both prose and technical documentation, a *portfolio* to showcase your projects, and a beautiful *resume* template that looks amazing on the web and in print.
11
16
 
12
- > Your presence on the web A [blog], a [portfolio], and a [resume].
17
+ **Hydejack** is a boutique Jekyll theme for hackers, nerds, and academics, with a focus on personal sites that are meant to impress.
18
+
19
+ It includes a blog that is suitable for both prose and technical documentation, a portfolio to showcase your projects, and a resume template that looks amazing on the web and in print.
20
+
21
+ > Your complete presence on the web — A [blog], [portfolio], and [resume].
13
22
 
14
23
 
15
- There are two versions of **Hydejack**: The base version is free, while features that are specific to *professionals* are a payed upgrade.
16
24
 
17
- | | Free | PRO |
18
- |:-----------------------|:--------------:|:--------:|
19
- | Blog | &#x2714; | &#x2714; |
20
- | [Features] | &#x2714; | &#x2714; |
21
- | [Portfolio] | | &#x2714; |
22
- | [Resume] | | &#x2714; |
23
- | [Welcome] | | &#x2714; |
24
- | [Newsletter Box][news] | | &#x2714; |
25
- | [Custom Forms][forms] | | &#x2714; |
26
- | [Dark Mode][darkm] | | &#x2714; |
27
- | [Offline Support][ofln]| | &#x2714; |
28
- | Cookie Banner | | &#x2714; |
29
- | No Hydejack Branding | | &#x2714; |
30
- | License | [GPL-3.0][lic] | [PRO] |
31
- | Source | [GitHub][src] | Included |
32
- | Support[^1] | No | No |
33
- | Price | Free | $59 |
34
- | | [**Download**][kit] <br/>-- or --<br/> [![Deploy to Netlify][dtn]][nfy] | [**Buy PRO** --- $59][buy] |
25
+ ## Download
26
+
27
+ There are two versions of **Hydejack**: The *Free Version* includes basic blogging functionality and most of Hydejack's [Features], such as dynamic page loading and advanced animations.
28
+
29
+ The *PRO Version* includes additional features for professionals, such as a [portfolio], [resume], [Dark Mode][dark], [Forms], [Built-In Search][search] and customizable cookie banners.
30
+
31
+ The table below shows what's included in each version:
32
+
33
+ | | Free | PRO |
34
+ |:------------------------------|:--------------:|:-------------------:|
35
+ | [Blog] | &#x2714; | &#x2714; |
36
+ | [Features] | &#x2714; | &#x2714; |
37
+ | [Documentation][docs] | &#x2714; | &#x2714; |
38
+ | [Portfolio] | | &#x2714; |
39
+ | Printable [Resume] | | &#x2714; |
40
+ | [Dark Mode][dark] | | &#x2714; |
41
+ | [Built-In Search][search] | | &#x2714; |
42
+ | [Custom Forms][forms] | | &#x2714; |
43
+ | [Newsletter Box][news] | | &#x2714; |
44
+ | [Grid layout][grid] | | &#x2714; |
45
+ | [Offline Support][ofln] | | &#x2714; |
46
+ | Table of Contents[^2] | | &#x2714; |
47
+ | Cookie Banner | | &#x2714; |
48
+ | No Hydejack Branding | | &#x2714; |
49
+ | License | [GPL-3.0][lic] | [PRO] |
50
+ | Source | [GitHub][src] | Included |
51
+ | __Price__ / Upgrade | __Free__ | __$79__ / $29 [^3] |
52
+ | | [__Download__][kit] <br/>-- or --<br/> [__Deploy to Netlify__][nfy] | [__Buy PRO__][buy] |
35
53
 
36
54
 
37
55
 
@@ -48,17 +66,23 @@ A portfolio that's guaranteed to be impressive — no matter what you put into i
48
66
 
49
67
 
50
68
  ## A Printable Resume
51
- Get a resume that's consistent across the board — whether it's on the web, mobile, print, or [PDF](assets/Resume.pdf).
69
+ Get a resume that's consistent across the board — whether it's on the web, mobile, print, or [PDF](https://hydejack.com/assets/Resume.pdf).
70
+
71
+ [![Resume PDF](https://hydejack.com/assets/img/blog/resume.png)][resume]
52
72
 
53
- ![Resume PDF](assets/img/blog/resume.png)
54
73
  Front and center page of a print resume generated by Hydejack.
55
74
 
56
75
 
57
76
 
77
+ ## Just Markdown
78
+ Write all content with Markdown. __Hydejack__ gives you [additional CSS classes](docs/writing.md) to stylize your content, without losing compatibility with other Jekyll themes.
79
+
80
+
58
81
  ## Just Markup
59
- **Hydejack** boasts a plethora of modern JavaScript, but make no mistake: It's still a plain old *web page* at its core. It works without JavaScript, and you can even view it in a text-based browser like `w3m`:
82
+ **Hydejack** boasts a plethora of modern JavaScript, but make no mistake: It's still a _plain old web page_ at its core. It works without JavaScript, and you can even view it in a text-based browser like `w3m`:
83
+
84
+ ![w3m Screenshot](https://hydejack.com/assets/img/blog/w3m.png)
60
85
 
61
- ![w3m Screenshot](assets/img/blog/w3m.png)
62
86
  The Hydejack blog, as seen by the text browser `w3m`.
63
87
 
64
88
 
@@ -67,19 +91,31 @@ The Hydejack blog, as seen by the text browser `w3m`.
67
91
  **Hydejack** features syntax highlighting, powered by [Rouge].
68
92
 
69
93
  ```js
70
- document.getElementsByTagName("hy-push-state")[0].addEventListener("hy-push-state-load", function() {
71
- // <your init code>
94
+ // file: `example.js`
95
+ document.querySelector("hy-push-state").addEventListener("hy-push-state-load", () => {
96
+ const supportsCodeHighlights = true; //!!
72
97
  });
73
98
  ```
74
99
 
100
+ Code blocks can have a filename and a caption.
101
+
102
+
75
103
 
76
104
  ## Beautiful Math
77
- They say math is beautiful — and with **Hydejack**'s [math support][latex] it's also guaranteed to *look* beautiful.
105
+ They say math is beautiful — and with **Hydejack**'s [math support][maths] it's guaranteed to also look beautiful:
106
+
107
+ ![Math example](https://hydejack.com/assets/img/blog/example-content-iii.jpg)
78
108
 
79
- ![Math Screenshot](assets/img/blog/example-content-iii.jpg)
80
109
  Hydejack uses KaTeX to efficiently render math.
81
110
 
82
111
 
112
+ [maths]: docs/writing.md#adding-math
113
+
114
+
115
+ ## A Personal Site That Won't Disappear
116
+
117
+ **Hydejack** is 100% built on Open Source software, and is Open Source itself, save for parts of the PRO version. The PRO version is a one-time payment that gives you the right to use it forever.
118
+
83
119
 
84
120
  ## Build an Audience
85
121
  The PRO version has built-in support for customizable [Tinyletter] newsletter subscription boxes.
@@ -87,62 +123,67 @@ The PRO version has built-in support for customizable [Tinyletter] newsletter su
87
123
  If you are using a different service like MailChimp, you can build a custom newsletter subscription box using [Custom Forms][forms].
88
124
 
89
125
 
90
- ## A Personal Site That Belongs to You
91
- **Hydejack** is 100% built on Open Source software, and is Open Source itself, save for parts of the PRO version. The PRO version is a one-time payment that gives you the right to use it forever.
92
126
 
93
127
 
94
128
  ## Features
129
+
95
130
  An incomplete list of features included in all versions of **Hydejack**:
96
131
 
97
- * Full in-app page loading, powered by [hy-push-state]
98
- * Customizable sidebar and touch-enabled drawer menu, powered by [hy-drawer]
99
- * Lazy image loading with cancellation and placeholder, powered by [hy-img]
132
+ * Responsive layout with unique design features for every screen size
133
+ * Cover Pages for a stunning fist impression.
134
+ * Customizable sidebar and touch-enabled drawer menu
135
+ * Single Page Web App-style page loading
100
136
  * Advanced FLIP animations, inspired by Material Design
101
- * 99/100 [Google PageSpeed Score][gpss][^2]
137
+ * Good [Google PageSpeed Score][gpss][^1]
102
138
  * [Syntax highlighting][syntax], powered by [Rouge]
103
- * [LaTeX math blocks][latex], powered by [KaTeX]
104
- * Change the wording of built-in strings and possibly translate in other languages
139
+ * [LaTeX math blocks][latex], rendered with ether [KaTeX] or [MathJax] at your choice
140
+ * Soft-coded labels: Change wording or translate to other languages via a single file
105
141
  * Support for categories and tags
106
- * Built-in icons for many social networks
107
- * Simple and semantic HTML
108
- * Structured Data for core entities
109
142
  * Author section below each article and support for multiple authors
143
+ * Built-in icons for many social networks
144
+ * Simple and semantic HTML + Structured Data
110
145
  * Google Analytics and Google Fonts support
111
146
 
112
147
 
113
- ## Download
114
- There are two versions of **Hydejack**: The *free version* includes basic blogging functionality, as did previous versions of the theme.
115
- The *PRO version* includes additional features for professionals:
116
- A [portfolio], a [resume] layout, and a [welcome] page to highlight your favorite projects and posts.
148
+ ## Comparison
149
+
150
+ There are two versions of **Hydejack**: The *Free Version* includes basic blogging functionality and most of Hydejack's [Features], such as dynamic page loading and advanced animations.
117
151
 
118
- This table below shows what's included in each version:
152
+ The *PRO Version* includes additional features for professionals, such as a [portfolio], [resume], [Dark Mode][dark], [Forms], [Built-In Search][search] and customizable cookie banners.
119
153
 
120
- | | Free | PRO |
121
- |:-----------------------|:--------------:|:--------:|
122
- | Blog | &#x2714; | &#x2714; |
123
- | [Features] | &#x2714; | &#x2714; |
124
- | [Portfolio] | | &#x2714; |
125
- | [Resume] | | &#x2714; |
126
- | [Welcome] | | &#x2714; |
127
- | [Newsletter Box][news] | | &#x2714; |
128
- | [Custom Forms][forms] | | &#x2714; |
129
- | [Dark Mode][darkm] | | &#x2714; |
130
- | [Offline Support][ofln]| | &#x2714; |
131
- | Cookie Banner | | &#x2714; |
132
- | No Hydejack Branding | | &#x2714; |
133
- | License | [GPL-3.0][lic] | [PRO] |
134
- | Source | [GitHub][src] | Included |
135
- | Support[^1] | No | No |
136
- | Price | Free | $59 |
137
- | | [**Download**][kit] <br/>-- or --<br/> [![Deploy to Netlify][dtn]][nfy] | [**Buy PRO** --- $59][buy] |
154
+ The table below shows what's included in each version:
138
155
 
156
+ | | Free | PRO |
157
+ |:------------------------------|:--------------:|:-------------------:|
158
+ | [Blog] | &#x2714; | &#x2714; |
159
+ | [Features] | &#x2714; | &#x2714; |
160
+ | [Documentation][docs] | &#x2714; | &#x2714; |
161
+ | [Portfolio] | | &#x2714; |
162
+ | Printable [Resume] | | &#x2714; |
163
+ | [Dark Mode][dark] | | &#x2714; |
164
+ | [Built-In Search][search] | | &#x2714; |
165
+ | [Custom Forms][forms] | | &#x2714; |
166
+ | [Newsletter Box][news] | | &#x2714; |
167
+ | [Grid layout][grid] | | &#x2714; |
168
+ | [Offline Support][ofln] | | &#x2714; |
169
+ | Table of Contents[^2] | | &#x2714; |
170
+ | Cookie Banner | | &#x2714; |
171
+ | No Hydejack Branding | | &#x2714; |
172
+ | License | [GPL-3.0][lic] | [PRO] |
173
+ | Source | [GitHub][src] | Included |
174
+ | __Price__ / Upgrade | __Free__ | __$79__ / $29 [^3] |
175
+ | | [__Download__][kit] <br/>-- or --<br/> [__Deploy to Netlify__][nfy] | [__Buy PRO__][buy] |
139
176
 
140
177
 
141
178
 
142
- [^1]: You MAY open an issue on GitHub, but no response and/or fix is guaranteed.
143
- You understand that using Jekyll requires technical know-how and is not comparable to Wordpress in terms of ease of use. Please use the free version to confirm that Hydejack works for you. For details, see the [PRO] license.
179
+ [^1]: Actual page load speed depends on your hosting provider, resolution of embedded images and usage of 3rd party plugins.
180
+
181
+ [^2]: Large screens (> 1664px width) only.
182
+
183
+ [^3]: Upgrades from v8: Find your discount code in the latest zip download.
184
+
185
+ *[FLIP]: First-Last-Invert-Play. A coding technique to achieve performant page transition animations.
144
186
 
145
- [^2]: Actual page load speed depends on your hosting provider, resolution of embedded images and usage of 3rd party plugins.
146
187
 
147
188
  [blog]: https://hydejack.com/blog/
148
189
  [portfolio]: https://hydejack.com/projects/
@@ -151,30 +192,30 @@ This table below shows what's included in each version:
151
192
  [welcome]: https://hydejack.com/
152
193
  [forms]: https://hydejack.com/forms-by-example/
153
194
 
154
- [features]: #features
155
- [news]: #build-an-audience
156
- [syntax]: #syntax-highlighting
157
- [latex]: hydejack/_posts/2018-06-01-example-content-iii.md#math
158
- [darkm]: hydejack/_posts/2018-09-01-introducing-dark-mode.md
195
+ [features]: https://hydejack.com/#features
196
+ [news]: https://hydejack.com/#build-an-audience
197
+ [syntax]: https://hydejack.com/#syntax-highlighting
198
+ [latex]: https://hydejack.com/#beautiful-math
199
+ [dark]: https://hydejack.com/blog/hydejack/2018-09-01-introducing-dark-mode/
200
+ [search]: https://hydejack.com/#_search-input
201
+ [grid]: https://hydejack.com/blog/hydejack/
159
202
 
160
203
  [lic]: LICENSE.md
161
204
  [pro]: licenses/PRO.md
162
- [docs]: docs/README.md
163
- [ofln]: docs/advanced.md#enabling-offline-support
205
+ [docs]: https://hydejack.com/docs/
206
+ [ofln]: https://hydejack.com/docs/advanced/#enabling-offline-support
164
207
 
165
- [kit]: https://github.com/qwtel/hydejack-starter-kit/archive/v8.5.0.zip
166
- [src]: https://github.com/qwtel/hydejack
208
+ [kit]: https://github.com/hydecorp/hydejack-starter-kit/archive/v9.0.0-rc.6.zip
209
+ [src]: https://github.com/hydecorp/hydejack
167
210
  [gem]: https://rubygems.org/gems/jekyll-theme-hydejack
168
- [buy]: https://app.simplegoods.co/i/NATYVLYT
169
- [nfy]: https://app.netlify.com/start/deploy?repository=https://github.com/qwtel/hydejack-starter-kit
211
+ [buy]: https://gum.co/nuOluY
212
+ [nfy]: https://app.netlify.com/start/deploy?repository=https://github.com/hydecorp/hydejack-starter-kit
170
213
  [dtn]: https://www.netlify.com/img/deploy/button.svg
171
214
 
172
- [gpss]: https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fhydejack.com%2F
173
- [hy-push-state]: https://qwtel.com/hy-push-state/
174
- [hy-drawer]: https://qwtel.com/hy-drawer/
175
- [hy-img]: https://qwtel.com/hy-img/
215
+ [gpss]: https://developers.google.com/speed/pagespeed/insights/?url=https://hydejack.com/
216
+ [hy-push-state]: https://hydecorp.github.io/hy-push-state/
217
+ [hy-drawer]: https://hydecorp.github.io/hy-drawer/
176
218
  [rouge]: http://rouge.jneen.net
177
219
  [katex]: https://khan.github.io/KaTeX/
220
+ [mathjax]: https://www.mathjax.org/
178
221
  [tinyletter]: https://tinyletter.com/
179
-
180
- *[FLIP]: First-Last-Invert-Play. A coding technique to achieve performant page transition animations.