minimaless 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f6f8db4a344dfe4909eafabaa7e2efeb32a19cc
4
- data.tar.gz: 915549d5c95126f1c8dbba37e9ce0876077c13c2
3
+ metadata.gz: a477eeb2fdb5737190d40a024acd8f0407be523e
4
+ data.tar.gz: 9c2b3c67e0a44f6d448916a7905b18f260f40f72
5
5
  SHA512:
6
- metadata.gz: e1f9adb3bf7cdcc3be887ed1e2695fbd308f8c7d37b8c4c5bfc09648ba56246ae0c8ad677790331ff3f4c6866d30b6448426b3f4bc6fd605da8749707a5e1014
7
- data.tar.gz: e65b5c62b325a16ce98d184200f81bc9bc1372f50e792033392f76dc78a6b4f53232cf585f8bdce44fd4f7e77d99125cf400db5b917ccd3e2d4ac6f0b2084810
6
+ metadata.gz: e9972fe86a913974acf19b13517bab2983e48c9d3cffdf0a0a40c66cde6f6da911cb1effe904757b34a7ac7a980bac4d8ffcc56cad819d105358788d0b140205
7
+ data.tar.gz: 95e5f49e582e7a4a39ddd4ace04d00fc27abb5bf8697a9d895a773c253f258d1e01dada1cc902f95463bf655d427ceca6240f90c1492ed01c53b9ce2780f6a63
@@ -1,4 +1,11 @@
1
1
  <ul class="contact-icons">
2
+
3
+ {% if site.website %}
4
+ <li>
5
+ <a href="{{ site.website }}" target="_blank"><i class="icon fa fa-globe"></i></a>
6
+ </li>
7
+ {% endif %}
8
+
2
9
  {% if site.github_username %}
3
10
  <li>
4
11
  <a href="https://github.com/{{ site.github_username }}" target="_blank"><i class="icon fa fa-github"></i></a>
@@ -56,7 +63,12 @@
56
63
  {% endif %}
57
64
  {% endfor %}
58
65
 
59
- <li>
60
- <a href="{{ "/feed.xml" | relative_url }}"><i class="icon fa fa-rss"></i></a>
61
- </li>
66
+ {% for page in site.pages %}
67
+ {% if page.layout == 'blog' %}
68
+ <li>
69
+ <a href="{{ "/feed.xml" | relative_url }}"><i class="icon fa fa-rss"></i></a>
70
+ </li>
71
+ {% endif %}
72
+ {% endfor %}
73
+
62
74
  </ul>
@@ -4,7 +4,16 @@
4
4
  {% assign default_paths = site.pages | map: "path" %}
5
5
  {% assign page_paths = site.header_pages | default: default_paths %}
6
6
 
7
- <a class="site-title"href="{{ "/blog/" | relative_url }}">
7
+ <!-- If not using blog, make home link go to root page -->
8
+ <!-- {% for page in site.pages %} -->
9
+ <!-- {% if site.home_page != blank and page.title == site.home_page %} -->
10
+ <!-- <a class="site-title"href="{{ page.url | relative_url }}"> -->
11
+ <!-- {% elsif forloop.last == true %} -->
12
+ <!-- <a class="site-title"href="{{ "/" | relative_url }}"> -->
13
+ <!-- {% endif %} -->
14
+ <!-- {% endfor %} -->
15
+
16
+ <a class="site-title"href="{{ "/blog/" | relative_url }}">
8
17
  {% for file in site.static_files %}
9
18
  {% if file.basename == 'logo' %}
10
19
  <img class="site-logo" src="{{ file.path | relative_url }}" alt="site logo" />
@@ -10,9 +10,9 @@
10
10
  <main class="landing-content" id="contact-content" aria-label="Content">
11
11
  <div class="wrapper">
12
12
  <div class="contact">
13
- {% include contact-icons.html %}
14
13
 
15
14
  {{ content }}
15
+ {% include contact-icons.html %}
16
16
 
17
17
  </div>
18
18
  </div>
@@ -0,0 +1,21 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {% include head.html %}
5
+
6
+ <body>
7
+
8
+ <main class="landing-content" id="splash" aria-label="Content">
9
+ <div class="wrapper">
10
+ <div class="splash">
11
+
12
+ {{ content }}
13
+ {% include contact-icons.html %}
14
+
15
+ </div>
16
+ </div>
17
+ </main>
18
+
19
+ </body>
20
+
21
+ </html>
@@ -155,7 +155,6 @@
155
155
  padding: $spacing-unit 0;
156
156
  min-height: $content-height;
157
157
  background: $background-dark;
158
- color: #AAAAAA;
159
158
  display: -webkit-flex;
160
159
  display: -moz-flex;
161
160
  display: flex;
@@ -207,6 +206,12 @@
207
206
  }
208
207
  }
209
208
 
209
+ .about, .splash { color: #AAAAAA; }
210
+
211
+ #splash {
212
+ min-height: 100vh;
213
+ padding: 0;
214
+ }
210
215
 
211
216
  /**
212
217
  * Page content
@@ -222,6 +227,8 @@
222
227
  @for $i from 1 through 10 {
223
228
  .blog li:nth-child(#{$i}),
224
229
  .contact .contact-icons li:nth-child(#{$i}),
230
+ .splash p:nth-child(#{$i}),
231
+ .splash .contact-icons li:nth-child(#{$i}),
225
232
  .landing-content .about p:nth-child(#{$i}) {
226
233
  -webkit-animation: fadein .5s + $i/2; /* Safari, Chrome and Opera > 12.1 */
227
234
  -moz-animation: fadein .5s + $i/2; /* Firefox < 16 */
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimaless
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - brettinternet
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-05 00:00:00.000000000 Z
11
+ date: 2017-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -59,6 +59,7 @@ files:
59
59
  - _layouts/default.html
60
60
  - _layouts/page.html
61
61
  - _layouts/post.html
62
+ - _layouts/splash.html
62
63
  - _sass/minimaless.scss
63
64
  - _sass/minimaless/_base.scss
64
65
  - _sass/minimaless/_layout.scss