jekyll-theme-jsblog 1.1.5 → 1.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -10
- data/_includes/ad.html +24 -0
- data/_includes/footer_content.html +1 -1
- data/_layouts/home.html +1 -1
- data/_layouts/post.html +0 -1
- data/_sass/jsblog/_layout.scss +0 -22
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e68e94eaf986d66122d6c6dc0df46e546db690cd4d537e0ca14425fa1a01a653
|
4
|
+
data.tar.gz: 4270d88c96c64ea214b85a9557e3b2c8447ed99277fdb2b34e4d491e13e514ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4c85b869ede1ce85a046f991658f5ef2fc83d2fc7596e96a691a6d2ebece012e1e34ddbbbf8e1cf7e2114582e4e05da48299b99974ec7b01fba5c315ae488bf
|
7
|
+
data.tar.gz: c8566a2981e966ffee7cf0bbcaa71aee71b3f95c0d0ea372acdff25164833f9b07282ffab42172c2cddcd96a12e4e62a311f1769d1972899587c0b1ee5cd0da8
|
data/README.md
CHANGED
@@ -62,17 +62,17 @@ gem install jekyll-theme-jsblog
|
|
62
62
|
```
|
63
63
|
|
64
64
|
4. Copy
|
65
|
-
[`index.html`](https://github.com/
|
66
|
-
[`about.md`](https://github.com/
|
67
|
-
[`archives.md`](https://github.com/
|
68
|
-
[`feed.xml`](https://github.com/
|
69
|
-
[`_data/navigation.yml`](https://github.com/
|
65
|
+
[`index.html`](https://github.com/julianschiavo/jekyll-theme-jsblog/blob/master/index.html),
|
66
|
+
[`about.md`](https://github.com/julianschiavo/jekyll-theme-jsblog/blob/master/about.md),
|
67
|
+
[`archives.md`](https://github.com/julianschiavo/jekyll-theme-jsblog/blob/master/archives.md),
|
68
|
+
[`feed.xml`](https://github.com/julianschiavo/jekyll-theme-jsblog/blob/master/feed.xml), and
|
69
|
+
[`_data/navigation.yml`](https://github.com/julianschiavo/jekyll-theme-jsblog/blob/master/_data/navigation.yml)
|
70
70
|
from the theme:
|
71
71
|
|
72
72
|
``` sh
|
73
73
|
rm index.md
|
74
|
-
curl -L -O "https://github.com/
|
75
|
-
curl -L --create-dirs -o _data/navigation.yml https://github.com/
|
74
|
+
curl -L -O "https://github.com/julianschiavo/jekyll-theme-jsblog/raw/master/{index.html,about.md,archives.md,feed.xml}"
|
75
|
+
curl -L --create-dirs -o _data/navigation.yml https://github.com/julianschiavo/jekyll-theme-jsblog/raw/master/_data/navigation.yml
|
76
76
|
```
|
77
77
|
|
78
78
|
5. Install gems and you're good to go! The blog will be available on
|
@@ -180,7 +180,7 @@ want to link to.
|
|
180
180
|
``` yaml
|
181
181
|
layout: post
|
182
182
|
title: Jekyll Theme
|
183
|
-
external-url: https://github.com/
|
183
|
+
external-url: https://github.com/julianschiavo/jekyll-theme-jsblog
|
184
184
|
```
|
185
185
|
|
186
186
|
Then the title of your post would look like a link with text
|
@@ -305,7 +305,7 @@ main:
|
|
305
305
|
- title: "About"
|
306
306
|
url: /about/
|
307
307
|
- title: "GitHub"
|
308
|
-
url: https://github.com/
|
308
|
+
url: https://github.com/julianschiavo/jekyll-theme-jsblog
|
309
309
|
```
|
310
310
|
|
311
311
|
### Enabling Google Analytics
|
@@ -319,7 +319,7 @@ google_analytics: UA-NNNNNNNN-N
|
|
319
319
|
## Contributing
|
320
320
|
|
321
321
|
Bug reports and pull requests are welcome on GitHub at
|
322
|
-
<https://github.com/
|
322
|
+
<https://github.com/julianschiavo/jekyll-theme-jsblog>. This project is intended to be a safe,
|
323
323
|
welcoming space for collaboration, and contributors are expected to adhere to
|
324
324
|
the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
325
325
|
|
data/_includes/ad.html
CHANGED
@@ -1 +1,25 @@
|
|
1
1
|
<div id="codefund"></div>
|
2
|
+
|
3
|
+
<style>
|
4
|
+
#codefund {
|
5
|
+
width: 100%;
|
6
|
+
margin-bottom: 20px;
|
7
|
+
}
|
8
|
+
|
9
|
+
.cf-wrapper {
|
10
|
+
background-color: var(--ad-background-color) !important;
|
11
|
+
border-radius: 10px;
|
12
|
+
}
|
13
|
+
|
14
|
+
.cf-text {
|
15
|
+
color: var(--ad-text-color) !important;
|
16
|
+
|
17
|
+
strong {
|
18
|
+
color: var(--ad-strong-text-color) !important;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
.cf-powered-by {
|
23
|
+
color: var(--ad-powered-by-color) !important;
|
24
|
+
}
|
25
|
+
</style>
|
@@ -16,4 +16,4 @@
|
|
16
16
|
</div>
|
17
17
|
{% endif %}
|
18
18
|
|
19
|
-
© {{ site.author }} - Powered by <a href="https://jekyllrb.com">Jekyll</a> <!--& <a href="https://github.com/
|
19
|
+
© {{ site.author }} - Powered by <a href="https://jekyllrb.com">Jekyll</a> <!--& <a href="https://github.com/julianschiavo/jekyll-theme-jsblog">jsblogtheme</a>--> - Subscribe via <a href="{{ feed_path | absolute_url }}">RSS</a>
|
data/_layouts/home.html
CHANGED
data/_layouts/post.html
CHANGED
data/_sass/jsblog/_layout.scss
CHANGED
@@ -415,25 +415,3 @@
|
|
415
415
|
--ad-powered-by-color: rgba(255, 255, 255, 0.7);
|
416
416
|
}
|
417
417
|
}
|
418
|
-
|
419
|
-
#codefund {
|
420
|
-
width: 100%;
|
421
|
-
margin-bottom: 20px;
|
422
|
-
}
|
423
|
-
|
424
|
-
.cf-wrapper {
|
425
|
-
background-color: var(--ad-background-color) !important;
|
426
|
-
border-radius: 10px;
|
427
|
-
}
|
428
|
-
|
429
|
-
.cf-text {
|
430
|
-
color: var(--ad-text-color) !important;
|
431
|
-
|
432
|
-
strong {
|
433
|
-
color: var(--ad-strong-text-color) !important;
|
434
|
-
}
|
435
|
-
}
|
436
|
-
|
437
|
-
.cf-powered-by {
|
438
|
-
color: var(--ad-powered-by-color) !important;
|
439
|
-
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-jsblog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julian Schiavo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -126,7 +126,7 @@ files:
|
|
126
126
|
- _sass/jsblog/_syntax-highlighting.scss
|
127
127
|
- assets/home.scss
|
128
128
|
- assets/main.scss
|
129
|
-
homepage: https://github.com/
|
129
|
+
homepage: https://github.com/julianschiavo/jekyll-theme-jsblog
|
130
130
|
licenses:
|
131
131
|
- MIT
|
132
132
|
metadata: {}
|