spice-rack 0.3.0 → 0.4.0
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 +1 -0
- data/_includes/header.html +12 -10
- data/_layouts/home.html +2 -3
- data/_sass/_header.scss +5 -1
- data/_sass/_tags.scss +1 -0
- data/_sass/base/_variables.scss +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 32373f3e393f9f4a722d6746942038d72ea32939
|
|
4
|
+
data.tar.gz: 9d6c3b6128f20498f017cbae6a3037ea175194c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70e8002e0de918a7de30349258c008e3d8dc094968a3fccc97f571bffba20478798d232190ab8b030caf3cc194f8111b347dd7d3645bafcfc8fb3a106133f209
|
|
7
|
+
data.tar.gz: 62505a1aca126be2f6aab0074f78df48f4f26d2af6ebe46538da931e3c24ac2d4bf5b6dd7e73ac53670c89e71aed650b4b439a555ae2ba21192ea7349b537f9f
|
data/_includes/head.html
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
|
7
7
|
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
|
|
8
8
|
|
|
9
|
+
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
|
|
9
10
|
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
|
|
10
11
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
|
11
12
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
|
data/_includes/header.html
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
<header>
|
|
2
2
|
<div class="navigation-wrapper">
|
|
3
|
-
<h1>
|
|
4
|
-
<
|
|
5
|
-
<
|
|
6
|
-
<
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
<h1><a href="/">{{site.author}}</a></h1>
|
|
4
|
+
<ul>
|
|
5
|
+
<li>
|
|
6
|
+
<a href="https://github.com/{{site.github_username}}">
|
|
7
|
+
<i class="fa fa-github"></i>
|
|
8
|
+
</a>
|
|
9
|
+
</li>
|
|
10
|
+
<a href="https://twitter.com/{{site.twitter_username}}">
|
|
11
|
+
<i class="fa fa-twitter"></i>
|
|
12
|
+
</a>
|
|
13
|
+
</li>
|
|
14
|
+
</ul>
|
|
13
15
|
</div>
|
|
14
16
|
</header>
|
data/_layouts/home.html
CHANGED
data/_sass/_header.scss
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
header {
|
|
2
2
|
@include outer-container;
|
|
3
|
-
@include padding(
|
|
3
|
+
@include padding(1em null 1em null);
|
|
4
4
|
border-bottom: $base-border;
|
|
5
5
|
|
|
6
6
|
.navigation-wrapper {
|
|
7
7
|
@include span-columns(12);
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
+
h1 {
|
|
11
|
+
@include margin(0 null .3em null);
|
|
12
|
+
}
|
|
13
|
+
|
|
10
14
|
ul {
|
|
11
15
|
text-align: center;
|
|
12
16
|
|
data/_sass/_tags.scss
CHANGED
data/_sass/base/_variables.scss
CHANGED