jekyll-lux-covid-theme 0.0.3 → 0.0.4
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/header.html +5 -3
- data/_layouts/under_construction.html +27 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e1bc962615416b84d5732b1dabcbb43a05d5bd31e9390bb7f50754ec2fae248
|
|
4
|
+
data.tar.gz: b968a7e03c78d0718169d7b75a2ffd41bc8bc4f17ed6a4c73f1be53d2b5f4181
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d87b5054f8b24763b81179b8a0a9586e27b6dc3fa07641f1703d273eaa20ff98a9343993647a8a5211dfcff9ef14259c280d8f75c570ac36d0ba61070b3012e
|
|
7
|
+
data.tar.gz: 946c33b592ef96d8c531e801f21e8673e78537347b05f7f49adca3c87f500cdf1b8fd977b7bf45cf9ef1391457e841cc7f483e104efeb8f60a4adade9da53613
|
data/_includes/header.html
CHANGED
|
@@ -39,6 +39,9 @@
|
|
|
39
39
|
</label>
|
|
40
40
|
|
|
41
41
|
<div class="wrapper trigger page-tabs">
|
|
42
|
+
{%- if site.under_construction == true -%}
|
|
43
|
+
{%- else -%}
|
|
44
|
+
|
|
42
45
|
{%- assign my_pages = site.pages | sort:"order" -%}
|
|
43
46
|
|
|
44
47
|
{%- for my_page in my_pages -%}
|
|
@@ -52,12 +55,11 @@
|
|
|
52
55
|
{%- endif -%}
|
|
53
56
|
{%- endif -%}
|
|
54
57
|
{%- endfor -%}
|
|
58
|
+
|
|
59
|
+
{%- endif -%}
|
|
55
60
|
</div>
|
|
56
61
|
</nav>
|
|
57
62
|
{%- endif -%}
|
|
58
|
-
|
|
59
|
-
{%- if page_paths -%}
|
|
60
|
-
{%- endif -%}
|
|
61
63
|
</div>
|
|
62
64
|
</header>
|
|
63
65
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
|
3
|
+
|
|
4
|
+
{%- include head.html -%}
|
|
5
|
+
|
|
6
|
+
<body>
|
|
7
|
+
<div class="main">
|
|
8
|
+
<div class="content-wrapper">
|
|
9
|
+
{%- include header.html -%}
|
|
10
|
+
<main class="page-content" aria-label="Content">
|
|
11
|
+
<div class="wrapper">
|
|
12
|
+
{%- if page.show_print_button -%}
|
|
13
|
+
<div class="print-button">
|
|
14
|
+
<img src="{{ "assets/pdf.svg" | relative_url }}">
|
|
15
|
+
<a href="javascript:window.print()"><span>Print the page</span></a>
|
|
16
|
+
</div>
|
|
17
|
+
{%- endif -%}
|
|
18
|
+
|
|
19
|
+
The website is under construction, please come back in some time.
|
|
20
|
+
</div>
|
|
21
|
+
</main>
|
|
22
|
+
</div>
|
|
23
|
+
{%- include footer.html -%}
|
|
24
|
+
</div>
|
|
25
|
+
</body>
|
|
26
|
+
{%- include scripts.html -%}
|
|
27
|
+
</html>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-lux-covid-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- jaceklebioda_lux
|
|
@@ -84,6 +84,7 @@ files:
|
|
|
84
84
|
- _layouts/default.html
|
|
85
85
|
- _layouts/external.html
|
|
86
86
|
- _layouts/raw.html
|
|
87
|
+
- _layouts/under_construction.html
|
|
87
88
|
- _sass/minima.scss
|
|
88
89
|
- _sass/minima/_base.scss
|
|
89
90
|
- _sass/minima/_boxes.scss
|