sencilla 0.5.0 → 0.6.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 +5 -5
- data/_includes/footer.html +3 -3
- data/_layouts/default.html +0 -9
- data/_layouts/page.html +9 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0490c1c56344b0f26bb4c6a255184c1e9f83332f45818f8411924162cba8c31c'
|
4
|
+
data.tar.gz: 2de66e5aab544f73e010089fcfec68321474a0c06c386d4c16a18456602c2c12
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d38a6a5968a2e074f3cd6ed1b05e0e8486c719c55501e45583c9cf0d20c8cb0940a0ac59e7e4a67b00da08e0a771e0e42dd52b5e55262d4249cb687f6aa348f3
|
7
|
+
data.tar.gz: 138ed73bccf821fb51377ee40813f316d52576194420f7c023e66fcf34c92e8ec544e66d02cbc8e3f3f45d85f4e445793ed8b0684359ba3714202849b34096b4
|
data/README.md
CHANGED
@@ -38,12 +38,12 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/dyskun
|
|
38
38
|
|
39
39
|
## License
|
40
40
|
|
41
|
-
|
41
|
+
This theme is available under the terms of [MIT License](https://opensource.org/licenses/MIT).
|
42
42
|
|
43
43
|
## Credits
|
44
44
|
|
45
|
-
Sencilla is a fork of [Minima](https://github.com/jekyll/minima) v2.5.1.
|
45
|
+
- Sencilla is a fork of [Minima](https://github.com/jekyll/minima) v2.5.1.
|
46
|
+
- I took `tags.html` from [beautiful-jekyll](https://github.com/daattali/beautiful-jekyll) and the color tones from [open-color](https://github.com/yeun/open-color) and [material.io](https://material.io).
|
47
|
+
- Source of `/assets/img/profile-picture.jpg`: [Pexels.com](https://www.pexels.com/photo/silhouette-photo-of-person-during-golden-hour-2475138/)
|
48
|
+
- Icons: [Font Awesome](https://fontawesome.com)
|
46
49
|
|
47
|
-
Thanks to [w3schools.com](https://www.w3schools.com/) for putting up amazing resources online for free. Most of what I have learnt about HTML and CSS have come from w3schools.
|
48
|
-
|
49
|
-
Source of `/assets/img/profile-picture.jpg`: [Pexels.com](https://www.pexels.com/photo/silhouette-photo-of-person-during-golden-hour-2475138/)
|
data/_includes/footer.html
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
<footer class="site-footer">
|
2
2
|
<div class="wrapper">
|
3
3
|
<div class="footer-col footer-col-1">
|
4
|
-
|
4
|
+
{{ site.author.name }}
|
5
5
|
</div>
|
6
6
|
|
7
7
|
<div class="footer-col footer-col-2">
|
8
8
|
{% if site.subscribe %}
|
9
|
-
|
9
|
+
<a href="/feed.xml"> <i class="far fa-rss"></i> RSS</a>
|
10
10
|
{% else %}
|
11
11
|
•
|
12
12
|
{% endif %}
|
13
13
|
</div>
|
14
14
|
|
15
15
|
<div class="footer-col footer-col-3">
|
16
|
-
|
16
|
+
Jekyll theme <a href="https://rubygems.org/gems/sencilla">Sencilla</a>
|
17
17
|
</div>
|
18
18
|
</div>
|
19
19
|
</footer>
|
data/_layouts/default.html
CHANGED
@@ -43,21 +43,12 @@
|
|
43
43
|
|
44
44
|
{%- endif -%}
|
45
45
|
|
46
|
-
{%- if site.sidebar_ad and page.ads -%}
|
47
|
-
{%- include responsive-ad.html -%}
|
48
|
-
{%- endif -%}
|
49
46
|
</div>
|
50
47
|
|
51
48
|
</div>
|
52
49
|
|
53
50
|
<div class="wrapper">
|
54
51
|
|
55
|
-
<div class="col-12 col-m-12 col-s-12">
|
56
|
-
{%- if site.footer_ad and page.ads -%}
|
57
|
-
{%- include responsive-ad.html -%}
|
58
|
-
{%- endif -%}
|
59
|
-
</div>
|
60
|
-
|
61
52
|
</div>
|
62
53
|
|
63
54
|
</main>
|
data/_layouts/page.html
CHANGED
@@ -4,6 +4,15 @@ layout: default
|
|
4
4
|
<article class="post">
|
5
5
|
<header class="post-header">
|
6
6
|
<h1 style="text-align: center;" class="post-title">{{ page.title | escape }}</h1>
|
7
|
+
<p class="post-meta">
|
8
|
+
{%- assign date_format = site.date_format | default: "%b %-d, %Y" -%}
|
9
|
+
{%- if page.last_modified_at -%}
|
10
|
+
{%- assign mdate = page.last_modified_at | date_to_xmlschema -%}
|
11
|
+
<time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified">
|
12
|
+
Last modified: {{ mdate | date: date_format }}
|
13
|
+
</time>
|
14
|
+
{%- endif -%}
|
15
|
+
</p>
|
7
16
|
</header>
|
8
17
|
<div class="post-content">
|
9
18
|
{{ content }}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sencilla
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mohit Saharan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|