jekyll-theme-heidi 2.0.2 → 2.0.3
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/sidebar.html +8 -8
- data/_sass/heidi.scss +7 -34
- data/assets/img/cat.jpg +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: 0a7d9b0f7e78bde1617c7f0d83c88f54de49a897
|
|
4
|
+
data.tar.gz: 3d6f44ebe472188bd1e0d5b1fb5e8e790704c435
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a26f5174f417706d88c5f7951fea2329a3d9404fb586e4e26ef1463eb552ff717b0c3944d748391591a0541eac6f9777fd8962d7f8bc1cb0af1b3db9d88a84af
|
|
7
|
+
data.tar.gz: aaf0b5a60a23568600b08c9203a493eb397f0428fa9f17ce75e3568739e3e03834efc7fda6cfa837069337ee3a766975628dc2bdd2587b8331424c14ed42df46
|
data/_includes/sidebar.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="sidebar">
|
|
1
|
+
<div class="sidebar" style="background-color:{{ site.color }};background-image:url({{ site.image }})">
|
|
2
2
|
<div class="container sidebar-sticky">
|
|
3
3
|
<div class="sidebar-about">
|
|
4
4
|
<h1>
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
<a class="sidebar-nav-item" href="{{ site.github.repo }}/archive/v{{ site.version }}.zip">Download</a>
|
|
31
31
|
<a class="sidebar-nav-item" href="{{ site.github.repo }}">GitHub project</a>
|
|
32
32
|
<span class="sidebar-nav-item">Currently v{{ site.version }}</span>
|
|
33
|
+
{% assign author = site.data.authors.first[1] %}
|
|
34
|
+
{% if author.social %}
|
|
35
|
+
<div class="sidebar-social">
|
|
36
|
+
{% include social.html social=author.social %}
|
|
37
|
+
</div>
|
|
38
|
+
{% endif %}
|
|
39
|
+
|
|
33
40
|
</nav>
|
|
34
41
|
|
|
35
|
-
{% assign author = site.data.authors.first[1] %}
|
|
36
|
-
{% if author.social %}
|
|
37
|
-
<div class="sidebar-social">
|
|
38
|
-
{% include social.html social=author.social %}
|
|
39
|
-
</div>
|
|
40
|
-
{% endif %}
|
|
41
|
-
|
|
42
42
|
<div class="sidebar-copyright">
|
|
43
43
|
<p>© {{ site.time | date: '%Y' }}. All rights reserved.</p>
|
|
44
44
|
</div>
|
data/_sass/heidi.scss
CHANGED
|
@@ -12,23 +12,6 @@
|
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
/*
|
|
16
|
-
* Contents
|
|
17
|
-
*
|
|
18
|
-
* Global resets
|
|
19
|
-
* Sidebar
|
|
20
|
-
* Container
|
|
21
|
-
* Reverse layout
|
|
22
|
-
* Themes
|
|
23
|
-
*/
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
/*
|
|
27
|
-
* Global resets
|
|
28
|
-
*
|
|
29
|
-
* Update the foundational and global aspects of the page.
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
15
|
/*
|
|
33
16
|
* Sidebar
|
|
34
17
|
*
|
|
@@ -36,41 +19,31 @@
|
|
|
36
19
|
* out above content in mobile and later moves to the side with wider viewports.
|
|
37
20
|
*/
|
|
38
21
|
|
|
22
|
+
.sidebar {
|
|
23
|
+
background: center / cover;
|
|
24
|
+
}
|
|
39
25
|
.sidebar-social {
|
|
40
|
-
|
|
26
|
+
padding-top: 10px;
|
|
27
|
+
padding-bottom: 10px;
|
|
41
28
|
}
|
|
42
|
-
|
|
43
29
|
.sidebar-social ul {
|
|
44
|
-
list-style-type: none;
|
|
45
30
|
margin: 0;
|
|
46
31
|
padding: 0;
|
|
47
32
|
}
|
|
48
|
-
|
|
49
33
|
.sidebar-social li {
|
|
50
34
|
display: inline-block;
|
|
51
|
-
/**/
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.sidebar-social li a {
|
|
55
|
-
display: block;
|
|
56
35
|
}
|
|
57
|
-
|
|
58
36
|
.social-button svg {
|
|
59
37
|
height: 32px;
|
|
60
38
|
width: 32px;
|
|
61
39
|
}
|
|
62
|
-
|
|
63
40
|
#icon-mail svg {
|
|
64
41
|
height: 32px;
|
|
65
42
|
width: 40px;
|
|
66
43
|
}
|
|
67
|
-
|
|
68
44
|
.social-button path {
|
|
69
45
|
fill: #FFFFFF;
|
|
70
46
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
.sidebar-copyright {
|
|
74
|
-
float: left;
|
|
47
|
+
.social-button:hover path {
|
|
48
|
+
fill: #808080;
|
|
75
49
|
}
|
|
76
|
-
*/
|
data/assets/img/cat.jpg
ADDED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-heidi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mark Otto
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-07-
|
|
12
|
+
date: 2017-07-31 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: jekyll
|
|
@@ -122,6 +122,7 @@ files:
|
|
|
122
122
|
- _sass/syntax.scss
|
|
123
123
|
- assets/apple-touch-icon-144-precomposed.png
|
|
124
124
|
- assets/favicon.ico
|
|
125
|
+
- assets/img/cat.jpg
|
|
125
126
|
- assets/styles.scss
|
|
126
127
|
homepage: https://gitlab.com/howlinbash/heidi
|
|
127
128
|
licenses:
|