jekyll-theme-semantic2 0.0.3 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4992b20db7f7211c2300010dde0e974ad849ace76ef79bdfc75684159303a409
4
- data.tar.gz: 6d2bcf5a20fa4d217af0de80e5a62a453a4978b276c7aa37607f9539a8b0de71
3
+ metadata.gz: 2384f9cd192a5ecdac2438adc1d0cf766239ae8c243307bf7aa7d481a2775453
4
+ data.tar.gz: f892022f66ff5e7dd81163acfdd80d24bdefcd49aa8954aa48a3b1d35fcea81f
5
5
  SHA512:
6
- metadata.gz: 844f5f7a49275e7aa4de7e5a762bc630b73794d07065946813c82edfe6c871719c147eba1cf0d8ecc07061d2ee5e5ef959863f96b4513c4c013edec02fda352b
7
- data.tar.gz: f2111abc9b1966cc0439181568ba1b93f2427c888e48d260a896d2af725726df2fcb635129c8fa6df9b8fa3716361bdd038fda78f77143a54e8c2982d85431b9
6
+ metadata.gz: 3327802c31f76210cb70d62b2ac3ca0a6bab2a2977db43f2e55505ab866519dc09d2b14fdc882e818fa8d226b98a2fd44f2c04e10e39221fbb659ab7558abf56
7
+ data.tar.gz: 27c0bc937b7f175d3c775362dc09085895436972223c02ce4cc3661678e9568d616e2dc3703c3ecfdaca25256ca775330661ac7b3751d3286134cb7e48ca7e4f
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  jekyll-theme-semantic2
2
2
  ======================
3
3
 
4
- [![Build Status](https://travis-ci.org/rcvalle/jekyll-theme-semantic2.svg?branch=master)](https://travis-ci.org/rcvalle/jekyll-theme-semantic2)
4
+ ![Build Status](https://github.com/rcvalle/jekyll-theme-semantic2/workflows/build/badge.svg)
5
5
 
6
6
  A [Semantic UI -based](https://semantic-ui.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-semantic2
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 class="ui header" 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 class="ui basic vertical segment" 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-semantic2
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 Semantic UI -based Jekyll theme.