jekyll-theme-hydebetty 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (301) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +622 -0
  3. data/README.md +180 -0
  4. data/_includes/body/analytics.html +43 -0
  5. data/_includes/body/comments.html +6 -0
  6. data/_includes/body/footer.html +19 -0
  7. data/_includes/body/index.html +22 -0
  8. data/_includes/body/main.html +18 -0
  9. data/_includes/body/menu.html +24 -0
  10. data/_includes/body/nav.html +41 -0
  11. data/_includes/body/scripts.html +9 -0
  12. data/_includes/body/sidebar.html +47 -0
  13. data/_includes/components/about.html +8 -0
  14. data/_includes/components/author.html +24 -0
  15. data/_includes/components/avatar-tag.html +4 -0
  16. data/_includes/components/hy-img.html +40 -0
  17. data/_includes/components/link.html +12 -0
  18. data/_includes/components/message.html +14 -0
  19. data/_includes/components/pagination.html +15 -0
  20. data/_includes/components/post-list-item.html +7 -0
  21. data/_includes/components/post.html +49 -0
  22. data/_includes/components/related-posts.html +25 -0
  23. data/_includes/components/social-list-item.html +40 -0
  24. data/_includes/components/social.html +23 -0
  25. data/_includes/components/tag-list.html +26 -0
  26. data/_includes/head/feed-tag.html +1 -0
  27. data/_includes/head/index.html +9 -0
  28. data/_includes/head/links.html +33 -0
  29. data/_includes/head/meta.html +34 -0
  30. data/_includes/head/page-style.html +6 -0
  31. data/_includes/head/scripts.html +9 -0
  32. data/_includes/head/seo-fallback.html +13 -0
  33. data/_includes/head/seo-tag.html +4 -0
  34. data/_includes/head/styles.html +41 -0
  35. data/_includes/header.txt +13 -0
  36. data/_includes/icon-github.html +2 -0
  37. data/_includes/my-body.html +42 -0
  38. data/_includes/my-comments.html +24 -0
  39. data/_includes/my-head.html +13 -0
  40. data/_includes/my-scripts.html +55 -0
  41. data/_includes/scripts/cssrelpreload.min.js +1 -0
  42. data/_includes/scripts/load-js.js +60 -0
  43. data/_includes/scripts/load-js.min.js +0 -0
  44. data/_includes/scripts/loadCSS.min.js +1 -0
  45. data/_includes/scripts/nomodule.js +21 -0
  46. data/_includes/scripts/nomodule.min.js +0 -0
  47. data/_includes/scripts.html +33 -0
  48. data/_includes/smart-url.txt +1 -0
  49. data/_includes/styles/inline.scss +62 -0
  50. data/_includes/styles/page-style.scss +64 -0
  51. data/_includes/styles/style.scss +113 -0
  52. data/_includes/templates/animation.html +7 -0
  53. data/_includes/templates/back.html +6 -0
  54. data/_includes/templates/error.html +10 -0
  55. data/_includes/templates/forward.html +6 -0
  56. data/_includes/templates/index.html +12 -0
  57. data/_includes/templates/loading.html +6 -0
  58. data/_includes/templates/permalink.html +6 -0
  59. data/_layouts/about.html +43 -0
  60. data/_layouts/base.html +38 -0
  61. data/_layouts/blog.html +32 -0
  62. data/_layouts/compress.html +15 -0
  63. data/_layouts/default.html +56 -0
  64. data/_layouts/home.html +20 -0
  65. data/_layouts/list.html +46 -0
  66. data/_layouts/not-found.html +37 -0
  67. data/_layouts/page.html +27 -0
  68. data/_layouts/post.html +34 -0
  69. data/_layouts/redirect.html +23 -0
  70. data/_sass/_mixins.scss +63 -0
  71. data/_sass/_reboot-mod.scss +286 -0
  72. data/_sass/_spinner.scss +45 -0
  73. data/_sass/_syntax.scss +131 -0
  74. data/_sass/_variables.scss +63 -0
  75. data/_sass/hydejack/__inline__/_avatar.scss +48 -0
  76. data/_sass/hydejack/__inline__/_base.scss +73 -0
  77. data/_sass/hydejack/__inline__/_break-layout.scss +25 -0
  78. data/_sass/hydejack/__inline__/_content.scss +59 -0
  79. data/_sass/hydejack/__inline__/_footer.scss +25 -0
  80. data/_sass/hydejack/__inline__/_images.scss +38 -0
  81. data/_sass/hydejack/__inline__/_katex.scss +25 -0
  82. data/_sass/hydejack/__inline__/_links.scss +45 -0
  83. data/_sass/hydejack/__inline__/_mark-external.scss +25 -0
  84. data/_sass/hydejack/__inline__/_menu.scss +67 -0
  85. data/_sass/hydejack/__inline__/_sidebar.scss +144 -0
  86. data/_sass/hydejack/__inline__/_social.scss +58 -0
  87. data/_sass/hydejack/__inline__/_utilities.scss +45 -0
  88. data/_sass/hydejack/__link__/_avatar.scss +38 -0
  89. data/_sass/hydejack/__link__/_base.scss +42 -0
  90. data/_sass/hydejack/__link__/_break-layout.scss +64 -0
  91. data/_sass/hydejack/__link__/_content.scss +32 -0
  92. data/_sass/hydejack/__link__/_footer.scss +47 -0
  93. data/_sass/hydejack/__link__/_images.scss +90 -0
  94. data/_sass/hydejack/__link__/_katex.scss +57 -0
  95. data/_sass/hydejack/__link__/_links.scss +53 -0
  96. data/_sass/hydejack/__link__/_mark-external.scss +51 -0
  97. data/_sass/hydejack/__link__/_menu.scss +42 -0
  98. data/_sass/hydejack/__link__/_sidebar.scss +114 -0
  99. data/_sass/hydejack/__link__/_social.scss +33 -0
  100. data/_sass/hydejack/__link__/_utilities.scss +54 -0
  101. data/_sass/hydejack/_avatar.pre.scss +44 -0
  102. data/_sass/hydejack/_base.pre.scss +78 -0
  103. data/_sass/hydejack/_break-layout.pre.scss +55 -0
  104. data/_sass/hydejack/_content.pre.scss +56 -0
  105. data/_sass/hydejack/_footer.pre.scss +38 -0
  106. data/_sass/hydejack/_images.pre.scss +83 -0
  107. data/_sass/hydejack/_katex.pre.scss +48 -0
  108. data/_sass/hydejack/_links.pre.scss +47 -0
  109. data/_sass/hydejack/_mark-external.pre.scss +42 -0
  110. data/_sass/hydejack/_menu.pre.scss +74 -0
  111. data/_sass/hydejack/_sidebar.pre.scss +175 -0
  112. data/_sass/hydejack/_social.pre.scss +55 -0
  113. data/_sass/hydejack/_utilities.pre.scss +46 -0
  114. data/_sass/my-inline.scss +16 -0
  115. data/_sass/my-style.scss +9 -0
  116. data/_sass/my-variables.scss +1 -0
  117. data/_sass/pooleparty/__inline__/_base.scss +75 -0
  118. data/_sass/pooleparty/__inline__/_code.scss +25 -0
  119. data/_sass/pooleparty/__inline__/_footer.scss +25 -0
  120. data/_sass/pooleparty/__inline__/_footnotes.scss +25 -0
  121. data/_sass/pooleparty/__inline__/_message.scss +35 -0
  122. data/_sass/pooleparty/__inline__/_pagination.scss +25 -0
  123. data/_sass/pooleparty/__inline__/_posts.scss +49 -0
  124. data/_sass/pooleparty/__inline__/_read-more.scss +25 -0
  125. data/_sass/pooleparty/__inline__/_related.scss +38 -0
  126. data/_sass/pooleparty/__inline__/_table.scss +53 -0
  127. data/_sass/pooleparty/__inline__/_type.scss +88 -0
  128. data/_sass/pooleparty/__link__/_base.scss +40 -0
  129. data/_sass/pooleparty/__link__/_code.scss +75 -0
  130. data/_sass/pooleparty/__link__/_footer.scss +25 -0
  131. data/_sass/pooleparty/__link__/_footnotes.scss +80 -0
  132. data/_sass/pooleparty/__link__/_message.scss +25 -0
  133. data/_sass/pooleparty/__link__/_pagination.scss +90 -0
  134. data/_sass/pooleparty/__link__/_posts.scss +38 -0
  135. data/_sass/pooleparty/__link__/_read-more.scss +45 -0
  136. data/_sass/pooleparty/__link__/_related.scss +33 -0
  137. data/_sass/pooleparty/__link__/_table.scss +171 -0
  138. data/_sass/pooleparty/__link__/_type.scss +141 -0
  139. data/_sass/pooleparty/_base.pre.scss +74 -0
  140. data/_sass/pooleparty/_code.pre.scss +66 -0
  141. data/_sass/pooleparty/_footer.pre.scss +16 -0
  142. data/_sass/pooleparty/_footnotes.pre.scss +71 -0
  143. data/_sass/pooleparty/_message.pre.scss +26 -0
  144. data/_sass/pooleparty/_pagination.pre.scss +81 -0
  145. data/_sass/pooleparty/_posts.pre.scss +52 -0
  146. data/_sass/pooleparty/_read-more.pre.scss +36 -0
  147. data/_sass/pooleparty/_related.pre.scss +35 -0
  148. data/_sass/pooleparty/_table.pre.scss +180 -0
  149. data/_sass/pooleparty/_type.pre.scss +193 -0
  150. data/assets/Resume.pdf +0 -0
  151. data/assets/bower.json +11 -0
  152. data/assets/bower_components/html5shiv/.bower.json +26 -0
  153. data/assets/bower_components/html5shiv/Gruntfile.js +61 -0
  154. data/assets/bower_components/html5shiv/bower.json +15 -0
  155. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.js +524 -0
  156. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.min.js +4 -0
  157. data/assets/bower_components/html5shiv/dist/html5shiv.js +326 -0
  158. data/assets/bower_components/html5shiv/dist/html5shiv.min.js +4 -0
  159. data/assets/bower_components/html5shiv/package.json +16 -0
  160. data/assets/bower_components/katex/.bower.json +47 -0
  161. data/assets/bower_components/katex/LICENSE +21 -0
  162. data/assets/bower_components/katex/bower.json +36 -0
  163. data/assets/bower_components/katex/dist/contrib/auto-render.js +339 -0
  164. data/assets/bower_components/katex/dist/contrib/auto-render.min.js +1 -0
  165. data/assets/bower_components/katex/dist/contrib/auto-render.mjs +215 -0
  166. data/assets/bower_components/katex/dist/contrib/copy-tex.css +14 -0
  167. data/assets/bower_components/katex/dist/contrib/copy-tex.js +213 -0
  168. data/assets/bower_components/katex/dist/contrib/copy-tex.min.css +1 -0
  169. data/assets/bower_components/katex/dist/contrib/copy-tex.min.js +1 -0
  170. data/assets/bower_components/katex/dist/contrib/copy-tex.mjs +85 -0
  171. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.js +137 -0
  172. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.min.js +1 -0
  173. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.mjs +24 -0
  174. data/assets/bower_components/katex/dist/contrib/mhchem.js +3241 -0
  175. data/assets/bower_components/katex/dist/contrib/mhchem.min.js +1 -0
  176. data/assets/bower_components/katex/dist/contrib/mhchem.mjs +3109 -0
  177. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.ttf +0 -0
  178. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff +0 -0
  179. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  180. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  181. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  182. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  183. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  184. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  185. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  186. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  187. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  188. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  189. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  190. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  191. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  192. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.ttf +0 -0
  193. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff +0 -0
  194. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff2 +0 -0
  195. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  196. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  197. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  198. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.ttf +0 -0
  199. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff +0 -0
  200. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff2 +0 -0
  201. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.ttf +0 -0
  202. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff +0 -0
  203. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff2 +0 -0
  204. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  205. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  206. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  207. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.ttf +0 -0
  208. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff +0 -0
  209. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff2 +0 -0
  210. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  211. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  212. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  213. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  214. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  215. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  216. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  217. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  218. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  219. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.ttf +0 -0
  220. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff +0 -0
  221. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff2 +0 -0
  222. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.ttf +0 -0
  223. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff +0 -0
  224. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  225. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.ttf +0 -0
  226. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff +0 -0
  227. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  228. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.ttf +0 -0
  229. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff +0 -0
  230. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  231. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.ttf +0 -0
  232. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff +0 -0
  233. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  234. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  235. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  236. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  237. data/assets/bower_components/katex/dist/katex.css +1021 -0
  238. data/assets/bower_components/katex/dist/katex.js +16809 -0
  239. data/assets/bower_components/katex/dist/katex.min.css +1 -0
  240. data/assets/bower_components/katex/dist/katex.min.js +1 -0
  241. data/assets/bower_components/katex/dist/katex.mjs +16342 -0
  242. data/assets/bower_components/katex/yarn.lock +8952 -0
  243. data/assets/css/hydejack-7.5.2.css +3 -0
  244. data/assets/css/hydejack-8.5.2.css +3 -0
  245. data/assets/icomoon/fonts/icomoon.eot +0 -0
  246. data/assets/icomoon/fonts/icomoon.svg +96 -0
  247. data/assets/icomoon/fonts/icomoon.ttf +0 -0
  248. data/assets/icomoon/fonts/icomoon.woff +0 -0
  249. data/assets/icomoon/selection.json +1 -0
  250. data/assets/icomoon/style.css +284 -0
  251. data/assets/icons/favicon.ico +0 -0
  252. data/assets/icons/icon.png +0 -0
  253. data/assets/icons/icon@0,25x.png +0 -0
  254. data/assets/icons/icon@0,5x.png +0 -0
  255. data/assets/icons/icon@0,75x.png +0 -0
  256. data/assets/icons/icon@2x.png +0 -0
  257. data/assets/icons/icon@3x.png +0 -0
  258. data/assets/icons/tile-large.png +0 -0
  259. data/assets/icons/tile-medium.png +0 -0
  260. data/assets/icons/tile-small.png +0 -0
  261. data/assets/icons/tile-wide.png +0 -0
  262. data/assets/ieconfig.xml +15 -0
  263. data/assets/img/blog/COLOURlovers.com-Hydejack.png +0 -0
  264. data/assets/img/blog/blog-layout.jpg +0 -0
  265. data/assets/img/blog/caleb-george-old.jpg +0 -0
  266. data/assets/img/blog/caleb-george.jpg +0 -0
  267. data/assets/img/blog/cover-page.jpg +0 -0
  268. data/assets/img/blog/dark-mode-ii.jpg +0 -0
  269. data/assets/img/blog/dark-mode.jpg +0 -0
  270. data/assets/img/blog/example-content-ii.jpg +0 -0
  271. data/assets/img/blog/example-content-iii.jpg +0 -0
  272. data/assets/img/blog/hydejack-8.png +0 -0
  273. data/assets/img/blog/hydejack-8@0,25x.png +0 -0
  274. data/assets/img/blog/hydejack-8@0,5x.png +0 -0
  275. data/assets/img/blog/lazy-images.jpg +0 -0
  276. data/assets/img/blog/louis-hansel.jpg +0 -0
  277. data/assets/img/blog/resume.png +0 -0
  278. data/assets/img/blog/steve-harvey.jpg +0 -0
  279. data/assets/img/blog/w3m.png +0 -0
  280. data/assets/img/blog/wade-lambert.jpg +0 -0
  281. data/assets/img/docs/google-fonts.png +0 -0
  282. data/assets/img/projects/hy-drawer.svg +12 -0
  283. data/assets/img/projects/hy-img.svg +17 -0
  284. data/assets/img/projects/hy-push-state.svg +13 -0
  285. data/assets/img/sidebar-bg.jpg +0 -0
  286. data/assets/img/swipe.svg +22 -0
  287. data/assets/js/hydejack-8.5.2.js +161 -0
  288. data/assets/js/hydejack-legacy-8.5.2.js +190 -0
  289. data/assets/manifest.json +46 -0
  290. data/assets/version.json +3 -0
  291. data/assets/video/blog-layout.mp4 +0 -0
  292. data/assets/video/cover-page.mp4 +0 -0
  293. data/assets/video/dark-mode.mp4 +0 -0
  294. data/assets/video/lazy-images.mp4 +0 -0
  295. data/licenses/Apache-2.0.md +208 -0
  296. data/licenses/GPL-3.0.md +620 -0
  297. data/licenses/MIT.md +21 -0
  298. data/licenses/PRO.md +136 -0
  299. data/licenses/README.md +10 -0
  300. data/licenses/W3C.md +31 -0
  301. metadata +385 -0
