jekyll-theme-bootstrap4 0.0.3 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df935b9417921ab6957f4c23508bc31bd55fa16c3911e68d60475a8ce595fae8
4
- data.tar.gz: 91a99e144be44dac6c54fdb2eb6608b09281d7d614e14971348aff28addc9446
3
+ metadata.gz: 549c5da63092e5c3ebfaec2cccd24321b91b8307acc1cb108bd581304774908d
4
+ data.tar.gz: 11a7f1c94a395bde7153d1c05fdc550b401894591b707ee58592bfa29bbe009f
5
5
  SHA512:
6
- metadata.gz: d69325ac6efd82efc6c62b68779d593a252bfe8e96ee006f3d0c9618814f205c11c5cfccdbec5d7406ce46d86013bf479c07fbcde9b7137cfe9c1a03e0e44481
7
- data.tar.gz: 8fe7c9797a9451db4fdba53624375d9c9976feaa599c308b323956fdcf21f09fb4164a898ae94a31e4779a90a101732eb80d8c36cc69bb39ca0c2a9d0e220612
6
+ metadata.gz: 5b16419f64608bc6949fff3ec26cd4623fa8b6cfe44ef3247e2721f56939af5bdbd8ebfd8122e632383ed4da86e7378d93e0b6526f0b66dd14b271e973edae69
7
+ data.tar.gz: 655d789e22d12d3ad793ec0ba159bcac3b2c817ca4d42f56b482b4c38a70613d98a8057ba9e076eec6d0d6ebd0a8eeaf8423273ec94b9a8da985cbff65bf40b5
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  jekyll-theme-bootstrap4
2
2
  =======================
3
3
 
4
- [![Build Status](https://travis-ci.org/rcvalle/jekyll-theme-bootstrap4.svg?branch=master)](https://travis-ci.org/rcvalle/jekyll-theme-bootstrap4)
4
+ ![Build Status](https://github.com/rcvalle/jekyll-theme-bootstrap4/workflows/build/badge.svg)
5
5
 
6
6
  A [Bootstrap-based](https://getbootstrap.com/) Jekyll theme.
7
7
 
@@ -73,5 +73,5 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).
73
73
  License
74
74
  -------
75
75
 
76
- Licensed under the MIT license. See [LICENSE](LICENSE) for license text and
76
+ Licensed under the MIT License. See [LICENSE](LICENSE) for license text and
77
77
  copyright information.
@@ -1,4 +1,5 @@
1
1
  baseurl: /jekyll-theme-bootstrap4
2
+ excerpts: true
2
3
  exclude:
3
4
  - "*.gemspec"
4
5
  - "CONTRIBUTING*"
@@ -9,3 +9,14 @@
9
9
  ga('send', 'pageview');
10
10
  </script>
11
11
  {% endif %}
12
+ {% if site.gtag %}
13
+ <!-- Global site tag (gtag.js) - Google Analytics -->
14
+ <script async src="https://www.googletagmanager.com/gtag/js?id={{ site.gtag }}"></script>
15
+ <script>
16
+ window.dataLayer = window.dataLayer || [];
17
+ function gtag(){dataLayer.push(arguments);}
18
+ gtag('js', new Date());
19
+
20
+ gtag('config', '{{ site.gtag }}');
21
+ </script>
22
+ {% endif %}
@@ -1,8 +1,13 @@
1
1
  <article itemscope itemtype="http://schema.org/BlogPosting">
2
2
  <h1 itemprop="headline"><a href="{{ include.post.url | relative_url }}">{{ include.post.title }}</a></h1>
3
- <p>{% if include.post.author %}By <span itemprop="author">{{ include.post.author }}</span> on {% endif %}<time itemprop="datePublished" datetime="{{ include.post.date | date_to_xmlschema }}">{{ include.post.date | date: "%B %-d, %Y" }}</time>{% if include.post.comments %}. <a href="{{ include.post.url | relative_url }}#disqus_thread" data-disqus-identifier="{{ include.post.url | relative_url }}"></a>{% endif %}</p>
3
+ <p>{% if include.post.author %}By <span itemprop="author">{{ include.post.author }}</span> on {% endif %}<time itemprop="datePublished" datetime="{{ include.post.date | date_to_xmlschema }}">{{ include.post.date | date: "%B %-d, %Y" }}</time>{% if include.post.updated %}. Last updated on <time itemprop="dateModified" datetime="{{ include.post.updated | date_to_xmlschema }}">{{ include.post.updated | date: "%B %-d, %Y" }}</time>{% endif %}{% if include.post.comments %}. <a href="{{ include.post.url | relative_url }}#disqus_thread" data-disqus-identifier="{{ include.post.url | relative_url }}"></a>{% endif %}</p>
4
4
  <div itemprop="articleBody">
5
- {{ include.post.content | markdownify }}
5
+ {% if page.type == "home" and site.excerpts %}
6
+ {{ include.post.excerpt | markdownify }}
7
+ <p><a href="{{ post.url }}">Read more&hellip;</a></p>
8
+ {% else %}
9
+ {{ include.post.content | markdownify }}
10
+ {% endif %}
6
11
  </div>
7
12
  <p>{% include post_tags.html post=include.post %}</p>
8
13
  </article>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-bootstrap4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramon de C Valle
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-27 00:00:00.000000000 Z
11
+ date: 2021-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -131,14 +131,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
131
131
  requirements:
132
132
  - - ">="
133
133
  - !ruby/object:Gem::Version
134
- version: '0'
134
+ version: 2.3.0
135
135
  required_rubygems_version: !ruby/object:Gem::Requirement
136
136
  requirements:
137
137
  - - ">="
138
138
  - !ruby/object:Gem::Version
139
139
  version: '0'
140
140
  requirements: []
141
- rubygems_version: 3.0.8
141
+ rubygems_version: 3.0.3
142
142
  signing_key:
143
143
  specification_version: 4
144
144
  summary: A Bootstrap-based Jekyll theme.