minimaless 0.0.6 → 0.0.7
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/contact-icons.html +15 -3
- data/_includes/header.html +10 -1
- data/_layouts/contact.html +1 -1
- data/_layouts/splash.html +21 -0
- data/_sass/minimaless/_layout.scss +8 -1
- 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: a477eeb2fdb5737190d40a024acd8f0407be523e
|
4
|
+
data.tar.gz: 9c2b3c67e0a44f6d448916a7905b18f260f40f72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
60
|
-
|
61
|
-
|
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>
|
data/_includes/header.html
CHANGED
@@ -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
|
-
|
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" />
|
data/_layouts/contact.html
CHANGED
@@ -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.
|
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-
|
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
|