data/licenses/MIT.md ADDED
@@ -0,0 +1,21 @@
1
+ # MIT License
2
+
3
+ Copyright (c) \<YEAR\> \<COPYRIGHT HOLDER\>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/licenses/PRO.md ADDED
@@ -0,0 +1,136 @@
1
+ # PRO License
2
+ ## License Summary
3
+ * License concerns use of [Hydejack PRO][1]
4
+ * License does not expire
5
+ * Commercial use allowed
6
+ * Can modify source code
7
+ * Parts of software are provided under [separate licenses](../NOTICE.md#licenses)
8
+
9
+ ## Terms and Conditions
10
+ ### 1. Preamble
11
+ This Agreement governs the relationship between you (hereinafter: Licensee) and
12
+ Florian Klampfer qwtel.com (hereinafter: Licensor).
13
+ This Agreement sets the terms, rights, restrictions and obligations on using
14
+ Hydejack PRO (hereinafter: The Software)
15
+ created and owned by Licensor, as detailed herein.
16
+
17
+ ### 2. License Grant
18
+ Licensor hereby grants Licensee a Personal, Perpetual, Commercial, Royalty free,
19
+ Including the rights to create derivative works, Non-exclusive license, all with accordance with
20
+ the terms set forth and other legal restrictions set forth in 3rd party software used while running Software.
21
+
22
+ 1. **Limited:** Licensee may use Software for the purpose of:
23
+
24
+ 1. Running Software on Licensee’s Website[s] and Server[s];
25
+ 2. Allowing 3rd Parties to run Software on Licensee’s Website[s] and Server[s];
26
+ 3. Publishing Software’s output to Licensee and 3rd Parties;
27
+ 4. Modify Software to suit Licensee’s needs and specifications.
28
+
29
+ 2. This license is granted perpetually, as long as you do not materially breach it.
30
+
31
+ 3. **Commercial, Royalty Free:** Licensee may use Software for any purpose, including paid-services, without any
32
+ royalties
33
+
34
+ 4. **Including the Right to Create Derivative Works:** Licensee may create derivative works based on Software,
35
+ including amending Software’s source code, modifying it, integrating it into a larger work or removing portions of
36
+ Software.
37
+
38
+ ### 3. Term & Termination:
39
+ The Term of this license shall be until terminated. Licensor may terminate this Agreement,
40
+ including Licensee’s license in the case where Licensee:
41
+
42
+ 1. became insolvent or otherwise entered into any liquidation process; or
43
+ 2. exported The Software to any jurisdiction where licensor may not enforce his rights under this agreements in; or
44
+ 3. Licensee was in breach of any of this license's terms and conditions and such breach was not cured, immediately
45
+ upon notification; or
46
+ 4. Licensee in breach of any of the terms of clause 2 to this license; or
47
+ 5. Licensee otherwise entered into any arrangement which caused Licensor to be unable to enforce his rights under
48
+ this License.
49
+
50
+ ### 4. Payment
51
+ In consideration of the License granted under clause 2, Licensee shall pay Licensor a fee, via
52
+ Credit-Card or any other means which Licensor may deem adequate. Failure to perform payment shall construe as
53
+ material breach of this Agreement.
54
+
55
+ ### 5. Upgrades, Updates and Fixes
56
+ Licensor may provide Licensee, from time to time, with Upgrades, Updates or Fixes,
57
+ as detailed herein and according to his sole discretion. Licensee hereby warrants to keep The Software up-to-date
58
+ and install all relevant updates and fixes, and may, at his sole discretion, purchase upgrades, according to the
59
+ rates set by Licensor. Licensor shall provide any update or Fix free of charge; however, nothing in this Agreement
60
+ shall require Licensor to provide Updates or Fixes.
61
+
62
+ 1. **Upgrades:** for the purpose of this license, an Upgrade shall be a material amendment in The Software, which
63
+ contains new features and or major performance improvements and shall be marked as a new version number. For
64
+ example, should Licensee purchase The Software under version 1.X.X, an upgrade shall commence under number
65
+ 2.0.0.
66
+
67
+ 2. **Updates:** for the purpose of this license, an update shall be a minor amendment in The Software, which may
68
+ contain new features or minor improvements and shall be marked as a new sub-version number. For example, should
69
+ Licensee purchase The Software under version 1.1.X, an upgrade shall commence under number 1.2.0.
70
+
71
+ 3. **Fix:** for the purpose of this license, a fix shall be a minor amendment in The Software, intended to remove
72
+ bugs or alter minor features which impair the The Software's functionality. A fix shall be marked as a new
73
+ sub-sub-version number. For example, should Licensee purchase Software under version 1.1.1, an upgrade shall
74
+ commence under number 1.1.2.
75
+
76
+ ### 6. Support
77
+ Software is provided under an AS-IS basis and without any support, updates or maintenance. Nothing in
78
+ this Agreement shall require Licensor to provide Licensee with support or fixes to any bug, failure,
79
+ mis-performance or other defect in The Software.
80
+
81
+ 1. **Bug Notification:** Licensee may provide Licensor of details regarding any bug, defect or failure in The
82
+ Software promptly and with no delay from such event; Licensee shall comply with Licensor's request for
83
+ information regarding bugs, defects or failures and furnish him with information, screenshots and try to
84
+ reproduce such bugs, defects or failures.
85
+
86
+ 2. **Feature Request:** Licensee may request additional features in Software, provided, however, that:
87
+
88
+ 1. Licensee shall waive any claim or right in such feature should feature be developed by Licensor;
89
+ 2. Licensee shall be prohibited from developing the feature, or disclose such feature request, or feature, to
90
+ any 3rd party directly competing with Licensor or any 3rd party which may be, following the development of
91
+ such feature, in direct competition with Licensor;
92
+ 3. Licensee warrants that feature does not infringe any 3rd party patent, trademark, trade-secret or any other
93
+ intellectual property right; and
94
+ 4. Licensee developed, envisioned or created the feature solely by himself.
95
+
96
+ ### 7. Liability
97
+ To the extent permitted under Law, The Software is provided under an AS-IS basis. Licensor shall
98
+ never, and without any limit, be liable for any damage, cost, expense or any other payment incurred by Licensee as
99
+ a result of Software’s actions, failure, bugs and/or any other interaction between The Software and Licensee’s
100
+ end-equipment, computers, other software or any 3rd party, end-equipment, computer or services. Moreover, Licensor
101
+ shall never be liable for any defect in source code written by Licensee when relying on The Software or using The
102
+ Software’s source code.
103
+
104
+ ### 8. Warranty
105
+ 1. **No-Warranty:** The Software is provided without any warranty; Licensor hereby disclaims any warranty that The
106
+ Software shall be error free, without defects or code which may cause damage to Licensee’s computers or to
107
+ Licensee, and that Software shall be functional. Licensee shall be solely liable to any damage, defect or loss
108
+ incurred as a result of operating software and undertake the risks contained in running The Software on
109
+ License’s Server[s] and Website[s].
110
+
111
+ 2. **Prior Inspection:** Licensee hereby states that he inspected The Software thoroughly and found it
112
+ satisfactory and adequate to his needs, that it does not interfere with his regular operation and that it does
113
+ meet the standards and scope of his computer systems and architecture. Licensee found that The Software
114
+ interacts with his development, website and server environment and that it does not infringe any of End User
115
+ License Agreement of any software Licensee may use in performing his services. Licensee hereby waives any
116
+ claims regarding The Software's incompatibility, performance, results and features, and warrants that he
117
+ inspected the The Software.
118
+
119
+ ### 9. No Refunds
120
+ Licensee warrants that he inspected The Software according to clause 8.2 and that it is adequate to
121
+ his needs. Accordingly, as The Software is intangible goods, Licensee shall not be, ever, entitled to any refund,
122
+ rebate, compensation or restitution for any reason whatsoever, even if The Software contains material flaws.
123
+
124
+ ### 10. Indemnification
125
+ Licensee hereby warrants to hold Licensor harmless and indemnify Licensor for any lawsuit
126
+ brought against it in regards to Licensee’s use of The Software in means that violate, breach or otherwise
127
+ circumvent this license, Licensor's intellectual property rights or Licensor's title in The Software. Licensor
128
+ shall promptly notify Licensee in case of such legal action and request Licensee’s consent prior to any settlement
129
+ in relation to such lawsuit or claim.
130
+
131
+ ### 11. Governing Law, Jurisdiction
132
+ Licensee hereby agrees not to initiate class-action lawsuits against Licensor in
133
+ relation to this license and to compensate Licensor for any legal fees, cost or attorney fees should any claim
134
+ brought by Licensee against Licensor be denied, in part or in full.
135
+
136
+ [1]: https://hydejack.com/
@@ -0,0 +1,10 @@
1
+ # Licenses
2
+
3
+ ## Open Source
4
+ * [Apache-2.0](./Apache-2.0.md)
5
+ * [GPL-3.0](./GPL-3.0.md)
6
+ * [MIT](./MIT.md)
7
+ * [W3C](./W3C.md)
8
+
9
+ ## Custom
10
+ * [PRO](./PRO.md)
data/licenses/W3C.md ADDED
@@ -0,0 +1,31 @@
1
+ # W3C SOFTWARE NOTICE AND LICENSE
2
+
3
+ **Status**: This license takes effect 13 May, 2015.
4
+
5
+ This work is being provided by the copyright holders under the following license.
6
+
7
+ ## License
8
+
9
+ By obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.
10
+
11
+ Permission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:
12
+
13
+ * The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.
14
+ * Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.
15
+ * Notice of any changes or modifications, through a copyright statement on the new code or document such as "This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang)."
16
+
17
+ ## Disclaimers
18
+
19
+ THIS WORK IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
20
+
21
+ COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.
22
+
23
+ The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders.
24
+
25
+ ## Notes
26
+
27
+ This version: <http://www.w3.org/Consortium/Legal/2015/copyright-software-and-document>
28
+
29
+ Previous version: <http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231>
30
+
31
+ This version makes clear that the license is applicable to both software and text, by changing the name and substituting "work" for instances of "software and its documentation." It moves "notice of changes or modifications to the files" to the copyright notice, to make clear that the license is compatible with other liberal licenses.
metadata ADDED
@@ -0,0 +1,385 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-hydebetty
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Betty
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-09-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - betty@yopmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.md
63
+ - README.md
64
+ - _includes/body/analytics.html
65
+ - _includes/body/comments.html
66
+ - _includes/body/footer.html
67
+ - _includes/body/index.html
68
+ - _includes/body/main.html
69
+ - _includes/body/menu.html
70
+ - _includes/body/nav.html
71
+ - _includes/body/scripts.html
72
+ - _includes/body/sidebar.html
73
+ - _includes/components/about.html
74
+ - _includes/components/author.html
75
+ - _includes/components/avatar-tag.html
76
+ - _includes/components/hy-img.html
77
+ - _includes/components/link.html
78
+ - _includes/components/message.html
79
+ - _includes/components/pagination.html
80
+ - _includes/components/post-list-item.html
81
+ - _includes/components/post.html
82
+ - _includes/components/related-posts.html
83
+ - _includes/components/social-list-item.html
84
+ - _includes/components/social.html
85
+ - _includes/components/tag-list.html
86
+ - _includes/head/feed-tag.html
87
+ - _includes/head/index.html
88
+ - _includes/head/links.html
89
+ - _includes/head/meta.html
90
+ - _includes/head/page-style.html
91
+ - _includes/head/scripts.html
92
+ - _includes/head/seo-fallback.html
93
+ - _includes/head/seo-tag.html
94
+ - _includes/head/styles.html
95
+ - _includes/header.txt
96
+ - _includes/icon-github.html
97
+ - _includes/my-body.html
98
+ - _includes/my-comments.html
99
+ - _includes/my-head.html
100
+ - _includes/my-scripts.html
101
+ - _includes/scripts.html
102
+ - _includes/scripts/cssrelpreload.min.js
103
+ - _includes/scripts/load-js.js
104
+ - _includes/scripts/load-js.min.js
105
+ - _includes/scripts/loadCSS.min.js
106
+ - _includes/scripts/nomodule.js
107
+ - _includes/scripts/nomodule.min.js
108
+ - _includes/smart-url.txt
109
+ - _includes/styles/inline.scss
110
+ - _includes/styles/page-style.scss
111
+ - _includes/styles/style.scss
112
+ - _includes/templates/animation.html
113
+ - _includes/templates/back.html
114
+ - _includes/templates/error.html
115
+ - _includes/templates/forward.html
116
+ - _includes/templates/index.html
117
+ - _includes/templates/loading.html
118
+ - _includes/templates/permalink.html
119
+ - _layouts/about.html
120
+ - _layouts/base.html
121
+ - _layouts/blog.html
122
+ - _layouts/compress.html
123
+ - _layouts/default.html
124
+ - _layouts/home.html
125
+ - _layouts/list.html
126
+ - _layouts/not-found.html
127
+ - _layouts/page.html
128
+ - _layouts/post.html
129
+ - _layouts/redirect.html
130
+ - _sass/_mixins.scss
131
+ - _sass/_reboot-mod.scss
132
+ - _sass/_spinner.scss
133
+ - _sass/_syntax.scss
134
+ - _sass/_variables.scss
135
+ - _sass/hydejack/__inline__/_avatar.scss
136
+ - _sass/hydejack/__inline__/_base.scss
137
+ - _sass/hydejack/__inline__/_break-layout.scss
138
+ - _sass/hydejack/__inline__/_content.scss
139
+ - _sass/hydejack/__inline__/_footer.scss
140
+ - _sass/hydejack/__inline__/_images.scss
141
+ - _sass/hydejack/__inline__/_katex.scss
142
+ - _sass/hydejack/__inline__/_links.scss
143
+ - _sass/hydejack/__inline__/_mark-external.scss
144
+ - _sass/hydejack/__inline__/_menu.scss
145
+ - _sass/hydejack/__inline__/_sidebar.scss
146
+ - _sass/hydejack/__inline__/_social.scss
147
+ - _sass/hydejack/__inline__/_utilities.scss
148
+ - _sass/hydejack/__link__/_avatar.scss
149
+ - _sass/hydejack/__link__/_base.scss
150
+ - _sass/hydejack/__link__/_break-layout.scss
151
+ - _sass/hydejack/__link__/_content.scss
152
+ - _sass/hydejack/__link__/_footer.scss
153
+ - _sass/hydejack/__link__/_images.scss
154
+ - _sass/hydejack/__link__/_katex.scss
155
+ - _sass/hydejack/__link__/_links.scss
156
+ - _sass/hydejack/__link__/_mark-external.scss
157
+ - _sass/hydejack/__link__/_menu.scss
158
+ - _sass/hydejack/__link__/_sidebar.scss
159
+ - _sass/hydejack/__link__/_social.scss
160
+ - _sass/hydejack/__link__/_utilities.scss
161
+ - _sass/hydejack/_avatar.pre.scss
162
+ - _sass/hydejack/_base.pre.scss
163
+ - _sass/hydejack/_break-layout.pre.scss
164
+ - _sass/hydejack/_content.pre.scss
165
+ - _sass/hydejack/_footer.pre.scss
166
+ - _sass/hydejack/_images.pre.scss
167
+ - _sass/hydejack/_katex.pre.scss
168
+ - _sass/hydejack/_links.pre.scss
169
+ - _sass/hydejack/_mark-external.pre.scss
170
+ - _sass/hydejack/_menu.pre.scss
171
+ - _sass/hydejack/_sidebar.pre.scss
172
+ - _sass/hydejack/_social.pre.scss
173
+ - _sass/hydejack/_utilities.pre.scss
174
+ - _sass/my-inline.scss
175
+ - _sass/my-style.scss
176
+ - _sass/my-variables.scss
177
+ - _sass/pooleparty/__inline__/_base.scss
178
+ - _sass/pooleparty/__inline__/_code.scss
179
+ - _sass/pooleparty/__inline__/_footer.scss
180
+ - _sass/pooleparty/__inline__/_footnotes.scss
181
+ - _sass/pooleparty/__inline__/_message.scss
182
+ - _sass/pooleparty/__inline__/_pagination.scss
183
+ - _sass/pooleparty/__inline__/_posts.scss
184
+ - _sass/pooleparty/__inline__/_read-more.scss
185
+ - _sass/pooleparty/__inline__/_related.scss
186
+ - _sass/pooleparty/__inline__/_table.scss
187
+ - _sass/pooleparty/__inline__/_type.scss
188
+ - _sass/pooleparty/__link__/_base.scss
189
+ - _sass/pooleparty/__link__/_code.scss
190
+ - _sass/pooleparty/__link__/_footer.scss
191
+ - _sass/pooleparty/__link__/_footnotes.scss
192
+ - _sass/pooleparty/__link__/_message.scss
193
+ - _sass/pooleparty/__link__/_pagination.scss
194
+ - _sass/pooleparty/__link__/_posts.scss
195
+ - _sass/pooleparty/__link__/_read-more.scss
196
+ - _sass/pooleparty/__link__/_related.scss
197
+ - _sass/pooleparty/__link__/_table.scss
198
+ - _sass/pooleparty/__link__/_type.scss
199
+ - _sass/pooleparty/_base.pre.scss
200
+ - _sass/pooleparty/_code.pre.scss
201
+ - _sass/pooleparty/_footer.pre.scss
202
+ - _sass/pooleparty/_footnotes.pre.scss
203
+ - _sass/pooleparty/_message.pre.scss
204
+ - _sass/pooleparty/_pagination.pre.scss
205
+ - _sass/pooleparty/_posts.pre.scss
206
+ - _sass/pooleparty/_read-more.pre.scss
207
+ - _sass/pooleparty/_related.pre.scss
208
+ - _sass/pooleparty/_table.pre.scss
209
+ - _sass/pooleparty/_type.pre.scss
210
+ - assets/Resume.pdf
211
+ - assets/bower.json
212
+ - assets/bower_components/html5shiv/.bower.json
213
+ - assets/bower_components/html5shiv/Gruntfile.js
214
+ - assets/bower_components/html5shiv/bower.json
215
+ - assets/bower_components/html5shiv/dist/html5shiv-printshiv.js
216
+ - assets/bower_components/html5shiv/dist/html5shiv-printshiv.min.js
217
+ - assets/bower_components/html5shiv/dist/html5shiv.js
218
+ - assets/bower_components/html5shiv/dist/html5shiv.min.js
219
+ - assets/bower_components/html5shiv/package.json
220
+ - assets/bower_components/katex/.bower.json
221
+ - assets/bower_components/katex/LICENSE
222
+ - assets/bower_components/katex/bower.json
223
+ - assets/bower_components/katex/dist/contrib/auto-render.js
224
+ - assets/bower_components/katex/dist/contrib/auto-render.min.js
225
+ - assets/bower_components/katex/dist/contrib/auto-render.mjs
226
+ - assets/bower_components/katex/dist/contrib/copy-tex.css
227
+ - assets/bower_components/katex/dist/contrib/copy-tex.js
228
+ - assets/bower_components/katex/dist/contrib/copy-tex.min.css
229
+ - assets/bower_components/katex/dist/contrib/copy-tex.min.js
230
+ - assets/bower_components/katex/dist/contrib/copy-tex.mjs
231
+ - assets/bower_components/katex/dist/contrib/mathtex-script-type.js
232
+ - assets/bower_components/katex/dist/contrib/mathtex-script-type.min.js
233
+ - assets/bower_components/katex/dist/contrib/mathtex-script-type.mjs
234
+ - assets/bower_components/katex/dist/contrib/mhchem.js
235
+ - assets/bower_components/katex/dist/contrib/mhchem.min.js
236
+ - assets/bower_components/katex/dist/contrib/mhchem.mjs
237
+ - assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.ttf
238
+ - assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff
239
+ - assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff2
240
+ - assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf
241
+ - assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff
242
+ - assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2
243
+ - assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf
244
+ - assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff
245
+ - assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2
246
+ - assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf
247
+ - assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff
248
+ - assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2
249
+ - assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf
250
+ - assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff
251
+ - assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2
252
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.ttf
253
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff
254
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff2
255
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf
256
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff
257
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2
258
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.ttf
259
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff
260
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff2
261
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.ttf
262
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff
263
+ - assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff2
264
+ - assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf
265
+ - assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff
266
+ - assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2
267
+ - assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.ttf
268
+ - assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff
269
+ - assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff2
270
+ - assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf
271
+ - assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff
272
+ - assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2
273
+ - assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf
274
+ - assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff
275
+ - assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2
276
+ - assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf
277
+ - assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff
278
+ - assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2
279
+ - assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.ttf
280
+ - assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff
281
+ - assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff2
282
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.ttf
283
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff
284
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff2
285
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.ttf
286
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff
287
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff2
288
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.ttf
289
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff
290
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff2
291
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.ttf
292
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff
293
+ - assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff2
294
+ - assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf
295
+ - assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff
296
+ - assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2
297
+ - assets/bower_components/katex/dist/katex.css
298
+ - assets/bower_components/katex/dist/katex.js
299
+ - assets/bower_components/katex/dist/katex.min.css
300
+ - assets/bower_components/katex/dist/katex.min.js
301
+ - assets/bower_components/katex/dist/katex.mjs
302
+ - assets/bower_components/katex/yarn.lock
303
+ - assets/css/hydejack-7.5.2.css
304
+ - assets/css/hydejack-8.5.2.css
305
+ - assets/icomoon/fonts/icomoon.eot
306
+ - assets/icomoon/fonts/icomoon.svg
307
+ - assets/icomoon/fonts/icomoon.ttf
308
+ - assets/icomoon/fonts/icomoon.woff
309
+ - assets/icomoon/selection.json
310
+ - assets/icomoon/style.css
311
+ - assets/icons/favicon.ico
312
+ - assets/icons/icon.png
313
+ - assets/icons/icon@0,25x.png
314
+ - assets/icons/icon@0,5x.png
315
+ - assets/icons/icon@0,75x.png
316
+ - assets/icons/icon@2x.png
317
+ - assets/icons/icon@3x.png
318
+ - assets/icons/tile-large.png
319
+ - assets/icons/tile-medium.png
320
+ - assets/icons/tile-small.png
321
+ - assets/icons/tile-wide.png
322
+ - assets/ieconfig.xml
323
+ - assets/img/blog/COLOURlovers.com-Hydejack.png
324
+ - assets/img/blog/blog-layout.jpg
325
+ - assets/img/blog/caleb-george-old.jpg
326
+ - assets/img/blog/caleb-george.jpg
327
+ - assets/img/blog/cover-page.jpg
328
+ - assets/img/blog/dark-mode-ii.jpg
329
+ - assets/img/blog/dark-mode.jpg
330
+ - assets/img/blog/example-content-ii.jpg
331
+ - assets/img/blog/example-content-iii.jpg
332
+ - assets/img/blog/hydejack-8.png
333
+ - assets/img/blog/hydejack-8@0,25x.png
334
+ - assets/img/blog/hydejack-8@0,5x.png
335
+ - assets/img/blog/lazy-images.jpg
336
+ - assets/img/blog/louis-hansel.jpg
337
+ - assets/img/blog/resume.png
338
+ - assets/img/blog/steve-harvey.jpg
339
+ - assets/img/blog/w3m.png
340
+ - assets/img/blog/wade-lambert.jpg
341
+ - assets/img/docs/google-fonts.png
342
+ - assets/img/projects/hy-drawer.svg
343
+ - assets/img/projects/hy-img.svg
344
+ - assets/img/projects/hy-push-state.svg
345
+ - assets/img/sidebar-bg.jpg
346
+ - assets/img/swipe.svg
347
+ - assets/js/hydejack-8.5.2.js
348
+ - assets/js/hydejack-legacy-8.5.2.js
349
+ - assets/manifest.json
350
+ - assets/version.json
351
+ - assets/video/blog-layout.mp4
352
+ - assets/video/cover-page.mp4
353
+ - assets/video/dark-mode.mp4
354
+ - assets/video/lazy-images.mp4
355
+ - licenses/Apache-2.0.md
356
+ - licenses/GPL-3.0.md
357
+ - licenses/MIT.md
358
+ - licenses/PRO.md
359
+ - licenses/README.md
360
+ - licenses/W3C.md
361
+ homepage:
362
+ licenses:
363
+ - GPL-3.0
364
+ metadata: {}
365
+ post_install_message:
366
+ rdoc_options: []
367
+ require_paths:
368
+ - lib
369
+ required_ruby_version: !ruby/object:Gem::Requirement
370
+ requirements:
371
+ - - "~>"
372
+ - !ruby/object:Gem::Version
373
+ version: '2.2'
374
+ required_rubygems_version: !ruby/object:Gem::Requirement
375
+ requirements:
376
+ - - ">="
377
+ - !ruby/object:Gem::Version
378
+ version: '0'
379
+ requirements: []
380
+ rubyforge_project:
381
+ rubygems_version: 2.5.2.3
382
+ signing_key:
383
+ specification_version: 4
384
+ summary: "\"My Jekyll Theme"
385
+ test_files: []