kiko-minus 0.2.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -2
- data/_includes/fathom.html +13 -0
- data/_includes/isso.html +61 -0
- data/_layouts/default.html +9 -1
- data/_layouts/post.html +6 -0
- data/_sass/kiko-minus/_layout.scss +9 -0
- data/_sass/kiko-minus/_typography.scss +1 -6
- data/assets/img/black-holes/simulation.jpg +0 -0
- data/assets/img/style-test/golden-gate.jpg +0 -0
- data/assets/img_archive/golden-gate-2019-04-15-23-14-57-9990487bd295197df7ce75e0c324bf0f.jpg +0 -0
- data/assets/img_archive/simulation-2019-04-15-23-05-22-f2c96ad2f54c8f230dc65870b3d0cbf1.jpg +0 -0
- metadata +11 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5d051d73e3324cb2f031803d1e97894598d0281ddff1188b8cade31185f657d3
|
|
4
|
+
data.tar.gz: 00226ca32288c8aa5afc6902c516f3e63796197748aed56f3ae02a35614cc105
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c128e7b70a0381b01374366f0474dd2e5a31f54e9160f6afccb97dc6da7be7adf3871c0862797d3e4a2fc6f68fe62e5dbc45470dac926607a3e6c4878bcac1ed
|
|
7
|
+
data.tar.gz: '0268ffe7c251ab837ba0a96ecce035e35357872c118aba6884d7bd4210835524c46a0e1e2f674d2eed794f4d19159b932b1674472a1052ef2bc91d28727787f2'
|
data/README.md
CHANGED
|
@@ -49,7 +49,7 @@ TODO: Write usage instructions here. Describe your available layouts, includes,
|
|
|
49
49
|
|
|
50
50
|
## Contributing
|
|
51
51
|
|
|
52
|
-
Bug reports and pull requests are welcome on
|
|
52
|
+
Bug reports and pull requests are welcome on GitLab at https://gitlab.com/areebk/kiko-minus/issues. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
53
53
|
|
|
54
54
|
## Development
|
|
55
55
|
|
|
@@ -63,4 +63,3 @@ To add a custom directory to your theme-gem, please edit the regexp in `kiko-min
|
|
|
63
63
|
## License
|
|
64
64
|
|
|
65
65
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
66
|
-
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<script>
|
|
2
|
+
(function(f, a, t, h, o, m){
|
|
3
|
+
a[h]=a[h]||function(){
|
|
4
|
+
(a[h].q=a[h].q||[]).push(arguments)
|
|
5
|
+
};
|
|
6
|
+
o=f.createElement("script"),
|
|
7
|
+
m=f.getElementsByTagName("script")[0];
|
|
8
|
+
o.async=1; o.src=t; o.id="fathom-script";
|
|
9
|
+
m.parentNode.insertBefore(o,m)
|
|
10
|
+
})(document, window, "{{ site.fathom.script_src }}", "fathom");
|
|
11
|
+
fathom("set", "siteId", "{{ site.fathom.site_id }}");
|
|
12
|
+
fathom("trackPageview");
|
|
13
|
+
</script>
|
data/_includes/isso.html
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
|
|
2
|
+
<script data-isso="{{ site.isso.prefix }}"
|
|
3
|
+
src="{{ site.isso.script_source }}"
|
|
4
|
+
|
|
5
|
+
{% if site.isso.css %}
|
|
6
|
+
data-isso-css="{{ site.isso.css }}"
|
|
7
|
+
{% endif %}
|
|
8
|
+
|
|
9
|
+
{% if site.isso.lang %}
|
|
10
|
+
data-isso-lang="{{ site.isso.lang }}"
|
|
11
|
+
{% endif %}
|
|
12
|
+
|
|
13
|
+
{% if site.isso.reply_to_self %}
|
|
14
|
+
data-isso-reply-to-self="{{ site.isso.reply_to_self }}"
|
|
15
|
+
{% endif %}
|
|
16
|
+
|
|
17
|
+
{% if site.isso.require_author %}
|
|
18
|
+
data-isso-require-author="{{ site.isso.require_author }}"
|
|
19
|
+
{% endif %}
|
|
20
|
+
|
|
21
|
+
{% if site.isso.require_email %}
|
|
22
|
+
data-isso-require-email="{{ site.isso.require_email }}"
|
|
23
|
+
{% endif %}
|
|
24
|
+
|
|
25
|
+
{% if site.isso.max_comments_top %}
|
|
26
|
+
data-isso-max-comments-top="{{ site.isso.max_comments_top }}"
|
|
27
|
+
{% endif %}
|
|
28
|
+
|
|
29
|
+
{% if site.isso.max_comments_nested %}
|
|
30
|
+
data-isso-max-comments-nested="{{ site.isso.max_comments_nested }}"
|
|
31
|
+
{% endif %}
|
|
32
|
+
|
|
33
|
+
{% if site.isso.reveal_on_click %}
|
|
34
|
+
data-isso-reveal-on-click="{{ site.isso.reveal_on_click }}"
|
|
35
|
+
{% endif %}
|
|
36
|
+
|
|
37
|
+
{% if site.isso.avatar %}
|
|
38
|
+
data-isso-avatar="{{ site.isso.avatar }}"
|
|
39
|
+
{% endif %}
|
|
40
|
+
|
|
41
|
+
{% if site.isso.avatar_bg %}
|
|
42
|
+
data-isso-avatar-bg="{{ site.isso.avatar_bg }}"
|
|
43
|
+
{% endif %}
|
|
44
|
+
|
|
45
|
+
{% if site.isso.avatar_fg %}
|
|
46
|
+
data-isso-avatar-fg="{{ site.isso.avatar_fg }}"
|
|
47
|
+
{% endif %}
|
|
48
|
+
|
|
49
|
+
{% if site.isso.vote %}
|
|
50
|
+
data-isso-vote="{{ site.isso.vote }}"
|
|
51
|
+
{% endif %}
|
|
52
|
+
|
|
53
|
+
{% if site.isso.vote_levels %}
|
|
54
|
+
data-isso-vote-levels="{{ site.isso.vote_levels }}"
|
|
55
|
+
{% endif %}
|
|
56
|
+
|
|
57
|
+
{% if site.isso.feed %}
|
|
58
|
+
data-isso-feed="{{ site.isso.feed }}"
|
|
59
|
+
{% endif %}
|
|
60
|
+
>
|
|
61
|
+
</script>
|
data/_layouts/default.html
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
7
7
|
{%- seo -%}
|
|
8
8
|
<link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
|
|
9
|
-
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/img/logos/favicon-
|
|
9
|
+
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/img/logos/favicon-32x32.png" | relative_url }}">
|
|
10
10
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/assets/img/logos/favicon-16x16.png" | relative_url }}">
|
|
11
11
|
</head>
|
|
12
12
|
|
|
@@ -19,4 +19,12 @@
|
|
|
19
19
|
</div>
|
|
20
20
|
</main>
|
|
21
21
|
</body>
|
|
22
|
+
|
|
23
|
+
{% if site.isso.enabled %}
|
|
24
|
+
{%- include isso.html -%}
|
|
25
|
+
{% endif %}
|
|
26
|
+
|
|
27
|
+
{% if site.fathom.enabled %}
|
|
28
|
+
{%- include fathom.html -%}
|
|
29
|
+
{% endif %}
|
|
22
30
|
</html>
|
data/_layouts/post.html
CHANGED
|
@@ -225,10 +225,6 @@ img {
|
|
|
225
225
|
/**
|
|
226
226
|
* Figures
|
|
227
227
|
*/
|
|
228
|
-
figure > img {
|
|
229
|
-
display: block;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
228
|
figcaption {
|
|
233
229
|
font-size: $small-font-size;
|
|
234
230
|
}
|
|
@@ -320,10 +316,9 @@ a.footnote {
|
|
|
320
316
|
text-decoration: none;
|
|
321
317
|
}
|
|
322
318
|
}
|
|
319
|
+
|
|
323
320
|
.footnotes {
|
|
324
|
-
margin: 4rem 0;
|
|
325
321
|
padding: 2rem 1em;
|
|
326
|
-
border-top: 1px solid $divider-color;
|
|
327
322
|
font-size: $small-font-size;
|
|
328
323
|
}
|
|
329
324
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kiko-minus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Areeb Khan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-04-
|
|
11
|
+
date: 2019-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -81,33 +81,19 @@ dependencies:
|
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '2.1'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
84
|
+
name: jekyll-image-optim
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '0
|
|
89
|
+
version: '1.0'
|
|
90
90
|
type: :runtime
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '0
|
|
97
|
-
- !ruby/object:Gem::Dependency
|
|
98
|
-
name: image_optim_pack
|
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
|
100
|
-
requirements:
|
|
101
|
-
- - "~>"
|
|
102
|
-
- !ruby/object:Gem::Version
|
|
103
|
-
version: '0.5'
|
|
104
|
-
type: :runtime
|
|
105
|
-
prerelease: false
|
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
-
requirements:
|
|
108
|
-
- - "~>"
|
|
109
|
-
- !ruby/object:Gem::Version
|
|
110
|
-
version: '0.5'
|
|
96
|
+
version: '1.0'
|
|
111
97
|
- !ruby/object:Gem::Dependency
|
|
112
98
|
name: bundler
|
|
113
99
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -131,7 +117,9 @@ extra_rdoc_files: []
|
|
|
131
117
|
files:
|
|
132
118
|
- LICENSE
|
|
133
119
|
- README.md
|
|
120
|
+
- _includes/fathom.html
|
|
134
121
|
- _includes/footer.html
|
|
122
|
+
- _includes/isso.html
|
|
135
123
|
- _layouts/default.html
|
|
136
124
|
- _layouts/home.html
|
|
137
125
|
- _layouts/page.html
|
|
@@ -143,10 +131,14 @@ files:
|
|
|
143
131
|
- _sass/kiko-minus/_syntax-highlighting.scss
|
|
144
132
|
- _sass/kiko-minus/_typography.scss
|
|
145
133
|
- assets/css/style.scss
|
|
134
|
+
- assets/img/black-holes/simulation.jpg
|
|
146
135
|
- assets/img/logos/favicon-16x16.png
|
|
147
136
|
- assets/img/logos/favicon-32x32.png
|
|
137
|
+
- assets/img/style-test/golden-gate.jpg
|
|
148
138
|
- assets/img_archive/favicon-16x16-2019-04-15-13-59-44-e9bf4e2f46cb5b94135c82ed11a7303c.png
|
|
149
139
|
- assets/img_archive/favicon-32x32-2019-04-15-13-59-45-220710db31b5b79ecc3276beeb369e06.png
|
|
140
|
+
- assets/img_archive/golden-gate-2019-04-15-23-14-57-9990487bd295197df7ce75e0c324bf0f.jpg
|
|
141
|
+
- assets/img_archive/simulation-2019-04-15-23-05-22-f2c96ad2f54c8f230dc65870b3d0cbf1.jpg
|
|
150
142
|
homepage: https://gitlab.com/areebk/kiko-minus
|
|
151
143
|
licenses:
|
|
152
144
|
- MIT
|