geekyll 0.1.1 → 0.1.2
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 +5 -5
- data/README.md +2 -2
- data/_includes/footer.html +1 -1
- data/_includes/head.html +1 -1
- data/_includes/social.html +7 -1
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 84412521fdd2daae025fc712fa11cb906b848f41689038c32ec3bbe3381cc4b6
|
4
|
+
data.tar.gz: f1fd4367b965a9c1d633659f42be631945ec3a51931afb6b3d54eaac4dee7e0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 972cb5fa15f449cf8c4e700ea0badf61801708f64084ea48039d001f1d2dbe576088f605d7a6567091f286d254305f5eb90c51202552fb685c92f5f22b3e8414
|
7
|
+
data.tar.gz: 860eb16820e716b25d658dc15d1905556b21ecfbffd4e7507abb451775d760900d52f284e9e82ff9e3fe12f1af986c277e13e9fce6433009948ae24346aa80f5
|
data/README.md
CHANGED
@@ -68,7 +68,7 @@ layout: index
|
|
68
68
|
* `root`: Sets the base structure for every sub-layout.
|
69
69
|
* `index`: The one you have to extend to use the front-page system.
|
70
70
|
* `post`: **Uncomplete**. This theme is not intended to cohabitate with blogs (yet)
|
71
|
-
* `page`:
|
71
|
+
* `page`: This layout should be extended for single pages. If they take part in the front-page system, will be included in the landing page. Take in account that pages are still accessible via URI, e.g `example.org/portfolio`. This is useful for let search engines know that your site is still divided into sections (by feed.xml)
|
72
72
|
|
73
73
|
### Includes
|
74
74
|
|
@@ -82,7 +82,7 @@ layout: index
|
|
82
82
|
twitter: johndoe
|
83
83
|
email: johndoe@foobar.com
|
84
84
|
```
|
85
|
-
* `opengrpah`: Meta tags for good
|
85
|
+
* `opengrpah`: Meta tags for good-looking media sharing.
|
86
86
|
* `footer`: Three colums footer for copyright announcement,social links and featuring technologies.
|
87
87
|
|
88
88
|
|
data/_includes/footer.html
CHANGED
data/_includes/head.html
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
|
19
19
|
<link rel="stylesheet" href="//{{ site.url }}/css/main.css" />
|
20
20
|
<link rel="canonical" href="//{{ site.url }}{{ page.url }}" />
|
21
|
-
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.url }}/feed.xml" />
|
21
|
+
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="//{{ site.url }}/feed.xml" />
|
22
22
|
|
23
23
|
{% for css in site.extra_css %}
|
24
24
|
<link rel="stylesheet" href="{{ site.url }}/{{ css }}" />
|
data/_includes/social.html
CHANGED
@@ -7,7 +7,13 @@
|
|
7
7
|
|
8
8
|
{% assign current_social = site.social_links | where: 'platform', social_platform | first %}
|
9
9
|
{% if current_social %}
|
10
|
-
<a
|
10
|
+
<a href="{{ current_social.url }}{{ social_username }}"
|
11
|
+
{% if include.title == 'simple' %}
|
12
|
+
title="{{ social_platform | capitalize }}"
|
13
|
+
{% else %}
|
14
|
+
title="{{ current_social.title }}"
|
15
|
+
{% endif %}
|
16
|
+
target="_blank"><!--
|
11
17
|
--><i class="{{ current_social.icon }}" aria-hidden="true" ></i><!--
|
12
18
|
--></a>
|
13
19
|
{% endif %}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: geekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sonirico
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -44,18 +44,18 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 12.3.3
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 12.3.3
|
55
55
|
description: 'Geekyll strong feature is a dynamic front-page system. Featuring: Bootstrap
|
56
56
|
4, jQuery, Fontawesome.'
|
57
57
|
email:
|
58
|
-
- marsanben92@
|
58
|
+
- marsanben92@gmail.com
|
59
59
|
executables: []
|
60
60
|
extensions: []
|
61
61
|
extra_rdoc_files: []
|
@@ -183,8 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
183
|
- !ruby/object:Gem::Version
|
184
184
|
version: '0'
|
185
185
|
requirements: []
|
186
|
-
|
187
|
-
rubygems_version: 2.6.7
|
186
|
+
rubygems_version: 3.0.3
|
188
187
|
signing_key:
|
189
188
|
specification_version: 4
|
190
189
|
summary: Geek jekyll theme for cool organizations.
|