prefire-jekyll-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1aed4de9250a65263f08e74736659073405c2bccc0ee1594ad67a7b5fbfcc197
4
+ data.tar.gz: 665f16cb66a4a2cfc67d35364d75056ad8920ef659e5379093191f2ec2721934
5
+ SHA512:
6
+ metadata.gz: 997f76fdf41eb698d2ce69fd7c59f211b02f1dcc1c14a80d3fc9ca0dc0488883a909c40ad3b4f98479d69c2e86305ca2310ac6a668452bf6d191320221c11b94
7
+ data.tar.gz: 6e62fba68e1ee939d47d19232f6643612f04b06ae4717b5f938321405b705d9f5979cc7d2d34e072b3542298cba28d08a7f4788f74cdc79b700d582f114bc517
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Calvin Sienatra
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # prefire-jekyll-theme
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+
8
+
9
+ ## Installation
10
+
11
+ Add this line to your Jekyll site's `Gemfile`:
12
+
13
+ ```ruby
14
+ gem "prefire-jekyll-theme"
15
+ ```
16
+
17
+ And add this line to your Jekyll site's `_config.yml`:
18
+
19
+ ```yaml
20
+ theme: prefire-jekyll-theme
21
+ ```
22
+
23
+ And then execute:
24
+
25
+ $ bundle
26
+
27
+ Or install it yourself as:
28
+
29
+ $ gem install prefire-jekyll-theme
30
+
31
+ ## Usage
32
+
33
+ Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
34
+
35
+ ## Contributing
36
+
37
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
38
+
39
+ ## Development
40
+
41
+ To set up your environment to develop this theme, run `bundle install`.
42
+
43
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
44
+
45
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
46
+ To add a custom directory to your theme-gem, please edit the regexp in `prefire-jekyll-theme.gemspec` accordingly.
47
+
48
+ ## License
49
+
50
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
51
+
@@ -0,0 +1,291 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ site.lang | default: page.lang | default: 'en' }}">
3
+
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+
9
+ <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
10
+ <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
11
+
12
+ <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
13
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
14
+ </head>
15
+
16
+ <body>
17
+
18
+ <div class="main-container">
19
+
20
+ <div class="navbar">
21
+ <ul class="navbar-menu">
22
+ <li class="navbar-menu-link">
23
+ <a href="#overview" class="navbar-menu-link-text">Overview</a>
24
+ </li>
25
+ <li class="navbar-menu-link">
26
+ <a href="#mission" class="navbar-menu-link-text">Mission</a>
27
+ </li>
28
+ <li class="navbar-menu-link">
29
+ <a href="#instrument" class="navbar-menu-link-text">Instrument</a>
30
+ </li>
31
+ <li class="navbar-menu-link">
32
+ <a href="#" class="navbar-menu-link-text">Team</a>
33
+ </li>
34
+ <li class="navbar-menu-link">
35
+ <a href="#" class="navbar-menu-link-text">News</a>
36
+ </li>
37
+ <li class="navbar-menu-link">
38
+ <a href="#" class="navbar-menu-link-text">Publications</a>
39
+ </li>
40
+ <li class="navbar-menu-link">
41
+ <a href="#" class="navbar-menu-link-text">Dataset</a>
42
+ </li>
43
+ <li class="navbar-menu-link">
44
+ <a href="#" class="navbar-menu-link-text">Contacts</a>
45
+ </li>
46
+ </ul>
47
+
48
+ </div>
49
+
50
+
51
+ <div class="main-page">
52
+
53
+ <!-- PREFIRE logo -->
54
+ <img src="{{ "/assets/prefire-logo.png" | relative_url }}" alt="logo" class="logo"/>
55
+
56
+ <!-- PREFIRE title -->
57
+ <h1>Polar Radiant Energy in the Far InfraRed Experiment</h1>
58
+
59
+ <!-- Front page logos -->
60
+ <div class="row main-logos">
61
+ <div class="d-none d-sm-none d-md-none d-lg-block col-lg-1"></div>
62
+ <div class="col-md-4 col-lg-3">
63
+ <img src="{{ "/assets/uw-logo.png" | relative_url }}" alt="uw logo" class="uw-logo" />
64
+ </div>
65
+ <div class="col-md-4 col-lg-4">
66
+ <img src="{{ "/assets/jpl-logo.png" | relative_url }}" alt="jpl logo" class="jpl-logo" />
67
+ </div>
68
+ <div class="col-md-4 col-lg-3">
69
+ <img src="{{ "/assets/ssec-logo.png" | relative_url }}" alt="ssec logo" class="ssec-logo" />
70
+ </div>
71
+ <div class="d-none d-sm-none d-md-none d-lg-block col-lg-1"></div>
72
+ </div>
73
+
74
+
75
+
76
+ </div>
77
+
78
+ <div class="row item-header" id="overview">
79
+ <h2>Overview</h2>
80
+ </div>
81
+
82
+ <div class="row-item">
83
+
84
+ <div class="overview-container">
85
+ <div class="row overview-preview">
86
+ <div class="d-sm-none d-none col-md-2"></div>
87
+ <div class="overview-body col-md-8">
88
+ <p class="overview-body-text">
89
+ <b>PREFIRE</b> makes the first full spectral measurements of Far InfraRed (FIR) radiation, revealing the full spectrum of Arctic radiant energy. It fills a major gap in our knowledge of the Arctic energy budget and the role of FIR radiation in Arctic warming, sea ice loss, ice sheet melt, and sea level rise.
90
+ </p>
91
+ </div>
92
+ <div class="d-sm-none d-none col-md-2"></div>
93
+ </div>
94
+
95
+ <div class="row overview-point-container">
96
+ <div class="col-sm-2"></div>
97
+ <div class="col-md-2 col-lg-2 overview-view-picture">
98
+ <img src="{{ "/assets/r1_final.png" | relative_url }}" class="overview-images-point" alt="r1" />
99
+ </div>
100
+ <div class="col-md-6 col-lg-6 overview-point align-self-center">
101
+ <p class="overview-point-text">
102
+ The Arctic is Earth’s <b>thermostat</b>. It regulates the climate by venting excess energy received in the tropics.
103
+ </p>
104
+ </div>
105
+ <div class="col-sm-2"></div>
106
+ </div>
107
+
108
+ <div class="row overview-point-container">
109
+ <div class="col-sm-2"></div>
110
+ <div class="col-md-2 col-lg-2 overview-view-picture">
111
+ <img src="{{ "/assets/r2_final.png" | relative_url }}" class="overview-images-point" alt="r1" />
112
+ </div>
113
+ <div class="col-md-6 col-lg-6 overview-point align-self-center">
114
+ <p class="overview-point-text">
115
+ Nearly 60% of Arctic emission occurs at <b>wavelengths
116
+ longer than 15 μm (FIR)</b> that have never been
117
+ systematically measured.
118
+ </p>
119
+ </div>
120
+ <div class="col-sm-2"></div>
121
+ </div>
122
+
123
+ <div class="row">
124
+ <div class="col-sm-2"></div>
125
+ <div class="col-md-2 col-lg-2 overview-view-picture">
126
+ <img src="{{ "/assets/r3_final.png" | relative_url }}" class="overview-images-point" alt="r1" />
127
+ </div>
128
+ <div class="col-md-6 col-lg-6 overview-point align-self-center">
129
+ <p class="overview-point-text">
130
+ PREFIRE quantifies <b>spatial and temporal variability </b>
131
+ in spectral FIR emission and the atmospheric
132
+ greenhouse effect.
133
+ </p>
134
+ </div>
135
+ <div class="col-sm-2"></div>
136
+ </div>
137
+
138
+ </div>
139
+
140
+ </div>
141
+
142
+
143
+ <div class="row item-header" id="mission">
144
+ <h2>Mission</h2>
145
+ </div>
146
+
147
+ <div class="mission-container">
148
+ <div class="mission-container-row row">
149
+
150
+ <div class="col-lg-1"></div>
151
+
152
+ <div class="col-md-12 col-lg-3 align-self-center mission-question-container">
153
+ <div class="mission-box">
154
+ <h3>How are we <b>measuring</b> and what will we do with the <b>data</b>?</h3>
155
+ <p class="mission-text">
156
+ <b>PREFIRE</b> measures variations in FIR emissivity and greenhouse effect via thermal
157
+ radiometric sampling at the top of the polar atmosphere. These measurements are
158
+ integrated with models to understand the role of FIR radiation in Arctic climate.
159
+ </p>
160
+ </div>
161
+ </div>
162
+
163
+ <div class="col-md-12 col-lg-4">
164
+ <div class="mission-box">
165
+ <h4>Baseline Mission</h4>
166
+ <p class="mission-text">
167
+ Two 3U CubeSat spacecraft in two different 470-650 km altitude, near-polar (82°-98° inclination)
168
+ orbits, each with a Heritage miniaturized IR spectrometer, covering the 0-54 μm region at 0.84 μm
169
+ spectral resolution, operating for one seasonal cycle (a year) with diurnal subsampling.
170
+ </p>
171
+ </div><br/>
172
+ <div class="mission-box">
173
+ <h4>Threshold Mission</h4>
174
+ <p class="mission-text">
175
+ One 3U CubeSat spacecraft (470-650 km altitude) in near-polar orbit (82° - 98° inclination),
176
+ operating for a half seasonal cycle (6 months).
177
+ </p>
178
+ </div>
179
+ </div>
180
+
181
+ <div class="col-md-12 col-lg-3 align-self-center earth-picture-orbit-container">
182
+ <div class="earth-picture-container">
183
+ <img src="{{ "/assets/e1.png" | relative_url }}" class="earth-picture" alt="r1" />
184
+ </div>
185
+ <h5>CubeSat Orbit</h5>
186
+ </div>
187
+
188
+ <div class="col-lg-1"></div>
189
+
190
+ </div>
191
+ </div>
192
+
193
+
194
+ <div class="row item-header" id="instrument">
195
+ <h2>Instrument</h2>
196
+ </div>
197
+
198
+
199
+ <div class="instrument-container">
200
+ <div class="row">
201
+ <div class="col-lg-1"></div>
202
+ <div class="col-lg-5">
203
+ <div class="row tirs-image-container">
204
+ <div class="col-lg-6"><img src="{{ "/assets/tirs.png" | relative_url }}" class="tirs-picture" alt="tirs" /></div>
205
+ <div class="col-lg-6 align-self-center tirs-title">
206
+ <h6>TIRS Opto-mechanical design</h6>
207
+ </div>
208
+ </div>
209
+ <div class="tirs-info-container">
210
+ <h4>Thermal IR Spectrometer (TIRS)</h4>
211
+ <ul>
212
+ <li>Flight-proven hardware and design—TIRS uncooled detector and filter block design maturity are from Mars Climate Sounder and Diviner</li>
213
+ <li>Instrument has adequate margins (mass, power, volume, and data rate)</li>
214
+ <li>Orbit and mission design flexibility for accommodating different launch opportunities</li>
215
+ </ul>
216
+ </div>
217
+ </div>
218
+ <div class="col-lg-5 align-self-center">
219
+ <div class="technical-container">
220
+ <h4>Technical Specifications</h4>
221
+
222
+ <div class="row technical-infos">
223
+ <div class="col-6 technical-divider">
224
+ <span class="technical-sub">Thermopile array</span>
225
+ </div>
226
+ <div class="col-6 align-self-center">
227
+ 64 x 8 pixels
228
+ </div>
229
+ </div>
230
+
231
+ <div class="row technical-infos">
232
+ <div class="col-6 technical-divider">
233
+ <span class="technical-sub">Spectral resolution</span>
234
+ </div>
235
+ <div class="col-6 align-self-center">
236
+ 0.84 μm from 0-54 μm
237
+ </div>
238
+ </div>
239
+
240
+ <div class="row technical-infos">
241
+ <div class="col-6 technical-divider">
242
+ <span class="technical-sub">Spatial coverage</span>
243
+ </div>
244
+ <div class="col-6 align-self-center">
245
+ 8 cross-track pixels with 1.2° footprints
246
+ </div>
247
+ </div>
248
+
249
+ <div class="row technical-infos">
250
+ <div class="col-6 technical-divider">
251
+ <span class="technical-sub">Mass</span>
252
+ </div>
253
+ <div class="col-6 align-self-center">
254
+ 0.8 Kg
255
+ </div>
256
+ </div>
257
+
258
+ <div class="row technical-infos">
259
+ <div class="col-6 technical-divider">
260
+ <span class="technical-sub">Data rate</span>
261
+ </div>
262
+ <div class="col-6 align-self-center">
263
+ 35 Kbps
264
+ </div>
265
+ </div>
266
+
267
+ <div class="row technical-infos">
268
+ <div class="col-6 technical-divider">
269
+ <span class="technical-sub">Power</span>
270
+ </div>
271
+ <div class="col-6 align-self-center">
272
+ 5.5 W
273
+ </div>
274
+ </div>
275
+
276
+ </div>
277
+ </div>
278
+ <div class="col-lg-1"></div>
279
+ </div>
280
+ </div>
281
+
282
+
283
+
284
+
285
+ </div>
286
+
287
+ </body>
288
+
289
+ </html>
290
+
291
+ {{ content }}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}