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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3ceb906e9ed0ba1962f058de9f2752ce081fabb6
4
- data.tar.gz: 7cccb7fe067d69041de3910be934df129e7821a7
3
+ metadata.gz: 6526c833db29bb1ad414de426b0e3288e1c47b6b
4
+ data.tar.gz: d0b5e39656c3e731e9fcc2c0fc428e75d7bb8cac
5
5
  SHA512:
6
- metadata.gz: 4395615747ff37a6a6d44a047983af63c25e320ea881b44fff336ad3b938901673a1a0950b72e0f378c3aa3a32f26024afffdc6da8edc7ad657d66f074fc8c33
7
- data.tar.gz: e2ee861763919299e0e93e2d3c0e346f184b20e11ec1511c82eefb5674c7f08d6f3fe009f592bc72a18395e016f70d4d8611b14adad473a641a1ba61ebfedc74
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>
@@ -1,15 +1,20 @@
1
1
  <footer class="main-footer">
2
2
  <section class="social-network">
3
3
  <ul class="social-list">
4
- <li class="social"><a class="social" href="">Social Network</a></li>
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
- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
11
- incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis
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
 
@@ -1,5 +1,5 @@
1
1
  <header class="main-header">
2
- <h1 class="title"><a href="">nettoyer</a></h1>
2
+ <h1 class="title"><a href="{{ site.url }}">{{ site.name }}</a></h1>
3
3
 
4
4
  {% include _main-nav.html %}
5
5
  </header>
@@ -2,6 +2,10 @@
2
2
  <h2 class="title">Main navigation</h2>
3
3
 
4
4
  <ul class="menu-list">
5
- <li class="menu"><a class="link" href="">Menu</a></li>
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>
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <html>
2
+ <html lang="{{ site.locale }}">
3
3
  {% include _head.html %}
4
4
 
5
5
  <body>
@@ -2,7 +2,14 @@
2
2
  @extend %section-commom;
3
3
  @extend %content-wrapper;
4
4
 
5
+ margin-top: 40px;
5
6
  font-family: $f_secondary;
6
7
 
7
8
  > p { font-size: 22px; }
9
+
10
+ ol,
11
+ ul,
12
+ li {
13
+ list-style: square;
14
+ }
8
15
  }
@@ -35,6 +35,8 @@ h3,
35
35
  h4,
36
36
  h5,
37
37
  h6 {
38
+ @extend %section-commom;
39
+
38
40
  font-family: $f_primary;
39
41
  font-weight: $f_weight-bold;
40
42
  }
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.3
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-09 00:00:00.000000000 Z
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