jekyll-theme-ethereal 0.4.1 → 0.4.2
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/panel_banner.html +1 -1
- data/_includes/panel_spotlight.html +1 -1
- data/_includes/scripts.html +2 -1
- data/_includes/thread.html +1 -1
- data/assets/js/lazy-loading.js +22 -0
- data/en/privacy-policy.md +2 -2
- metadata +3 -47
- data/assets/data/space_launches.json +0 -165
- data/assets/images/bg.jpg +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/gallery/fulls/01.jpg +0 -0
- data/assets/images/gallery/fulls/02.jpg +0 -0
- data/assets/images/gallery/fulls/03.jpg +0 -0
- data/assets/images/gallery/fulls/04.jpg +0 -0
- data/assets/images/gallery/fulls/05.jpg +0 -0
- data/assets/images/gallery/fulls/06.jpg +0 -0
- data/assets/images/gallery/fulls/07.jpg +0 -0
- data/assets/images/gallery/fulls/08.jpg +0 -0
- data/assets/images/gallery/fulls/09.jpg +0 -0
- data/assets/images/gallery/fulls/drone.jpg +0 -0
- data/assets/images/gallery/fulls/gpim.jpg +0 -0
- data/assets/images/gallery/fulls/hr-9024_cme.jpg +0 -0
- data/assets/images/gallery/fulls/jupiter_abyss.jpg +0 -0
- data/assets/images/gallery/fulls/jupiter_storms.jpg +0 -0
- data/assets/images/gallery/fulls/mars_jezero-crater.jpg +0 -0
- data/assets/images/gallery/fulls/ngc-1156.jpg +0 -0
- data/assets/images/gallery/fulls/ngc-2392.jpg +0 -0
- data/assets/images/gallery/fulls/ngc-3169.jpg +0 -0
- data/assets/images/gallery/fulls/ngc-6543.jpg +0 -0
- data/assets/images/gallery/fulls/ngc-7293.jpg +0 -0
- data/assets/images/gallery/fulls/orion_crew-module_testing.jpg +0 -0
- data/assets/images/gallery/fulls/saturn_testing.jpg +0 -0
- data/assets/images/gallery/fulls/sls-core_staging.jpg +0 -0
- data/assets/images/gallery/fulls/ugc-2369.jpg +0 -0
- data/assets/images/gallery/thumbs/01.jpg +0 -0
- data/assets/images/gallery/thumbs/02.jpg +0 -0
- data/assets/images/gallery/thumbs/03.jpg +0 -0
- data/assets/images/gallery/thumbs/04.jpg +0 -0
- data/assets/images/gallery/thumbs/05.jpg +0 -0
- data/assets/images/gallery/thumbs/06.jpg +0 -0
- data/assets/images/gallery/thumbs/07.jpg +0 -0
- data/assets/images/gallery/thumbs/08.jpg +0 -0
- data/assets/images/gallery/thumbs/09.jpg +0 -0
- data/assets/images/halley-vi.jpg +0 -0
- data/assets/images/orion_las.jpg +0 -0
- data/assets/images/overlay.png +0 -0
- data/assets/images/pic01.jpg +0 -0
- data/assets/images/pic02.jpg +0 -0
- data/assets/images/pic03.jpg +0 -0
- data/assets/images/pillars-of-creation.jpg +0 -0
- data/assets/images/screenshot.jpg +0 -0
- data/assets/images/zeta-ophiuchi.jpg +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb6faec45c17900cf3e2cce092fce7a28cc4cda3ee171c098d5fa1ca4a5a8a04
|
|
4
|
+
data.tar.gz: 629398bbd223095d4e0a801e2c1b9bc83d6d6df04cd26e63b3e70c58735650e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8d7968a57d9f4b908c5c8bd37183995b7c25a71d1b0bc19b123d69272fff16b6eb6a806e61efa5d199be211d9b2de6b71dc229b14bd1f548408f33031723786
|
|
7
|
+
data.tar.gz: 1b497a21a96dde1359651970aba995fd2333b7d800bbc9b9b995a346381f7a04301516695e654da8c2b58c6d62f3f0b0988aae3d86b624ac0fe854503004e9f3
|
data/_includes/panel_banner.html
CHANGED
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
<div
|
|
17
17
|
class="image filtered span-1-75"
|
|
18
18
|
data-position="{{ include.style.background.position | default: '25% 25%' }}">
|
|
19
|
-
<img src="{{ include.style.background.image | absolute_url }}" alt="" />
|
|
19
|
+
<img class="lazy-loading" src="{{ include.style.background.image.thumbnail | absolute_url }}" data-src="{{ include.style.background.image.fullsize | absolute_url }}" alt="" />
|
|
20
20
|
</div>
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
<p>{{ include.header.description }}</p>
|
|
5
5
|
</div>
|
|
6
6
|
<div class="image filtered tinted" data-position="{{ include.style.background.position }}">
|
|
7
|
-
<img src="{{ include.style.background.image | absolute_url }}" alt="{{ include.background.alt }}" />
|
|
7
|
+
<img class="lazy-loading" src="{{ include.style.background.image.thumbnail | absolute_url }}" data-src="{{ include.style.background.image.fullsize | absolute_url }}" alt="{{ include.background.alt }}" />
|
|
8
8
|
</div>
|
data/_includes/scripts.html
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
<!-- Scripts -->
|
|
2
|
-
<script src="{{ 'assets/js/jquery.min.js' | absolute_url }}" type="text/javascript"
|
|
2
|
+
<script src="{{ 'assets/js/jquery.min.js' | absolute_url }}" type="text/javascript" ></script>
|
|
3
3
|
<script src="{{ 'assets/js/browser.min.js' | absolute_url }}" type="text/javascript" ></script>
|
|
4
4
|
<script src="{{ 'assets/js/breakpoints.min.js' | absolute_url }}" type="text/javascript" ></script>
|
|
5
|
+
<script src="{{ 'assets/js/lazy-loading.js' | absolute_url }}" type="text/javascript" ></script>
|
|
5
6
|
<script src="{{ 'assets/js/main.js' | absolute_url }}" type="text/javascript" ></script>
|
|
6
7
|
<script src="{{ 'assets/js/cookieconsent.min.js' | absolute_url }}" data-cfasync="false" type="text/javascript" ></script>
|
|
7
8
|
<script>
|
data/_includes/thread.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<div class="posts">
|
|
9
9
|
{%- for post in posts -%}
|
|
10
10
|
<article>
|
|
11
|
-
<a href="{{ post.url | absolute_url }}" class="image"><img src="{{ post.image | absolute_url }}" alt="" /></a>
|
|
11
|
+
<a href="{{ post.url | absolute_url }}" class="image"><img class="lazy-loading" src="{{ post.image.thumbnail | absolute_url }}" data-src="{{ post.image.fullsize | absolute_url }}" alt="" /></a>
|
|
12
12
|
<h3>{{ post.title | escape }}</h3>
|
|
13
13
|
<!-- <span>{{ post.date | date: date_format }}</span> -->
|
|
14
14
|
<p>{{ post.excerpt }}</p>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
document.addEventListener("DOMContentLoaded", function() {
|
|
2
|
+
var lazyImages = [].slice.call(document.querySelectorAll("img.lazy-loading"));
|
|
3
|
+
|
|
4
|
+
if ("IntersectionObserver" in window) {
|
|
5
|
+
let lazyImageObserver = new IntersectionObserver(function(entries, observer) {
|
|
6
|
+
entries.forEach(function(entry) {
|
|
7
|
+
if (entry.isIntersecting) {
|
|
8
|
+
let lazyImage = entry.target;
|
|
9
|
+
lazyImage.src = lazyImage.dataset.src;
|
|
10
|
+
lazyImage.classList.remove("lazy-loading");
|
|
11
|
+
lazyImageObserver.unobserve(lazyImage);
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
lazyImages.forEach(function(lazyImage) {
|
|
17
|
+
lazyImageObserver.observe(lazyImage);
|
|
18
|
+
});
|
|
19
|
+
} else {
|
|
20
|
+
// Possibly fall back to a more compatible method here
|
|
21
|
+
}
|
|
22
|
+
});
|
data/en/privacy-policy.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
2
|
layout: collection
|
|
3
|
-
lang-ref: privacy-policy-page
|
|
4
3
|
collection: panels
|
|
4
|
+
lang-ref: privacy-policy-page
|
|
5
5
|
title: "Jekyll Theme Ethereal"
|
|
6
6
|
subtitle: "Privacy Policy"
|
|
7
7
|
description: >-
|
|
8
|
-
|
|
8
|
+
Our privacy policy is quite straight forward, we do not log nor share any personal information about our visitors, period.
|
|
9
9
|
---
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-ethereal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Mougeolle
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -135,55 +135,11 @@ files:
|
|
|
135
135
|
- assets/css/main.scss
|
|
136
136
|
- assets/css/mapbox-gl.css
|
|
137
137
|
- assets/css/noscript.scss
|
|
138
|
-
- assets/data/space_launches.json
|
|
139
|
-
- assets/images/bg.jpg
|
|
140
|
-
- assets/images/favicon.ico
|
|
141
|
-
- assets/images/gallery/fulls/01.jpg
|
|
142
|
-
- assets/images/gallery/fulls/02.jpg
|
|
143
|
-
- assets/images/gallery/fulls/03.jpg
|
|
144
|
-
- assets/images/gallery/fulls/04.jpg
|
|
145
|
-
- assets/images/gallery/fulls/05.jpg
|
|
146
|
-
- assets/images/gallery/fulls/06.jpg
|
|
147
|
-
- assets/images/gallery/fulls/07.jpg
|
|
148
|
-
- assets/images/gallery/fulls/08.jpg
|
|
149
|
-
- assets/images/gallery/fulls/09.jpg
|
|
150
|
-
- assets/images/gallery/fulls/drone.jpg
|
|
151
|
-
- assets/images/gallery/fulls/gpim.jpg
|
|
152
|
-
- assets/images/gallery/fulls/hr-9024_cme.jpg
|
|
153
|
-
- assets/images/gallery/fulls/jupiter_abyss.jpg
|
|
154
|
-
- assets/images/gallery/fulls/jupiter_storms.jpg
|
|
155
|
-
- assets/images/gallery/fulls/mars_jezero-crater.jpg
|
|
156
|
-
- assets/images/gallery/fulls/ngc-1156.jpg
|
|
157
|
-
- assets/images/gallery/fulls/ngc-2392.jpg
|
|
158
|
-
- assets/images/gallery/fulls/ngc-3169.jpg
|
|
159
|
-
- assets/images/gallery/fulls/ngc-6543.jpg
|
|
160
|
-
- assets/images/gallery/fulls/ngc-7293.jpg
|
|
161
|
-
- assets/images/gallery/fulls/orion_crew-module_testing.jpg
|
|
162
|
-
- assets/images/gallery/fulls/saturn_testing.jpg
|
|
163
|
-
- assets/images/gallery/fulls/sls-core_staging.jpg
|
|
164
|
-
- assets/images/gallery/fulls/ugc-2369.jpg
|
|
165
|
-
- assets/images/gallery/thumbs/01.jpg
|
|
166
|
-
- assets/images/gallery/thumbs/02.jpg
|
|
167
|
-
- assets/images/gallery/thumbs/03.jpg
|
|
168
|
-
- assets/images/gallery/thumbs/04.jpg
|
|
169
|
-
- assets/images/gallery/thumbs/05.jpg
|
|
170
|
-
- assets/images/gallery/thumbs/06.jpg
|
|
171
|
-
- assets/images/gallery/thumbs/07.jpg
|
|
172
|
-
- assets/images/gallery/thumbs/08.jpg
|
|
173
|
-
- assets/images/gallery/thumbs/09.jpg
|
|
174
|
-
- assets/images/halley-vi.jpg
|
|
175
|
-
- assets/images/orion_las.jpg
|
|
176
|
-
- assets/images/overlay.png
|
|
177
|
-
- assets/images/pic01.jpg
|
|
178
|
-
- assets/images/pic02.jpg
|
|
179
|
-
- assets/images/pic03.jpg
|
|
180
|
-
- assets/images/pillars-of-creation.jpg
|
|
181
|
-
- assets/images/screenshot.jpg
|
|
182
|
-
- assets/images/zeta-ophiuchi.jpg
|
|
183
138
|
- assets/js/breakpoints.min.js
|
|
184
139
|
- assets/js/browser.min.js
|
|
185
140
|
- assets/js/cookieconsent.min.js
|
|
186
141
|
- assets/js/jquery.min.js
|
|
142
|
+
- assets/js/lazy-loading.js
|
|
187
143
|
- assets/js/main.js
|
|
188
144
|
- assets/js/mapbox-gl.js
|
|
189
145
|
- assets/js/simple-jekyll-search.min.js
|
|
@@ -1,165 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"type": "FeatureCollection",
|
|
3
|
-
"features": [
|
|
4
|
-
{
|
|
5
|
-
"id": 1670,
|
|
6
|
-
"type": "Feature",
|
|
7
|
-
"properties": {
|
|
8
|
-
"name": "Long March 3B | Zhongxing 2D (Chinasat 2D)",
|
|
9
|
-
"icon": "rocket",
|
|
10
|
-
"windowstart": "January 10, 2019 17:11:04 UTC"
|
|
11
|
-
},
|
|
12
|
-
"geometry": {
|
|
13
|
-
"type": "Point",
|
|
14
|
-
"coordinates": [
|
|
15
|
-
28.246017,
|
|
16
|
-
102.026556
|
|
17
|
-
]
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": 1276,
|
|
22
|
-
"type": "Feature",
|
|
23
|
-
"properties": {
|
|
24
|
-
"name": "Falcon 9 Block 5 | Iridium-8",
|
|
25
|
-
"icon": "rocket",
|
|
26
|
-
"windowstart": "January 11, 2019 15:31:33 UTC"
|
|
27
|
-
},
|
|
28
|
-
"geometry": {
|
|
29
|
-
"type": "Point",
|
|
30
|
-
"coordinates": [
|
|
31
|
-
34.632,
|
|
32
|
-
-120.611
|
|
33
|
-
]
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"id": 1675,
|
|
38
|
-
"type": "Feature",
|
|
39
|
-
"properties": {
|
|
40
|
-
"name": "Simorgh | Payam",
|
|
41
|
-
"icon": "rocket",
|
|
42
|
-
"windowstart": "January 15, 2019 00:30:00 UTC"
|
|
43
|
-
},
|
|
44
|
-
"geometry": {
|
|
45
|
-
"type": "Point",
|
|
46
|
-
"coordinates": [
|
|
47
|
-
35.238,
|
|
48
|
-
53.950778
|
|
49
|
-
]
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"id": 1307,
|
|
54
|
-
"type": "Feature",
|
|
55
|
-
"properties": {
|
|
56
|
-
"name": "Epsilon | RAPIS-1 & others",
|
|
57
|
-
"icon": "rocket",
|
|
58
|
-
"windowstart": "January 18, 2019 00:50:20 UTC"
|
|
59
|
-
},
|
|
60
|
-
"geometry": {
|
|
61
|
-
"type": "Point",
|
|
62
|
-
"coordinates": [
|
|
63
|
-
31.251,
|
|
64
|
-
131.0813
|
|
65
|
-
]
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"id": 1288,
|
|
70
|
-
"type": "Feature",
|
|
71
|
-
"properties": {
|
|
72
|
-
"name": "Delta IV Heavy | NROL-71",
|
|
73
|
-
"icon": "rocket",
|
|
74
|
-
"windowstart": "January 19, 2019 19:10:00 UTC"
|
|
75
|
-
},
|
|
76
|
-
"geometry": {
|
|
77
|
-
"type": "Point",
|
|
78
|
-
"coordinates": [
|
|
79
|
-
34.5815,
|
|
80
|
-
-120.6262
|
|
81
|
-
]
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"id": 1669,
|
|
86
|
-
"type": "Feature",
|
|
87
|
-
"properties": {
|
|
88
|
-
"name": "Long March 11 | Jilin-1 Hyperspectral 01, 02, Xiaoxiang-1-03, Lingque-1A",
|
|
89
|
-
"icon": "rocket",
|
|
90
|
-
"windowstart": "January 21, 2019 05:38:00 UTC"
|
|
91
|
-
},
|
|
92
|
-
"geometry": {
|
|
93
|
-
"type": "Point",
|
|
94
|
-
"coordinates": [
|
|
95
|
-
40.958,
|
|
96
|
-
100.291
|
|
97
|
-
]
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"id": 1614,
|
|
102
|
-
"type": "Feature",
|
|
103
|
-
"properties": {
|
|
104
|
-
"name": "PSLV-DL | Microsat-R",
|
|
105
|
-
"icon": "rocket",
|
|
106
|
-
"windowstart": "January 24, 2019 17:30:00 UTC"
|
|
107
|
-
},
|
|
108
|
-
"geometry": {
|
|
109
|
-
"type": "Point",
|
|
110
|
-
"coordinates": [
|
|
111
|
-
13.733,
|
|
112
|
-
80.235
|
|
113
|
-
]
|
|
114
|
-
}
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"id": 1678,
|
|
118
|
-
"type": "Feature",
|
|
119
|
-
"properties": {
|
|
120
|
-
"name": "Safir 1B | Doosti",
|
|
121
|
-
"icon": "rocket",
|
|
122
|
-
"windowstart": "February 5, 2019 00:00:00 UTC"
|
|
123
|
-
},
|
|
124
|
-
"geometry": {
|
|
125
|
-
"type": "Point",
|
|
126
|
-
"coordinates": [
|
|
127
|
-
35.258416,
|
|
128
|
-
53.953567
|
|
129
|
-
]
|
|
130
|
-
}
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"id": 1434,
|
|
134
|
-
"type": "Feature",
|
|
135
|
-
"properties": {
|
|
136
|
-
"name": "Ariane 5 ECA | Saudi Geostationary Satellite 1/Hellas Sat 4 & GSAT-31",
|
|
137
|
-
"icon": "rocket",
|
|
138
|
-
"windowstart": "February 5, 2019 21:01:00 UTC"
|
|
139
|
-
},
|
|
140
|
-
"geometry": {
|
|
141
|
-
"type": "Point",
|
|
142
|
-
"coordinates": [
|
|
143
|
-
5.239,
|
|
144
|
-
-52.768
|
|
145
|
-
]
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"id": 1594,
|
|
150
|
-
"type": "Feature",
|
|
151
|
-
"properties": {
|
|
152
|
-
"name": "Soyuz 2.1b/Fregat-M | EgyptSat-A",
|
|
153
|
-
"icon": "rocket",
|
|
154
|
-
"windowstart": "February 21, 2019 16:47:00 UTC"
|
|
155
|
-
},
|
|
156
|
-
"geometry": {
|
|
157
|
-
"type": "Point",
|
|
158
|
-
"coordinates": [
|
|
159
|
-
45.996034,
|
|
160
|
-
63.564003
|
|
161
|
-
]
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
]
|
|
165
|
-
}
|
data/assets/images/bg.jpg
DELETED
|
Binary file
|
data/assets/images/favicon.ico
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/images/halley-vi.jpg
DELETED
|
Binary file
|
data/assets/images/orion_las.jpg
DELETED
|
Binary file
|
data/assets/images/overlay.png
DELETED
|
Binary file
|
data/assets/images/pic01.jpg
DELETED
|
Binary file
|
data/assets/images/pic02.jpg
DELETED
|
Binary file
|
data/assets/images/pic03.jpg
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|