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/licenses/MIT.md
CHANGED
data/licenses/PRO.md
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
title: PRO License
|
4
|
+
---
|
5
|
+
|
6
|
+
## License Summary
|
7
|
+
* License does not expire
|
8
|
+
* Commercial use allowed
|
9
|
+
* Can modify source code
|
10
|
+
* Parts of software are provided under [separate licenses](../NOTICE.md#licenses)
|
11
|
+
|
12
|
+
## Terms and Conditions
|
13
|
+
### 1. Preamble
|
14
|
+
This Agreement governs the relationship between you (hereinafter: Licensee) and
|
15
|
+
Florian Klampfer qwtel.com (hereinafter: Licensor).
|
16
|
+
This Agreement sets the terms, rights, restrictions and obligations on using
|
17
|
+
Hydejack PRO (hereinafter: The Software)
|
18
|
+
created and owned by Licensor, as detailed herein
|
19
|
+
|
20
|
+
### 2. License Grant
|
21
|
+
Licensor hereby grants Licensee a Personal, Perpetual, Commercial, Royalty free,
|
22
|
+
Including the rights to create derivative works, Non-exclusive license, all with accordance with
|
23
|
+
the terms set forth and other legal restrictions set forth in 3rd party software used while running Software.
|
24
|
+
|
25
|
+
1. **Limited:** Licensee may use Software for the purpose of:
|
26
|
+
|
27
|
+
1. Running Software on Licensee’s Website[s] and Server[s];
|
28
|
+
2. Allowing 3rd Parties to run Software on Licensee’s Website[s] and Server[s];
|
29
|
+
3. Publishing Software’s output to Licensee and 3rd Parties;
|
30
|
+
4. Modify Software to suit Licensee’s needs and specifications.
|
31
|
+
|
32
|
+
2. This license is granted perpetually, as long as you do not materially breach it.
|
33
|
+
|
34
|
+
3. **Commercial, Royalty Free:** Licensee may use Software for any purpose, including paid-services, without any
|
35
|
+
royalties
|
36
|
+
|
37
|
+
4. **Including the Right to Create Derivative Works:** Licensee may create derivative works based on Software,
|
38
|
+
including amending Software’s source code, modifying it, integrating it into a larger work or removing portions of
|
39
|
+
Software.
|
40
|
+
|
41
|
+
### 3. Term & Termination:
|
42
|
+
The Term of this license shall be until terminated. Licensor may terminate this Agreement,
|
43
|
+
including Licensee’s license in the case where Licensee:
|
44
|
+
|
45
|
+
1. became insolvent or otherwise entered into any liquidation process; or
|
46
|
+
2. exported The Software to any jurisdiction where licensor may not enforce his rights under this agreements in; or
|
47
|
+
3. Licensee was in breach of any of this license's terms and conditions and such breach was not cured, immediately
|
48
|
+
upon notification; or
|
49
|
+
4. Licensee in breach of any of the terms of clause 2 to this license; or
|
50
|
+
5. Licensee otherwise entered into any arrangement which caused Licensor to be unable to enforce his rights under
|
51
|
+
this License.
|
52
|
+
|
53
|
+
### 4. Payment
|
54
|
+
In consideration of the License granted under clause 2, Licensee shall pay Licensor a fee, via
|
55
|
+
Credit-Card or any other means which Licensor may deem adequate. Failure to perform payment shall construe as
|
56
|
+
material breach of this Agreement.
|
57
|
+
|
58
|
+
### 5. Upgrades, Updates and Fixes
|
59
|
+
Licensor may provide Licensee, from time to time, with Upgrades, Updates or Fixes,
|
60
|
+
as detailed herein and according to his sole discretion. Licensee hereby warrants to keep The Software up-to-date
|
61
|
+
and install all relevant updates and fixes, and may, at his sole discretion, purchase upgrades, according to the
|
62
|
+
rates set by Licensor. Licensor shall provide any update or Fix free of charge; however, nothing in this Agreement
|
63
|
+
shall require Licensor to provide Updates or Fixes.
|
64
|
+
|
65
|
+
1. **Upgrades:** for the purpose of this license, an Upgrade shall be a material amendment in The Software, which
|
66
|
+
contains new features and or major performance improvements and shall be marked as a new version number. For
|
67
|
+
example, should Licensee purchase The Software under version 1.X.X, an upgrade shall commence under number
|
68
|
+
2.0.0.
|
69
|
+
|
70
|
+
2. **Updates:** for the purpose of this license, an update shall be a minor amendment in The Software, which may
|
71
|
+
contain new features or minor improvements and shall be marked as a new sub-version number. For example, should
|
72
|
+
Licensee purchase The Software under version 1.1.X, an upgrade shall commence under number 1.2.0.
|
73
|
+
|
74
|
+
3. **Fix:** for the purpose of this license, a fix shall be a minor amendment in The Software, intended to remove
|
75
|
+
bugs or alter minor features which impair the The Software's functionality. A fix shall be marked as a new
|
76
|
+
sub-sub-version number. For example, should Licensee purchase Software under version 1.1.1, an upgrade shall
|
77
|
+
commence under number 1.1.2.
|
78
|
+
|
79
|
+
### 6. Support
|
80
|
+
Software is provided under an AS-IS basis and without any support, updates or maintenance. Nothing in
|
81
|
+
this Agreement shall require Licensor to provide Licensee with support or fixes to any bug, failure,
|
82
|
+
mis-performance or other defect in The Software.
|
83
|
+
|
84
|
+
1. **Bug Notification:** Licensee may provide Licensor of details regarding any bug, defect or failure in The
|
85
|
+
Software promptly and with no delay from such event; Licensee shall comply with Licensor's request for
|
86
|
+
information regarding bugs, defects or failures and furnish him with information, screenshots and try to
|
87
|
+
reproduce such bugs, defects or failures.
|
88
|
+
|
89
|
+
2. **Feature Request:** Licensee may request additional features in Software, provided, however, that:
|
90
|
+
|
91
|
+
1. Licensee shall waive any claim or right in such feature should feature be developed by Licensor;
|
92
|
+
2. Licensee shall be prohibited from developing the feature, or disclose such feature request, or feature, to
|
93
|
+
any 3rd party directly competing with Licensor or any 3rd party which may be, following the development of
|
94
|
+
such feature, in direct competition with Licensor;
|
95
|
+
3. Licensee warrants that feature does not infringe any 3rd party patent, trademark, trade-secret or any other
|
96
|
+
intellectual property right; and
|
97
|
+
4. Licensee developed, envisioned or created the feature solely by himself.
|
98
|
+
|
99
|
+
### 7. Liability
|
100
|
+
To the extent permitted under Law, The Software is provided under an AS-IS basis. Licensor shall
|
101
|
+
never, and without any limit, be liable for any damage, cost, expense or any other payment incurred by Licensee as
|
102
|
+
a result of Software’s actions, failure, bugs and/or any other interaction between The Software and Licensee’s
|
103
|
+
end-equipment, computers, other software or any 3rd party, end-equipment, computer or services. Moreover, Licensor
|
104
|
+
shall never be liable for any defect in source code written by Licensee when relying on The Software or using The
|
105
|
+
Software’s source code.
|
106
|
+
|
107
|
+
### 8. Warranty
|
108
|
+
1. **Intellectual Property:** Licensor hereby warrants that The Software does not violate or infringe any 3rd
|
109
|
+
party claims in regards to intellectual property, patents and/or trademarks and that to the best of its
|
110
|
+
knowledge no legal action has been taken against it for any infringement or violation of any 3rd party
|
111
|
+
intellectual property rights.
|
112
|
+
|
113
|
+
2. **No-Warranty:** The Software is provided without any warranty; Licensor hereby disclaims any warranty that The
|
114
|
+
Software shall be error free, without defects or code which may cause damage to Licensee’s computers or to
|
115
|
+
Licensee, and that Software shall be functional. Licensee shall be solely liable to any damage, defect or loss
|
116
|
+
incurred as a result of operating software and undertake the risks contained in running The Software on
|
117
|
+
License’s Server[s] and Website[s].
|
118
|
+
|
119
|
+
3. **Prior Inspection:** Licensee hereby states that he inspected The Software thoroughly and found it
|
120
|
+
satisfactory and adequate to his needs, that it does not interfere with his regular operation and that it does
|
121
|
+
meet the standards and scope of his computer systems and architecture. Licensee found that The Software
|
122
|
+
interacts with his development, website and server environment and that it does not infringe any of End User
|
123
|
+
License Agreement of any software Licensee may use in performing his services. Licensee hereby waives any
|
124
|
+
claims regarding The Software's incompatibility, performance, results and features, and warrants that he
|
125
|
+
inspected the The Software.
|
126
|
+
|
127
|
+
### 9. No Refunds
|
128
|
+
Licensee warrants that he inspected The Software according to clause 8.3 and that it is adequate to
|
129
|
+
his needs. Accordingly, as The Software is intangible goods, Licensee shall not be, ever, entitled to any refund,
|
130
|
+
rebate, compensation or restitution for any reason whatsoever, even if The Software contains material flaws.
|
131
|
+
|
132
|
+
### 10. Indemnification
|
133
|
+
Licensee hereby warrants to hold Licensor harmless and indemnify Licensor for any lawsuit
|
134
|
+
brought against it in regards to Licensee’s use of The Software in means that violate, breach or otherwise
|
135
|
+
circumvent this license, Licensor's intellectual property rights or Licensor's title in The Software. Licensor
|
136
|
+
shall promptly notify Licensee in case of such legal action and request Licensee’s consent prior to any settlement
|
137
|
+
in relation to such lawsuit or claim.
|
138
|
+
|
139
|
+
### 11. Governing Law, Jurisdiction
|
140
|
+
Licensee hereby agrees not to initiate class-action lawsuits against Licensor in
|
141
|
+
relation to this license and to compensate Licensor for any legal fees, cost or attorney fees should any claim
|
142
|
+
brought by Licensee against Licensor be denied, in part or in full.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-hydejack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 7.0.0.pre.beta.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Florian Klampfer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-10-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -16,28 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '3.
|
19
|
+
version: '3.6'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '3.
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: jekyll-default-layout
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0.1'
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0.1'
|
26
|
+
version: '3.6'
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: jekyll-feed
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,20 +38,6 @@ dependencies:
|
|
52
38
|
- - "~>"
|
53
39
|
- !ruby/object:Gem::Version
|
54
40
|
version: '0.9'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: jekyll-optional-front-matter
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0.2'
|
62
|
-
type: :runtime
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0.2'
|
69
41
|
- !ruby/object:Gem::Dependency
|
70
42
|
name: jekyll-paginate
|
71
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,20 +52,6 @@ dependencies:
|
|
80
52
|
- - "~>"
|
81
53
|
- !ruby/object:Gem::Version
|
82
54
|
version: '1.1'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: jekyll-redirect-from
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - "~>"
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0.12'
|
90
|
-
type: :runtime
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - "~>"
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0.12'
|
97
55
|
- !ruby/object:Gem::Dependency
|
98
56
|
name: jekyll-relative-links
|
99
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -109,33 +67,33 @@ dependencies:
|
|
109
67
|
- !ruby/object:Gem::Version
|
110
68
|
version: '0.4'
|
111
69
|
- !ruby/object:Gem::Dependency
|
112
|
-
name: jekyll-
|
70
|
+
name: jekyll-seo-tag
|
113
71
|
requirement: !ruby/object:Gem::Requirement
|
114
72
|
requirements:
|
115
73
|
- - "~>"
|
116
74
|
- !ruby/object:Gem::Version
|
117
|
-
version: '
|
75
|
+
version: '2.2'
|
118
76
|
type: :runtime
|
119
77
|
prerelease: false
|
120
78
|
version_requirements: !ruby/object:Gem::Requirement
|
121
79
|
requirements:
|
122
80
|
- - "~>"
|
123
81
|
- !ruby/object:Gem::Version
|
124
|
-
version: '
|
82
|
+
version: '2.2'
|
125
83
|
- !ruby/object:Gem::Dependency
|
126
|
-
name:
|
84
|
+
name: jekyll-sitemap
|
127
85
|
requirement: !ruby/object:Gem::Requirement
|
128
86
|
requirements:
|
129
87
|
- - "~>"
|
130
88
|
- !ruby/object:Gem::Version
|
131
|
-
version: '
|
89
|
+
version: '1.0'
|
132
90
|
type: :runtime
|
133
91
|
prerelease: false
|
134
92
|
version_requirements: !ruby/object:Gem::Requirement
|
135
93
|
requirements:
|
136
94
|
- - "~>"
|
137
95
|
- !ruby/object:Gem::Version
|
138
|
-
version: '
|
96
|
+
version: '1.0'
|
139
97
|
- !ruby/object:Gem::Dependency
|
140
98
|
name: bundler
|
141
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -175,10 +133,19 @@ files:
|
|
175
133
|
- README.md
|
176
134
|
- _includes/about.html
|
177
135
|
- _includes/author.html
|
136
|
+
- _includes/avatar-tag.html
|
178
137
|
- _includes/body.html
|
138
|
+
- _includes/body/menu.html
|
139
|
+
- _includes/body/scripts.html
|
179
140
|
- _includes/comments.html
|
180
141
|
- _includes/footer.html
|
181
142
|
- _includes/head.html
|
143
|
+
- _includes/head/links.html
|
144
|
+
- _includes/head/meta.html
|
145
|
+
- _includes/head/scripts.html
|
146
|
+
- _includes/head/seo-fallback.html
|
147
|
+
- _includes/head/seo-tag.html
|
148
|
+
- _includes/head/styles.html
|
182
149
|
- _includes/header.txt
|
183
150
|
- _includes/icon-github.html
|
184
151
|
- _includes/link.html
|
@@ -190,8 +157,7 @@ files:
|
|
190
157
|
- _includes/pagination.html
|
191
158
|
- _includes/post-list-item.html
|
192
159
|
- _includes/post.html
|
193
|
-
- _includes/related.html
|
194
|
-
- _includes/scripts.html
|
160
|
+
- _includes/related-posts.html
|
195
161
|
- _includes/scripts/cssrelpreload.min.js
|
196
162
|
- _includes/scripts/load-disqus.js
|
197
163
|
- _includes/scripts/load-disqus.min.js
|
@@ -205,6 +171,7 @@ files:
|
|
205
171
|
- _includes/styles/inline.scss
|
206
172
|
- _includes/styles/style.scss
|
207
173
|
- _includes/tag-list.html
|
174
|
+
- _includes/templates.html
|
208
175
|
- _layouts/about.html
|
209
176
|
- _layouts/base.html
|
210
177
|
- _layouts/blog.html
|
@@ -217,40 +184,72 @@ files:
|
|
217
184
|
- _layouts/post.html
|
218
185
|
- _layouts/redirect.html
|
219
186
|
- _sass/_mixins.scss
|
187
|
+
- _sass/_reboot-mod.scss
|
220
188
|
- _sass/_spinner.scss
|
221
189
|
- _sass/_syntax.scss
|
222
190
|
- _sass/_variables.scss
|
223
|
-
- _sass/hydejack/
|
224
|
-
- _sass/hydejack/_base.scss
|
225
|
-
- _sass/hydejack/
|
226
|
-
- _sass/hydejack/
|
227
|
-
- _sass/hydejack/
|
228
|
-
- _sass/hydejack/
|
229
|
-
- _sass/hydejack/
|
230
|
-
- _sass/hydejack/
|
231
|
-
- _sass/hydejack/
|
232
|
-
- _sass/hydejack/
|
233
|
-
- _sass/hydejack/
|
234
|
-
- _sass/hydejack/
|
235
|
-
- _sass/hydejack/
|
236
|
-
- _sass/hydejack/
|
237
|
-
- _sass/hydejack/
|
191
|
+
- _sass/hydejack/__inline/_avatar.scss
|
192
|
+
- _sass/hydejack/__inline/_base.scss
|
193
|
+
- _sass/hydejack/__inline/_break-layout.scss
|
194
|
+
- _sass/hydejack/__inline/_content.scss
|
195
|
+
- _sass/hydejack/__inline/_footer.scss
|
196
|
+
- _sass/hydejack/__inline/_katex.scss
|
197
|
+
- _sass/hydejack/__inline/_mark-external.scss
|
198
|
+
- _sass/hydejack/__inline/_menu.scss
|
199
|
+
- _sass/hydejack/__inline/_sidebar.scss
|
200
|
+
- _sass/hydejack/__inline/_social.scss
|
201
|
+
- _sass/hydejack/__link/_avatar.scss
|
202
|
+
- _sass/hydejack/__link/_base.scss
|
203
|
+
- _sass/hydejack/__link/_break-layout.scss
|
204
|
+
- _sass/hydejack/__link/_content.scss
|
205
|
+
- _sass/hydejack/__link/_footer.scss
|
206
|
+
- _sass/hydejack/__link/_katex.scss
|
207
|
+
- _sass/hydejack/__link/_mark-external.scss
|
208
|
+
- _sass/hydejack/__link/_menu.scss
|
209
|
+
- _sass/hydejack/__link/_sidebar.scss
|
210
|
+
- _sass/hydejack/__link/_social.scss
|
211
|
+
- _sass/hydejack/_avatar.pre.scss
|
212
|
+
- _sass/hydejack/_base.pre.scss
|
213
|
+
- _sass/hydejack/_break-layout.pre.scss
|
214
|
+
- _sass/hydejack/_content.pre.scss
|
215
|
+
- _sass/hydejack/_footer.pre.scss
|
216
|
+
- _sass/hydejack/_katex.pre.scss
|
217
|
+
- _sass/hydejack/_mark-external.pre.scss
|
218
|
+
- _sass/hydejack/_menu.pre.scss
|
219
|
+
- _sass/hydejack/_sidebar.pre.scss
|
220
|
+
- _sass/hydejack/_social.pre.scss
|
238
221
|
- _sass/my-inline.scss
|
239
222
|
- _sass/my-style.scss
|
240
|
-
- _sass/pooleparty/_base
|
241
|
-
- _sass/pooleparty/
|
242
|
-
- _sass/pooleparty/
|
243
|
-
- _sass/pooleparty/
|
244
|
-
- _sass/pooleparty/
|
245
|
-
- _sass/pooleparty/
|
246
|
-
- _sass/pooleparty/
|
247
|
-
- _sass/pooleparty/
|
248
|
-
- _sass/pooleparty/
|
249
|
-
- _sass/pooleparty/
|
250
|
-
- _sass/pooleparty/
|
251
|
-
- _sass/pooleparty/
|
252
|
-
- _sass/pooleparty/
|
253
|
-
- _sass/pooleparty/
|
223
|
+
- _sass/pooleparty/__inline/_base.scss
|
224
|
+
- _sass/pooleparty/__inline/_code.scss
|
225
|
+
- _sass/pooleparty/__inline/_footer.scss
|
226
|
+
- _sass/pooleparty/__inline/_footnotes.scss
|
227
|
+
- _sass/pooleparty/__inline/_message.scss
|
228
|
+
- _sass/pooleparty/__inline/_pagination.scss
|
229
|
+
- _sass/pooleparty/__inline/_posts.scss
|
230
|
+
- _sass/pooleparty/__inline/_related.scss
|
231
|
+
- _sass/pooleparty/__inline/_table.scss
|
232
|
+
- _sass/pooleparty/__inline/_type.scss
|
233
|
+
- _sass/pooleparty/__link/_base.scss
|
234
|
+
- _sass/pooleparty/__link/_code.scss
|
235
|
+
- _sass/pooleparty/__link/_footer.scss
|
236
|
+
- _sass/pooleparty/__link/_footnotes.scss
|
237
|
+
- _sass/pooleparty/__link/_message.scss
|
238
|
+
- _sass/pooleparty/__link/_pagination.scss
|
239
|
+
- _sass/pooleparty/__link/_posts.scss
|
240
|
+
- _sass/pooleparty/__link/_related.scss
|
241
|
+
- _sass/pooleparty/__link/_table.scss
|
242
|
+
- _sass/pooleparty/__link/_type.scss
|
243
|
+
- _sass/pooleparty/_base.pre.scss
|
244
|
+
- _sass/pooleparty/_code.pre.scss
|
245
|
+
- _sass/pooleparty/_footer.pre.scss
|
246
|
+
- _sass/pooleparty/_footnotes.pre.scss
|
247
|
+
- _sass/pooleparty/_message.pre.scss
|
248
|
+
- _sass/pooleparty/_pagination.pre.scss
|
249
|
+
- _sass/pooleparty/_posts.pre.scss
|
250
|
+
- _sass/pooleparty/_related.pre.scss
|
251
|
+
- _sass/pooleparty/_table.pre.scss
|
252
|
+
- _sass/pooleparty/_type.pre.scss
|
254
253
|
- assets/bower.json
|
255
254
|
- assets/bower_components/html5shiv/.bower.json
|
256
255
|
- assets/bower_components/html5shiv/Gruntfile.js
|
@@ -386,34 +385,39 @@ files:
|
|
386
385
|
- assets/bower_components/webfontloader/webfontloader.gemspec
|
387
386
|
- assets/bower_components/webfontloader/webfontloader.js
|
388
387
|
- assets/css/hydejack.css
|
389
|
-
- assets/icomoon/Read Me.txt
|
390
|
-
- assets/icomoon/demo-files/demo.css
|
391
|
-
- assets/icomoon/demo-files/demo.js
|
392
|
-
- assets/icomoon/demo.html
|
393
388
|
- assets/icomoon/fonts/icomoon.eot
|
394
389
|
- assets/icomoon/fonts/icomoon.svg
|
395
390
|
- assets/icomoon/fonts/icomoon.ttf
|
396
391
|
- assets/icomoon/fonts/icomoon.woff
|
397
392
|
- assets/icomoon/selection.json
|
398
393
|
- assets/icomoon/style.css
|
394
|
+
- assets/icons/apple-touch-icon.png
|
395
|
+
- assets/icons/favicon.ico
|
396
|
+
- assets/icons/icon.png
|
397
|
+
- assets/icons/icon@0,25x.png
|
398
|
+
- assets/icons/icon@0,5x.png
|
399
|
+
- assets/icons/icon@0,75x.png
|
400
|
+
- assets/icons/icon@2x.png
|
401
|
+
- assets/icons/icon@3x.png
|
402
|
+
- assets/icons/tile-large.png
|
403
|
+
- assets/icons/tile-medium.png
|
404
|
+
- assets/icons/tile-small.png
|
405
|
+
- assets/icons/tile-wide.png
|
406
|
+
- assets/ieconfig.xml
|
399
407
|
- assets/img/docs/google-fonts.png
|
400
408
|
- assets/img/me.jpg
|
401
409
|
- assets/img/me@2x.jpg
|
402
|
-
- assets/img/
|
403
|
-
- assets/img/projects/hyde-v1.jpg
|
404
|
-
- assets/img/projects/hyde-v1@0,25x.jpg
|
405
|
-
- assets/img/projects/hyde-v1@0,5x.jpg
|
406
|
-
- assets/img/projects/hyde-v2.jpg
|
407
|
-
- assets/img/projects/hyde-v2@0,25x.jpg
|
408
|
-
- assets/img/projects/hyde-v2@0,5x.jpg
|
410
|
+
- assets/img/sidebar-bg.jpg
|
409
411
|
- assets/js/hydejack.js
|
412
|
+
- assets/manifest.json
|
410
413
|
- assets/version.json
|
411
414
|
- licenses/Apache-2.0.md
|
415
|
+
- licenses/GPL-3.0.md
|
412
416
|
- licenses/MIT.md
|
413
|
-
- licenses/PRO
|
417
|
+
- licenses/PRO.md
|
414
418
|
homepage: https://qwtel.com/hydejack/
|
415
419
|
licenses:
|
416
|
-
-
|
420
|
+
- GPL-3.0
|
417
421
|
metadata: {}
|
418
422
|
post_install_message:
|
419
423
|
rdoc_options: []
|
@@ -426,12 +430,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
426
430
|
version: '0'
|
427
431
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
428
432
|
requirements:
|
429
|
-
- - "
|
433
|
+
- - ">"
|
430
434
|
- !ruby/object:Gem::Version
|
431
|
-
version:
|
435
|
+
version: 1.3.1
|
432
436
|
requirements: []
|
433
437
|
rubyforge_project:
|
434
|
-
rubygems_version: 2.
|
438
|
+
rubygems_version: 2.5.2
|
435
439
|
signing_key:
|
436
440
|
specification_version: 4
|
437
441
|
summary: A pretentious two-column Jekyll theme, stolen by @qwtel from Hyde. You could
|