jekyll-theme-peaceful-gates 1.1.0 → 1.2.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/footer.html +9 -0
- data/_includes/menu.html +12 -12
- data/_includes/social-bar.html +28 -35
- data/_includes/social-link.html +6 -0
- data/_layouts/default.html +1 -0
- data/_sass/jekyll-theme-peaceful-gates/_footer.scss +19 -0
- data/_sass/jekyll-theme-peaceful-gates/_menu.scss +7 -3
- data/_sass/jekyll-theme-peaceful-gates/_page.scss +1 -1
- data/_sass/jekyll-theme-peaceful-gates/_variables.scss +1 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3b45bb39728d85ff98765aba8f7fb628f095d1a06ca6ec7278e560737ab3ca0
|
|
4
|
+
data.tar.gz: 16e7e74509414de26956bab4a5f1e30fd0362b7c3ba9238b6c5af5c8ca8317b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46ce91cc7400651bdac6d743656cfa11298239eeeafb28a610616375d257fab57799fc292cdbe70cb11f46944a24e852b68bb2e3022bba478c5d0953d89ee541
|
|
7
|
+
data.tar.gz: b9ae514e300c1d57a0cd52369c86ff35c7796e3f2ca1fc687f8dfb847b2d8feacd522342a98b74064215f9d7cc4826ecd02b7361d7b619ef5cf2c33e58870667
|
data/_includes/menu.html
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
<div class="menu-window" id="menu-window">
|
|
2
2
|
<nav class="menu" id="menu">
|
|
3
3
|
<div class="menu-container">
|
|
4
|
+
|
|
5
|
+
<!-- Header -->
|
|
4
6
|
<header class="menu-header">
|
|
5
7
|
<div class="menu-header-left">
|
|
6
8
|
<button class="icon-button show-on-mobile" id="close-menu">
|
|
7
9
|
<span class="fas fa-chevron-left"></span>
|
|
8
10
|
</button>
|
|
9
|
-
<button class="icon-button" id="toggle-darkmode">
|
|
10
|
-
<span class="fas fa-moon"></span>
|
|
11
|
-
</button>
|
|
12
11
|
</div>
|
|
13
12
|
<div class="menu-header-right">
|
|
14
13
|
<a class="menu-title" href="{{ '/' | prepend: site.baseurl | prepend: site.url }}">
|
|
@@ -16,6 +15,8 @@
|
|
|
16
15
|
</a>
|
|
17
16
|
</div>
|
|
18
17
|
</header>
|
|
18
|
+
|
|
19
|
+
<!-- Menu Links -->
|
|
19
20
|
<ul class="menu-links">
|
|
20
21
|
{%- for link in site.links -%}
|
|
21
22
|
<li>
|
|
@@ -31,15 +32,14 @@
|
|
|
31
32
|
</li>
|
|
32
33
|
{%- endfor -%}
|
|
33
34
|
</ul>
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
</footer>
|
|
35
|
+
|
|
36
|
+
<!-- Menu Controls -->
|
|
37
|
+
<div class="menu-controls">
|
|
38
|
+
<button class="icon-button" id="toggle-darkmode">
|
|
39
|
+
<span class="fas fa-moon"></span>
|
|
40
|
+
</button>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
43
|
</div>
|
|
44
44
|
</nav>
|
|
45
45
|
</div>
|
data/_includes/social-bar.html
CHANGED
|
@@ -1,43 +1,36 @@
|
|
|
1
1
|
<div class="social-bar">
|
|
2
|
-
{%-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
{%- endif -%}
|
|
2
|
+
{%- include social-link.html
|
|
3
|
+
icon="fab fa-facebook"
|
|
4
|
+
prefix="http://www.facebook.com/"
|
|
5
|
+
handle=site.social.facebook -%}
|
|
7
6
|
|
|
8
|
-
{%-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
{%- endif -%}
|
|
7
|
+
{%- include social-link.html
|
|
8
|
+
icon="fab fa-twitter"
|
|
9
|
+
prefix="http://www.twitter.com/"
|
|
10
|
+
handle=site.social.twitter -%}
|
|
13
11
|
|
|
14
|
-
{%-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
{%- endif -%}
|
|
12
|
+
{%- include social-link.html
|
|
13
|
+
icon="fab fa-instagram"
|
|
14
|
+
prefix="http://www.instagram.com/"
|
|
15
|
+
handle=site.social.instagram -%}
|
|
19
16
|
|
|
20
|
-
{%-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
{%- endif -%}
|
|
17
|
+
{%- include social-link.html
|
|
18
|
+
icon="fab fa-youtube"
|
|
19
|
+
prefix="http://www.youtube.com/"
|
|
20
|
+
handle=site.social.youtube -%}
|
|
25
21
|
|
|
26
|
-
{%-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
{%- endif -%}
|
|
22
|
+
{%- include social-link.html
|
|
23
|
+
icon="fab fa-linkedin"
|
|
24
|
+
prefix="http://www.linkedin.com/in/"
|
|
25
|
+
handle=site.social.linkedin -%}
|
|
31
26
|
|
|
32
|
-
{%-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
{%- endif -%}
|
|
27
|
+
{%- include social-link.html
|
|
28
|
+
icon="fab fa-github"
|
|
29
|
+
prefix="http://www.github.com/"
|
|
30
|
+
handle=site.social.github -%}
|
|
37
31
|
|
|
38
|
-
{%-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
{%- endif -%}
|
|
32
|
+
{%- include social-link.html
|
|
33
|
+
icon="fas fa-envelope"
|
|
34
|
+
prefix="mailto://"
|
|
35
|
+
handle=site.social.email -%}
|
|
43
36
|
</div>
|
data/_layouts/default.html
CHANGED
|
@@ -1,13 +1,32 @@
|
|
|
1
1
|
.footer {
|
|
2
|
+
padding: $spacing-3;
|
|
3
|
+
@include on-desktop {
|
|
4
|
+
padding: $spacing-3 $content-gutters-width;
|
|
5
|
+
margin-top: $spacing-3;
|
|
6
|
+
margin-left: $desktop-menu-width;
|
|
7
|
+
}
|
|
2
8
|
font-size: $small-font-size;
|
|
3
9
|
text-align: center;
|
|
10
|
+
@include with-theme {
|
|
11
|
+
color: color-for(hl);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@mixin footer-section {
|
|
16
|
+
margin: $spacing-1 0pt;
|
|
4
17
|
}
|
|
5
18
|
|
|
6
19
|
.site-description {
|
|
20
|
+
@include footer-section;
|
|
7
21
|
text-align: justify;
|
|
8
22
|
}
|
|
9
23
|
|
|
24
|
+
.social-bar {
|
|
25
|
+
@include footer-section;
|
|
26
|
+
}
|
|
27
|
+
|
|
10
28
|
.copyright {
|
|
29
|
+
@include footer-section;
|
|
11
30
|
font-style: italic;
|
|
12
31
|
}
|
|
13
32
|
|
|
@@ -5,10 +5,8 @@
|
|
|
5
5
|
.main-container {
|
|
6
6
|
margin: $spacing-3;
|
|
7
7
|
@include on-desktop {
|
|
8
|
-
position: absolute;
|
|
9
|
-
left: $desktop-menu-width;
|
|
10
|
-
right: 0%;
|
|
11
8
|
margin: 0pt $spacing-3;
|
|
9
|
+
margin-left: $desktop-menu-width + $spacing-3;
|
|
12
10
|
}
|
|
13
11
|
}
|
|
14
12
|
|
|
@@ -100,4 +98,10 @@
|
|
|
100
98
|
}
|
|
101
99
|
}
|
|
102
100
|
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.menu-controls {
|
|
104
|
+
display: flex;
|
|
105
|
+
flex-direction: row;
|
|
106
|
+
align-items: center;
|
|
103
107
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-peaceful-gates
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- andydevs
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-10-
|
|
11
|
+
date: 2020-10-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -61,10 +61,12 @@ extra_rdoc_files: []
|
|
|
61
61
|
files:
|
|
62
62
|
- LICENSE.txt
|
|
63
63
|
- README.md
|
|
64
|
+
- _includes/footer.html
|
|
64
65
|
- _includes/head.html
|
|
65
66
|
- _includes/menu.html
|
|
66
67
|
- _includes/page-header.html
|
|
67
68
|
- _includes/social-bar.html
|
|
69
|
+
- _includes/social-link.html
|
|
68
70
|
- _layouts/centered.html
|
|
69
71
|
- _layouts/default.html
|
|
70
72
|
- _layouts/index.html
|