jekyll-theme-nettoyer 0.0.3 → 0.0.4
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/_includes/_head.html +3 -0
- data/_includes/_main-footer.html +9 -4
- data/_includes/_main-header.html +1 -1
- data/_includes/_main-nav.html +5 -1
- data/_layouts/default.html +1 -1
- data/_sass/components/_main-content.scss +7 -0
- data/_sass/core/_base.scss +2 -0
- data/assets/favicon.ico +0 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6526c833db29bb1ad414de426b0e3288e1c47b6b
|
4
|
+
data.tar.gz: d0b5e39656c3e731e9fcc2c0fc428e75d7bb8cac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e9e94d36938bad3533d42c7c3a3feaa02e209ac09347595fdfde2a265d22e9d83a914bbc2e8e516c8a3f8601cf95f33bf3a0af5151a742e51939ce2df194ac0
|
7
|
+
data.tar.gz: 79796fb19d5541da8a10e10e243eb383739f50be41272a4551f9e4bd5494e7e1729d5e66d9205d2a8dfa477b8735685d3964b7638eee4d8af879d1bb56002aa2
|
data/_includes/_head.html
CHANGED
@@ -1,7 +1,10 @@
|
|
1
1
|
<head>
|
2
2
|
<meta charset="utf-8">
|
3
3
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
4
|
+
<meta name="description" content="{{ site.description }}">
|
5
|
+
<meta name="theme-color" content="#333">
|
4
6
|
|
7
|
+
<link rel="shortcut icon" type="image/x-icon" href="{{ '/assets/favicon.ico' | relative_url }}">
|
5
8
|
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
|
6
9
|
|
7
10
|
<title>{{ site.title }}</title>
|
data/_includes/_main-footer.html
CHANGED
@@ -1,15 +1,20 @@
|
|
1
1
|
<footer class="main-footer">
|
2
2
|
<section class="social-network">
|
3
3
|
<ul class="social-list">
|
4
|
-
|
4
|
+
{% for network in site.social%}
|
5
|
+
<li class="social">
|
6
|
+
<a class="social" href="{{ network.url }}" target="_blank">
|
7
|
+
{{ network.name }}
|
8
|
+
</a>
|
9
|
+
</li>
|
10
|
+
{% endfor %}
|
5
11
|
</ul>
|
6
12
|
</section>
|
7
13
|
|
8
14
|
<section class="disclaimer-section">
|
9
15
|
<p class="disclaimer">
|
10
|
-
|
11
|
-
|
12
|
-
nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
16
|
+
Developed with <a href="https://jekyllrb.com/">Jekyll</a> using the
|
17
|
+
<a href="https://github.com/idlua/jekyll-theme-nettoyer">nettoyer</a> theme.
|
13
18
|
</p>
|
14
19
|
</section>
|
15
20
|
|
data/_includes/_main-header.html
CHANGED
data/_includes/_main-nav.html
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
<h2 class="title">Main navigation</h2>
|
3
3
|
|
4
4
|
<ul class="menu-list">
|
5
|
-
|
5
|
+
{% for menu in site.nav%}
|
6
|
+
<li class="menu">
|
7
|
+
<a class="link" href="{{ menu.url | relative_url }}">{{ menu.name }}</a>
|
8
|
+
</li>
|
9
|
+
{% endfor %}
|
6
10
|
</ul>
|
7
11
|
</nav>
|
data/_layouts/default.html
CHANGED
data/_sass/core/_base.scss
CHANGED
data/assets/favicon.ico
ADDED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-nettoyer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luan Vicente
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-09-
|
11
|
+
date: 2017-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -77,6 +77,7 @@ files:
|
|
77
77
|
- _sass/core/_typography.scss
|
78
78
|
- _sass/nettoyer.scss
|
79
79
|
- assets/css/style.scss
|
80
|
+
- assets/favicon.ico
|
80
81
|
homepage: https://github.com/idlua/jekyll-theme-nettoyer
|
81
82
|
licenses:
|
82
83
|
- MIT
|