jekyll-theme-clean-blog 4.0.6 → 4.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/footer.html +10 -0
- data/_includes/google-analytics.html +10 -0
- data/_includes/navbar.html +1 -1
- data/_layouts/default.html +9 -7
- data/_layouts/home.html +3 -2
- data/_layouts/page.html +18 -18
- data/_layouts/post.html +4 -5
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e486ae69f3ce3e14d3030fd2082fd805122690ac414611bd48ce4bb1557d9ed
|
4
|
+
data.tar.gz: 7d07df683c6ca21bbd8bcf6ac74325d66774d4a41be98ae8825d6fea4557c16c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 109e08ebcae61c38df11cb37dde209521d2655abfe43a41104536dd6942bbf2c429d1946ea0b0c5f9ed0c27e21ed26444c8277199537550d5c23c6fa55546081
|
7
|
+
data.tar.gz: 4c41ac8f83a2cd7b561195d8116456ff8b96cf92e486622fa316776b6d14f6249ecf01bd41f7ba874f53c0a7b4a77139e9a6a012ca819c12adbb640316152673
|
data/_includes/footer.html
CHANGED
@@ -7,6 +7,16 @@
|
|
7
7
|
<div class="row">
|
8
8
|
<div class="col-lg-8 col-md-10 mx-auto">
|
9
9
|
<ul class="list-inline text-center">
|
10
|
+
{% if site.email %}
|
11
|
+
<li class="list-inline-item">
|
12
|
+
<a href="mailto:{{ site.email | encode_email }}">
|
13
|
+
<span class="fa-stack fa-lg">
|
14
|
+
<i class="fas fa-circle fa-stack-2x"></i>
|
15
|
+
<i class="far fa-envelope fa-stack-1x fa-inverse"></i>
|
16
|
+
</span>
|
17
|
+
</a>
|
18
|
+
</li>
|
19
|
+
{% endif %}
|
10
20
|
{% if site.twitter_username %}
|
11
21
|
<li class="list-inline-item">
|
12
22
|
<a href="https://twitter.com/{{ site.twitter_username }}">
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<!-- Global site tag (gtag.js) - Google Analytics -->
|
2
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
|
3
|
+
<script>
|
4
|
+
window.dataLayer = window.dataLayer || [];
|
5
|
+
function gtag(){dataLayer.push(arguments);}
|
6
|
+
gtag('js', new Date());
|
7
|
+
|
8
|
+
gtag('config', '{{ site.google_analytics }}');
|
9
|
+
</script>
|
10
|
+
|
data/_includes/navbar.html
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
<a class="nav-link" href="{{"/about" | relative_url }}">About</a>
|
16
16
|
</li>
|
17
17
|
<li class="nav-item">
|
18
|
-
<a class="nav-link" href="{{"/posts" | relative_url }}">Posts</a>
|
18
|
+
<a class="nav-link" href="{{ "/posts" | relative_url }}">Posts</a>
|
19
19
|
</li>
|
20
20
|
<li class="nav-item">
|
21
21
|
<a class="nav-link" href="{{"/contact" | relative_url }}">Contact</a>
|
data/_layouts/default.html
CHANGED
@@ -2,18 +2,20 @@
|
|
2
2
|
|
3
3
|
<html>
|
4
4
|
|
5
|
-
|
5
|
+
{% include head.html %}
|
6
6
|
|
7
|
-
|
7
|
+
<body>
|
8
8
|
|
9
|
-
|
9
|
+
{% include navbar.html %}
|
10
10
|
|
11
|
-
|
11
|
+
{{ content }}
|
12
12
|
|
13
|
-
|
13
|
+
{% include footer.html %}
|
14
14
|
|
15
|
-
|
15
|
+
{% include scripts.html %}
|
16
16
|
|
17
|
-
|
17
|
+
{% include google-analytics.html %}
|
18
|
+
|
19
|
+
</body>
|
18
20
|
|
19
21
|
</html>
|
data/_layouts/home.html
CHANGED
@@ -48,7 +48,8 @@ layout: default
|
|
48
48
|
{{ site.author }}
|
49
49
|
{% endif %}
|
50
50
|
on
|
51
|
-
{{ post.date | date: '%B %d, %Y' }} · {% include read_time.html content=post.content %}
|
51
|
+
{{ post.date | date: '%B %d, %Y' }} · {% include read_time.html content=post.content %}
|
52
|
+
</p>
|
52
53
|
</article>
|
53
54
|
|
54
55
|
<hr>
|
@@ -62,4 +63,4 @@ layout: default
|
|
62
63
|
|
63
64
|
</div>
|
64
65
|
</div>
|
65
|
-
</div>
|
66
|
+
</div>
|
data/_layouts/page.html
CHANGED
@@ -5,30 +5,30 @@ layout: default
|
|
5
5
|
<!-- Page Header -->
|
6
6
|
{% if page.background %}
|
7
7
|
<header class="masthead" style="background-image: url('{{ page.background | prepend: site.baseurl | replace: '//', '/' }}')">
|
8
|
-
{% else %}
|
9
|
-
<header class="masthead">
|
10
|
-
{% endif %}
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
8
|
+
{% else %}
|
9
|
+
<header class="masthead">
|
10
|
+
{% endif %}
|
11
|
+
<div class="overlay"></div>
|
12
|
+
<div class="container">
|
13
|
+
<div class="row">
|
14
|
+
<div class="col-lg-8 col-md-10 mx-auto">
|
15
|
+
<div class="page-heading">
|
16
|
+
<h1>{{ page.title }}</h1>
|
17
|
+
{% if page.description %}
|
18
18
|
<span class="subheading">{{ page.description }}</span>
|
19
|
-
|
19
|
+
{% endif %}
|
20
|
+
</div>
|
20
21
|
</div>
|
21
22
|
</div>
|
22
23
|
</div>
|
23
|
-
</
|
24
|
-
</header>
|
24
|
+
</header>
|
25
25
|
|
26
|
-
<div class="container">
|
27
|
-
|
28
|
-
|
26
|
+
<div class="container">
|
27
|
+
<div class="row">
|
28
|
+
<div class="col-lg-8 col-md-10 mx-auto">
|
29
29
|
|
30
|
-
|
30
|
+
{{ content }}
|
31
31
|
|
32
|
+
</div>
|
32
33
|
</div>
|
33
34
|
</div>
|
34
|
-
</div>
|
data/_layouts/post.html
CHANGED
@@ -20,7 +20,8 @@ layout: default
|
|
20
20
|
<span class="meta">Posted by
|
21
21
|
<a href="#">{% if page.author %}{{ page.author }}{% else %}{{ site.author }}{% endif %}</a>
|
22
22
|
on {{ page.date | date: '%B %d, %Y' }} · {% include read_time.html
|
23
|
-
content=page.content %}
|
23
|
+
content=page.content %}
|
24
|
+
</span>
|
24
25
|
</div>
|
25
26
|
</div>
|
26
27
|
</div>
|
@@ -38,13 +39,11 @@ layout: default
|
|
38
39
|
<div class="clearfix">
|
39
40
|
|
40
41
|
{% if page.previous.url %}
|
41
|
-
<a class="btn btn-primary float-left" href="{{ page.previous.url | prepend: site.baseurl | replace: '//', '/' }}"
|
42
|
-
data-toggle="tooltip" data-placement="top" title="{{ page.previous.title }}">← Previous<span class="d-none d-md-inline">
|
42
|
+
<a class="btn btn-primary float-left" href="{{ page.previous.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{ page.previous.title }}">← Previous<span class="d-none d-md-inline">
|
43
43
|
Post</span></a>
|
44
44
|
{% endif %}
|
45
45
|
{% if page.next.url %}
|
46
|
-
<a class="btn btn-primary float-right" href="{{ page.next.url | prepend: site.baseurl | replace: '//', '/' }}"
|
47
|
-
data-toggle="tooltip" data-placement="top" title="{{ page.next.title }}">Next<span class="d-none d-md-inline">
|
46
|
+
<a class="btn btn-primary float-right" href="{{ page.next.url | prepend: site.baseurl | replace: '//', '/' }}" data-toggle="tooltip" data-placement="top" title="{{ page.next.title }}">Next<span class="d-none d-md-inline">
|
48
47
|
Post</span> →</a>
|
49
48
|
{% endif %}
|
50
49
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-clean-blog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Start Bootstrap
|
@@ -62,6 +62,7 @@ files:
|
|
62
62
|
- LICENSE
|
63
63
|
- README.md
|
64
64
|
- _includes/footer.html
|
65
|
+
- _includes/google-analytics.html
|
65
66
|
- _includes/head.html
|
66
67
|
- _includes/navbar.html
|
67
68
|
- _includes/read_time.html
|
@@ -1707,7 +1708,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1707
1708
|
- !ruby/object:Gem::Version
|
1708
1709
|
version: '0'
|
1709
1710
|
requirements: []
|
1710
|
-
rubygems_version: 3.0.
|
1711
|
+
rubygems_version: 3.0.3
|
1711
1712
|
signing_key:
|
1712
1713
|
specification_version: 4
|
1713
1714
|
summary: A simple blog theme based on Bootstrap 4 by Start Bootstrap.
|