jekyll-theme-hydejack 6.6.1 → 7.0.0.pre.beta.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.md +617 -17
- data/README.md +18 -11
- data/_includes/about.html +3 -2
- data/_includes/author.html +18 -11
- data/_includes/avatar-tag.html +4 -0
- data/_includes/body.html +21 -31
- data/_includes/body/menu.html +11 -0
- data/_includes/body/scripts.html +18 -0
- data/_includes/comments.html +6 -4
- data/_includes/footer.html +3 -5
- data/_includes/head.html +4 -142
- data/_includes/head/links.html +25 -0
- data/_includes/head/meta.html +30 -0
- data/_includes/head/scripts.html +44 -0
- data/_includes/head/seo-fallback.html +13 -0
- data/_includes/head/seo-tag.html +4 -0
- data/_includes/head/styles.html +24 -0
- data/_includes/header.txt +1 -1
- data/_includes/link.html +9 -2
- data/_includes/message.html +12 -7
- data/_includes/my-scripts.html +14 -5
- data/_includes/nav.html +20 -13
- data/_includes/page-style.html +33 -3
- data/_includes/pagination.html +8 -12
- data/_includes/post-list-item.html +4 -6
- data/_includes/post.html +20 -13
- data/_includes/related-posts.html +23 -0
- data/_includes/scripts/load-disqus.js +1 -2
- data/_includes/scripts/load-disqus.min.js +1 -1
- data/_includes/scripts/load-js-deferred.js +47 -43
- data/_includes/scripts/load-js-deferred.min.js +1 -1
- data/_includes/sidebar.html +25 -14
- data/_includes/social-list-item.html +1 -1
- data/_includes/social.html +16 -10
- data/_includes/srcset-img.html +5 -5
- data/_includes/styles/inline.scss +31 -33
- data/_includes/styles/style.scss +69 -55
- data/_includes/tag-list.html +1 -1
- data/_includes/templates.html +32 -0
- data/_layouts/about.html +10 -3
- data/_layouts/base.html +17 -10
- data/_layouts/compress.html +3 -11
- data/_layouts/default.html +7 -5
- data/_layouts/home.html +7 -5
- data/_layouts/list.html +10 -4
- data/_layouts/not-found.html +14 -5
- data/_layouts/page.html +1 -1
- data/_layouts/post.html +12 -2
- data/_layouts/redirect.html +1 -1
- data/_sass/_mixins.scss +9 -3
- data/_sass/_reboot-mod.scss +286 -0
- data/_sass/_spinner.scss +23 -80
- data/_sass/_syntax.scss +1 -1
- data/_sass/_variables.scss +9 -11
- data/_sass/hydejack/__inline/_avatar.scss +27 -0
- data/_sass/hydejack/__inline/_base.scss +99 -0
- data/_sass/hydejack/__inline/_break-layout.scss +12 -0
- data/_sass/hydejack/__inline/_content.scss +43 -0
- data/_sass/hydejack/__inline/_footer.scss +12 -0
- data/_sass/hydejack/__inline/_katex.scss +12 -0
- data/_sass/hydejack/__inline/_mark-external.scss +36 -0
- data/_sass/hydejack/__inline/_menu.scss +50 -0
- data/_sass/hydejack/__inline/_sidebar.scss +129 -0
- data/_sass/hydejack/__inline/_social.scss +42 -0
- data/_sass/hydejack/__link/_avatar.scss +17 -0
- data/_sass/hydejack/__link/_base.scss +93 -0
- data/_sass/hydejack/__link/_break-layout.scss +69 -0
- data/_sass/hydejack/__link/_content.scss +12 -0
- data/_sass/hydejack/__link/_footer.scss +26 -0
- data/_sass/hydejack/__link/_katex.scss +45 -0
- data/_sass/hydejack/__link/_mark-external.scss +36 -0
- data/_sass/hydejack/__link/_menu.scss +37 -0
- data/_sass/hydejack/__link/_sidebar.scss +156 -0
- data/_sass/hydejack/__link/_social.scss +12 -0
- data/_sass/hydejack/_avatar.pre.scss +18 -0
- data/_sass/hydejack/_base.pre.scss +133 -0
- data/_sass/hydejack/_break-layout.pre.scss +58 -0
- data/_sass/hydejack/{_content-inline.scss → _content.pre.scss} +5 -5
- data/_sass/hydejack/{_footer-inline.scss → _footer.pre.scss} +2 -5
- data/_sass/hydejack/{_katex.scss → _katex.pre.scss} +6 -3
- data/_sass/hydejack/_mark-external.pre.scss +25 -0
- data/_sass/hydejack/_menu.pre.scss +53 -0
- data/_sass/hydejack/_sidebar.pre.scss +188 -0
- data/_sass/hydejack/{_social-inline.scss → _social.pre.scss} +6 -11
- data/_sass/pooleparty/{_base-inline.scss → __inline/_base.scss} +15 -17
- data/_sass/pooleparty/__inline/_code.scss +17 -0
- data/_sass/pooleparty/__inline/_footer.scss +12 -0
- data/_sass/pooleparty/__inline/_footnotes.scss +16 -0
- data/_sass/pooleparty/__inline/_message.scss +26 -0
- data/_sass/pooleparty/__inline/_pagination.scss +17 -0
- data/_sass/pooleparty/__inline/_posts.scss +41 -0
- data/_sass/pooleparty/__inline/_related.scss +25 -0
- data/_sass/pooleparty/__inline/_table.scss +39 -0
- data/_sass/pooleparty/__inline/_type.scss +83 -0
- data/_sass/pooleparty/__link/_base.scss +26 -0
- data/_sass/pooleparty/__link/_code.scss +54 -0
- data/_sass/pooleparty/__link/_footer.scss +12 -0
- data/_sass/pooleparty/__link/_footnotes.scss +57 -0
- data/_sass/pooleparty/__link/_message.scss +17 -0
- data/_sass/pooleparty/__link/_pagination.scss +78 -0
- data/_sass/pooleparty/__link/_posts.scss +30 -0
- data/_sass/pooleparty/__link/_related.scss +14 -0
- data/_sass/pooleparty/{_table.scss → __link/_table.scss} +71 -46
- data/_sass/pooleparty/__link/_type.scss +144 -0
- data/_sass/pooleparty/_base.pre.scss +54 -0
- data/_sass/pooleparty/_code.pre.scss +43 -0
- data/_sass/pooleparty/_footer.pre.scss +1 -0
- data/_sass/pooleparty/{_footnotes.scss → _footnotes.pre.scss} +17 -4
- data/_sass/pooleparty/{_message-inline.scss → _message.pre.scss} +2 -0
- data/_sass/pooleparty/{_pagination.scss → _pagination.pre.scss} +7 -6
- data/_sass/pooleparty/{_posts-inline.scss → _posts.pre.scss} +16 -15
- data/_sass/pooleparty/{_related-inline.scss → _related.pre.scss} +5 -6
- data/_sass/pooleparty/_table.pre.scss +161 -0
- data/_sass/pooleparty/_type.pre.scss +198 -0
- data/assets/icomoon/fonts/icomoon.eot +0 -0
- data/assets/icomoon/fonts/icomoon.svg +9 -3
- data/assets/icomoon/fonts/icomoon.ttf +0 -0
- data/assets/icomoon/fonts/icomoon.woff +0 -0
- data/assets/icomoon/selection.json +250 -76
- data/assets/icomoon/style.css +26 -8
- data/assets/icons/apple-touch-icon.png +0 -0
- data/assets/icons/favicon.ico +0 -0
- data/assets/icons/icon.png +0 -0
- data/assets/icons/icon@0,25x.png +0 -0
- data/assets/icons/icon@0,5x.png +0 -0
- data/assets/icons/icon@0,75x.png +0 -0
- data/assets/icons/icon@2x.png +0 -0
- data/assets/icons/icon@3x.png +0 -0
- data/assets/icons/tile-large.png +0 -0
- data/assets/icons/tile-medium.png +0 -0
- data/assets/icons/tile-small.png +0 -0
- data/assets/icons/tile-wide.png +0 -0
- data/assets/ieconfig.xml +15 -0
- data/assets/img/sidebar-bg.jpg +0 -0
- data/assets/js/hydejack.js +2 -2
- data/assets/manifest.json +45 -0
- data/assets/version.json +1 -1
- data/licenses/Apache-2.0.md +55 -47
- data/licenses/GPL-3.0.md +623 -0
- data/licenses/MIT.md +1 -0
- data/licenses/PRO.md +142 -0
- metadata +103 -99
- data/_includes/related.html +0 -41
- data/_includes/scripts.html +0 -17
- data/_sass/hydejack/_base-inline.scss +0 -143
- data/_sass/hydejack/_base.scss +0 -143
- data/_sass/hydejack/_drawer-inline.scss +0 -19
- data/_sass/hydejack/_drawer.scss +0 -19
- data/_sass/hydejack/_me-inline.scss +0 -24
- data/_sass/hydejack/_menu-inline.scss +0 -56
- data/_sass/hydejack/_menu.scss +0 -56
- data/_sass/hydejack/_sidebar-inline.scss +0 -118
- data/_sass/hydejack/_sidebar.scss +0 -115
- data/_sass/hydejack/_social.scss +0 -36
- data/_sass/hydejack/_toc.scss +0 -2
- data/_sass/pooleparty/_base.scss +0 -60
- data/_sass/pooleparty/_code.scss +0 -82
- data/_sass/pooleparty/_footer-inline.scss +0 -3
- data/_sass/pooleparty/_posts.scss +0 -41
- data/_sass/pooleparty/_table-inline.scss +0 -130
- data/_sass/pooleparty/_type-inline.scss +0 -124
- data/_sass/pooleparty/_type.scss +0 -124
- data/assets/icomoon/Read Me.txt +0 -7
- data/assets/icomoon/demo-files/demo.css +0 -152
- data/assets/icomoon/demo-files/demo.js +0 -30
- data/assets/icomoon/demo.html +0 -1206
- data/assets/img/nap.jpg +0 -0
- data/assets/img/projects/hyde-v1.jpg +0 -0
- data/assets/img/projects/hyde-v1@0,25x.jpg +0 -0
- data/assets/img/projects/hyde-v1@0,5x.jpg +0 -0
- data/assets/img/projects/hyde-v2.jpg +0 -0
- data/assets/img/projects/hyde-v2@0,25x.jpg +0 -0
- data/assets/img/projects/hyde-v2@0,5x.jpg +0 -0
- data/licenses/PRO-license.md +0 -147
data/assets/img/nap.jpg
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/licenses/PRO-license.md
DELETED
@@ -1,147 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: page
|
3
|
-
title: PRO License
|
4
|
-
redirect_from:
|
5
|
-
- /docs/latest/pro-license/
|
6
|
-
- /docs/pro-license/
|
7
|
-
---
|
8
|
-
|
9
|
-
## License Summary
|
10
|
-
* License does not expire
|
11
|
-
* Commercial use allowed
|
12
|
-
* Can modify source code
|
13
|
-
* Can sell license to one client
|
14
|
-
* Parts of software are provided under [separate licenses](../NOTICE.md#licenses)
|
15
|
-
|
16
|
-
## Terms and Conditions
|
17
|
-
1. **Preamble:** This Agreement governs the relationship between you (hereinafter: Licensee) and
|
18
|
-
Florian Klampfer / qwtel.com (hereinafter: Licensor).
|
19
|
-
This Agreement sets the terms, rights, restrictions and obligations on using
|
20
|
-
Hydejack PRO (hereinafter: The Software)
|
21
|
-
created and owned by Licensor, as detailed herein
|
22
|
-
|
23
|
-
2. **License Grant:** Licensor hereby grants Licensee a Personal, Assignable, Perpetual, Commercial, Royalty free,
|
24
|
-
Including the rights to create derivative works, Non-exclusive license, all with accordance with
|
25
|
-
the terms set forth and other legal restrictions set forth in 3rd party software used while running Software.
|
26
|
-
|
27
|
-
1. **Limited:** Licensee may use Software for the purpose of:
|
28
|
-
|
29
|
-
1. Running Software on Licensee’s Website[s] and Server[s];
|
30
|
-
2. Allowing 3rd Parties to run Software on Licensee’s Website[s] and Server[s];
|
31
|
-
3. Publishing Software’s output to Licensee and 3rd Parties;
|
32
|
-
4. Modify Software to suit Licensee’s needs and specifications.
|
33
|
-
|
34
|
-
2. This license is granted perpetually, as long as you do not materially breach it.
|
35
|
-
|
36
|
-
3. **Assignable:** Licensee may assign his rights and duties under this license as long as the party who Licensee
|
37
|
-
assigns the license accepts the license in full.
|
38
|
-
|
39
|
-
4. **Commercial, Royalty Free:** Licensee may use Software for any purpose, including paid-services, without any
|
40
|
-
royalties
|
41
|
-
|
42
|
-
5. **Including the Right to Create Derivative Works:** Licensee may create derivative works based on Software,
|
43
|
-
including amending Software’s source code, modifying it, integrating it into a larger work or removing portions of
|
44
|
-
Software.
|
45
|
-
|
46
|
-
3. **Term & Termination:** The Term of this license shall be until terminated. Licensor may terminate this Agreement,
|
47
|
-
including Licensee’s license in the case where Licensee:
|
48
|
-
|
49
|
-
1. became insolvent or otherwise entered into any liquidation process; or
|
50
|
-
|
51
|
-
2. exported The Software to any jurisdiction where licensor may not enforce his rights under this agreements in; or
|
52
|
-
|
53
|
-
3. Licensee was in breach of any of this license's terms and conditions and such breach was not cured, immediately
|
54
|
-
upon notification; or
|
55
|
-
|
56
|
-
4. Licensee in breach of any of the terms of clause 2 to this license; or
|
57
|
-
|
58
|
-
5. Licensee otherwise entered into any arrangement which caused Licensor to be unable to enforce his rights under
|
59
|
-
this License.
|
60
|
-
|
61
|
-
4. **Payment:** In consideration of the License granted under clause 2, Licensee shall pay Licensor a fee, via
|
62
|
-
Credit-Card or any other means which Licensor may deem adequate. Failure to perform payment shall construe as
|
63
|
-
material breach of this Agreement.
|
64
|
-
|
65
|
-
5. **Upgrades, Updates and Fixes:** Licensor may provide Licensee, from time to time, with Upgrades, Updates or Fixes,
|
66
|
-
as detailed herein and according to his sole discretion. Licensee hereby warrants to keep The Software up-to-date
|
67
|
-
and install all relevant updates and fixes, and may, at his sole discretion, purchase upgrades, according to the
|
68
|
-
rates set by Licensor. Licensor shall provide any update or Fix free of charge; however, nothing in this Agreement
|
69
|
-
shall require Licensor to provide Updates or Fixes.
|
70
|
-
|
71
|
-
1. **Upgrades:** for the purpose of this license, an Upgrade shall be a material amendment in The Software, which
|
72
|
-
contains new features and or major performance improvements and shall be marked as a new version number. For
|
73
|
-
example, should Licensee purchase The Software under version 1.X.X, an upgrade shall commence under number
|
74
|
-
2.0.0.
|
75
|
-
|
76
|
-
2. **Updates:** for the purpose of this license, an update shall be a minor amendment in The Software, which may
|
77
|
-
contain new features or minor improvements and shall be marked as a new sub-version number. For example, should
|
78
|
-
Licensee purchase The Software under version 1.1.X, an upgrade shall commence under number 1.2.0.
|
79
|
-
|
80
|
-
3. **Fix:** for the purpose of this license, a fix shall be a minor amendment in The Software, intended to remove
|
81
|
-
bugs or alter minor features which impair the The Software's functionality. A fix shall be marked as a new
|
82
|
-
sub-sub-version number. For example, should Licensee purchase Software under version 1.1.1, an upgrade shall
|
83
|
-
commence under number 1.1.2.
|
84
|
-
|
85
|
-
6. **Support:** Software is provided under an AS-IS basis and without any support, updates or maintenance. Nothing in
|
86
|
-
this Agreement shall require Licensor to provide Licensee with support or fixes to any bug, failure,
|
87
|
-
mis-performance or other defect in The Software.
|
88
|
-
|
89
|
-
1. **Bug Notification:** Licensee may provide Licensor of details regarding any bug, defect or failure in The
|
90
|
-
Software promptly and with no delay from such event; Licensee shall comply with Licensor's request for
|
91
|
-
information regarding bugs, defects or failures and furnish him with information, screenshots and try to
|
92
|
-
reproduce such bugs, defects or failures.
|
93
|
-
|
94
|
-
2. **Feature Request:** Licensee may request additional features in Software, provided, however, that:
|
95
|
-
|
96
|
-
1. Licensee shall waive any claim or right in such feature should feature be developed by Licensor;
|
97
|
-
|
98
|
-
2. Licensee shall be prohibited from developing the feature, or disclose such feature request, or feature, to
|
99
|
-
any 3rd party directly competing with Licensor or any 3rd party which may be, following the development of
|
100
|
-
such feature, in direct competition with Licensor;
|
101
|
-
|
102
|
-
3. Licensee warrants that feature does not infringe any 3rd party patent, trademark, trade-secret or any other
|
103
|
-
intellectual property right; and
|
104
|
-
|
105
|
-
4. Licensee developed, envisioned or created the feature solely by himself.
|
106
|
-
|
107
|
-
7. **Liability:** To the extent permitted under Law, The Software is provided under an AS-IS basis. Licensor shall
|
108
|
-
never, and without any limit, be liable for any damage, cost, expense or any other payment incurred by Licensee as
|
109
|
-
a result of Software’s actions, failure, bugs and/or any other interaction between The Software and Licensee’s
|
110
|
-
end-equipment, computers, other software or any 3rd party, end-equipment, computer or services. Moreover, Licensor
|
111
|
-
shall never be liable for any defect in source code written by Licensee when relying on The Software or using The
|
112
|
-
Software’s source code.
|
113
|
-
|
114
|
-
8. **Warranty:**
|
115
|
-
|
116
|
-
1. **Intellectual Property:** Licensor hereby warrants that The Software does not violate or infringe any 3rd
|
117
|
-
party claims in regards to intellectual property, patents and/or trademarks and that to the best of its
|
118
|
-
knowledge no legal action has been taken against it for any infringement or violation of any 3rd party
|
119
|
-
intellectual property rights.
|
120
|
-
|
121
|
-
2. **No-Warranty:** The Software is provided without any warranty; Licensor hereby disclaims any warranty that The
|
122
|
-
Software shall be error free, without defects or code which may cause damage to Licensee’s computers or to
|
123
|
-
Licensee, and that Software shall be functional. Licensee shall be solely liable to any damage, defect or loss
|
124
|
-
incurred as a result of operating software and undertake the risks contained in running The Software on
|
125
|
-
License’s Server[s] and Website[s].
|
126
|
-
|
127
|
-
3. **Prior Inspection:** Licensee hereby states that he inspected The Software thoroughly and found it
|
128
|
-
satisfactory and adequate to his needs, that it does not interfere with his regular operation and that it does
|
129
|
-
meet the standards and scope of his computer systems and architecture. Licensee found that The Software
|
130
|
-
interacts with his development, website and server environment and that it does not infringe any of End User
|
131
|
-
License Agreement of any software Licensee may use in performing his services. Licensee hereby waives any
|
132
|
-
claims regarding The Software's incompatibility, performance, results and features, and warrants that he
|
133
|
-
inspected the The Software.
|
134
|
-
|
135
|
-
9. **No Refunds:** Licensee warrants that he inspected The Software according to clause 8.3 and that it is adequate to
|
136
|
-
his needs. Accordingly, as The Software is intangible goods, Licensee shall not be, ever, entitled to any refund,
|
137
|
-
rebate, compensation or restitution for any reason whatsoever, even if The Software contains material flaws.
|
138
|
-
|
139
|
-
10. **Indemnification:** Licensee hereby warrants to hold Licensor harmless and indemnify Licensor for any lawsuit
|
140
|
-
brought against it in regards to Licensee’s use of The Software in means that violate, breach or otherwise
|
141
|
-
circumvent this license, Licensor's intellectual property rights or Licensor's title in The Software. Licensor
|
142
|
-
shall promptly notify Licensee in case of such legal action and request Licensee’s consent prior to any settlement
|
143
|
-
in relation to such lawsuit or claim.
|
144
|
-
|
145
|
-
11. **Governing Law, Jurisdiction:** Licensee hereby agrees not to initiate class-action lawsuits against Licensor in
|
146
|
-
relation to this license and to compensate Licensor for any legal fees, cost or attorney fees should any claim
|
147
|
-
brought by Licensee against Licensor be denied, in part or in full.
|