baltic 0.0.1 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cbaa37ed0978ec88762e0d6bf1dc655b627ee537411a784a5f6b6bf08bdfc955
4
- data.tar.gz: 683f60c51d02e61b6c862666ea56a79f937e02d59126cf3c63872e99321c69e2
3
+ metadata.gz: 47d38e30c10dbda65faf683b9aed2570bafd9282d0e6838fe1772503fb2072c4
4
+ data.tar.gz: 64447156f05448ba3c5b8f0b5fdec8a6655f567af85063617ba39afa3a1cceda
5
5
  SHA512:
6
- metadata.gz: f85af22cc71840d601ad25a0ba5fba39c387d70829865e10ae5f7da009c49def2630f88c68f2ab4c1845fdffe6e36538c58a949c363ae96b7df9f495f92baf80
7
- data.tar.gz: 250fd6a70dee988123a12db062006cbade1adf298897d06c5d4fa1000f9e115aba6be0fb596febcf19630134e43257a861c37a63368e636b237018e92559af69
6
+ metadata.gz: e4f1e0afbdff6cd0a2320156e360e572039cb6a4c7af973eebc32b524d0421eb5f0f3c64858fb978841d87596895bdd200f55e024e5adcb61aff9367fc243b39
7
+ data.tar.gz: 2dc53d5d13d24bda0f8555e1a700f15045e710e1d2382379020982d3f49b17851544b4ec74408137e240ffc20eb59a893c77b3031057ef2d2153bd58198fda2e
@@ -0,0 +1,9 @@
1
+
2
+ <figure class="image">
3
+ <img src="{{include.source | uri_escape }}" alt="{{include.caption | escape}}"/>
4
+ {%- if include.caption -%}
5
+ <figcaption>
6
+ {{include.caption}}
7
+ </figcaption>
8
+ {%- endif -%}
9
+ </figure>
@@ -0,0 +1,28 @@
1
+ {% comment %}
2
+ Use this to embed videos and leverage the built-in classes.
3
+ You can also write your own HTML structure and refer to this file for classes!
4
+
5
+ Attributes:
6
+ - source_list (comma-separated)
7
+ Each source should be the same video, but in another encoding.
8
+ Order the list in the preferred fallback order.
9
+ See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
10
+ - caption (optional)
11
+
12
+ TODO: Support types for each encoding provided,
13
+ Give better support for video tag attrs (muted, controls, autoplay)
14
+ {% endcomment%}
15
+
16
+ <figure class="video">
17
+ <video muted controls>
18
+ {%- assign sources = include.source_list | split: "," -%}
19
+ {%- for source in sources -%}
20
+ <source src="{{ source | uri_escape }}" type="">
21
+ {%- endfor -%}
22
+ </video>
23
+ {%- if include.caption -%}
24
+ <figcaption>
25
+ {{include.caption}}
26
+ </figcaption>
27
+ {%- endif -%}
28
+ </figure>
@@ -0,0 +1,17 @@
1
+ <footer class="baltic-footer">
2
+ <div class="copyright"><span class="symbol">/* @copyright</span> {{site.author.name}}<span class="symbol"> */</span></div>
3
+ <div class="footer-content">
4
+ <div class="footer-content_desc">
5
+ {%- include footer_about.html -%}
6
+ </div>
7
+ <div class="footer-content_links">
8
+ {%- include footer_links.html -%}
9
+ </div>
10
+ {%- comment -%}
11
+ TODO: would like to have automatic list of pages or list based on YAML,
12
+ similar to the header, here
13
+ <div class="footer-content_links site-map">
14
+ </div>
15
+ {%- endcomment -%}
16
+ </div>
17
+ </footer>
@@ -0,0 +1,13 @@
1
+ {% comment %}
2
+ Override this file to set the text in the left-most column (or top-most, on mobile).
3
+ {% endcomment %}
4
+ <h2>About Me</h2>
5
+ <p>Lorem ipsum dolor est, pater noster qui est en caelo. Canem domus via est. Portare regis vinum.</p>
6
+
7
+ <hr/>
8
+
9
+ <h3>{{site.title}}</h3>
10
+ <ul class="link-list less-emphasis">
11
+ <li><a href="#">Home</a></li>
12
+ <li><a href="#">Posts</a></li>
13
+ </ul>
@@ -0,0 +1,10 @@
1
+ {% comment %}
2
+ Override this file to set the text in the left-most column (or top-most, on mobile).
3
+ {% endcomment %}
4
+ <h2>On The Web</h2>
5
+ <ul class="link-list">
6
+ <li><a href="#">LinkedIn</a></li>
7
+ <li><a href="#">GitHub</a></li>
8
+ <li><a href="#">Leetcode</a></li>
9
+ <li><a href="#">Google Scholar</a></li>
10
+ </ul>
data/_includes/head.html CHANGED
@@ -1,5 +1,5 @@
1
1
  <meta charset="UTF-8" />
2
2
  <meta name="viewport" content="width=device-width, initial-scale=1" />
3
3
  <link rel="stylesheet" href="{{'/assets/css/style.css' | absolute_url}}">
4
- <title>{{page.title}}</title>
5
- {{fonts}}
4
+ <title>{{page.title}} - {{site.title}}</title>
5
+ {%- include fonts.html -%}
@@ -1,7 +1,20 @@
1
1
  <header class="header">
2
-
2
+ {%- assign nav_pages = site.header_pages -%}
3
+ {%- assign nav_size = nav_pages | size -%}
4
+
3
5
  <div class="header-title">
4
6
  <a class="header-title-link" href="/">{{site.title}}</a>
5
7
  </div>
6
8
 
9
+ {%- if nav_size > 0 -%}
10
+ <nav class="header-nav">
11
+ {%- for path in nav_pages -%}
12
+ {%- assign page = site.pages | where: "path", path | first -%}
13
+ {%- if page.title -%}
14
+ <a class="header-nav-link" href="{{ page.url | relative_url }}">{{page.title | escape}}</a>
15
+ {%- endif -%}
16
+ {%- endfor -%}
17
+ </nav>
18
+ {%- endif -%}
19
+
7
20
  </header>
@@ -0,0 +1,123 @@
1
+ {% comment %}
2
+ Use this to list your own publications on your blog with standardized formatting.
3
+
4
+ Attributes:
5
+
6
+ - title
7
+
8
+ - authors (comma-separated)
9
+ Prefixed with "By". The last author in the list will be prefixed with "&".
10
+
11
+ - venue
12
+ For example, a journal or conference name.
13
+
14
+ - date (optional)
15
+ Date of publication.
16
+
17
+ - volume (optional)
18
+ Volume number for the venue, if applicable
19
+
20
+ - number (optional)
21
+ Issue number, if applicable
22
+
23
+ - pages (optional)
24
+ Pages where the publication appears, if applicable.
25
+
26
+ - doi (optional)
27
+ The Digital Object Identifier, if applicable.
28
+
29
+ - link (optional)
30
+ Link to the publication (document, abstract, etc).
31
+ - link_text (optional)
32
+ Only used when link is provided. When set, this will display instead of the raw URL.
33
+
34
+ - summary (optional)
35
+ Summary, explanation, abstract, etc. Displays below authors.
36
+
37
+ TODO: add code for link
38
+ {% endcomment %}
39
+
40
+ <div class="publication">
41
+ <p class="pub-title">
42
+ {%- if include.title -%}
43
+ <strong class="pub-title">{{include.title | escape}}</strong>.&nbsp;
44
+ {%- endif -%}
45
+ </p>
46
+ <p class="pub-meta">
47
+
48
+ {% comment %}
49
+ {%- if include.link -%}
50
+ {%- if include.linktxt -%}
51
+ {%- assign ltxt = include.linktxt -%}
52
+ {%- else -%}
53
+ {%- assign ltxt = include.link -%}
54
+ {%- endif -%}
55
+ <span class="pub-link">
56
+ [<a class="pub-link-anchor" href="{{ include.link | uri_escape }}" target="_blank">{{ ltxt | uri_escape }}</a>]
57
+ </span>
58
+ {%- endif -%}
59
+ {% endcomment %}
60
+
61
+ {%- if include.venue -%}
62
+ <span class="pub-venue"><em class="pub-venue_name">{{include.venue | escape}}</em>
63
+ {%- if include.volume -%}, vol. <span class="pub-meta_num">{{ include.volume | escape }}</span>{%- endif -%}
64
+ {%- if include.number -%}, no. <span class="pub-meta_num">{{ include.number | escape }}</span>{%- endif -%}
65
+ {%- if include.pages -%}, pp. <span class="pub-meta_num">{{ include.pages | escape }}</span>{%- endif -%}
66
+ </span>
67
+ {%- endif -%}
68
+ </p>
69
+ <p class="pub-meta">
70
+ {%- if include.link -%}
71
+ {%- if include.link_text -%}
72
+ {%- assign ltxt = include.link_text -%}
73
+ {%- else -%}
74
+ {%- assign ltxt = include.link -%}
75
+ {%- endif -%}
76
+ <span class="pub-link">[<a class="pub-link-anchor" href="{{ include.link | uri_escape }}" target="_blank">{{ ltxt | uri_escape }}</a>]</span>&nbsp;
77
+ {%- endif -%}
78
+
79
+ {%- if include.date -%}
80
+ [<span class="pub-date">{{ include.date | escape }}</span>]&nbsp;
81
+ {%- endif -%}
82
+
83
+ {%- if include.doi -%}
84
+ [<span class="pub-meta_special">doi#:</span><span class="pub-meta_doi">{{include.doi}}</span>]&nbsp;
85
+ {%- endif -%}
86
+ </p>
87
+
88
+ {% comment %}
89
+ {%- if include.link -%}
90
+ {%- if include.linktxt -%}
91
+ {%- assign ltxt = include.linktxt -%}
92
+ {%- else -%}
93
+ {%- assign ltxt = include.link -%}
94
+ {%- endif -%}
95
+ <p class="pub-meta pub-link">
96
+ [<a class="pub-link-anchor" href="{{ include.link | uri_escape }}" target="_blank">
97
+ {{ ltxt | uri_escape }}
98
+ </a>]
99
+ </p>
100
+ {%- endif -%}
101
+ {% endcomment %}
102
+
103
+ {%- if include.authors -%}
104
+ {%- assign author_list = include.authors | split: "," -%}
105
+ <p class="pub-authors">
106
+ {% comment %}<b>Authors:</b>&nbsp;{% endcomment %}
107
+ {%- for author in author_list -%}
108
+ {%- assign author_comp = author | strip -%}
109
+ {%- assign author_site = site.author.name | strip -%}
110
+ {%- if forloop.last and forloop.last != forloop.first -%}&amp;{%- endif -%}
111
+ {%- if author_comp == author_site -%}
112
+ <span class="pub-author pub-author_is-site-author">{{author | escape}}</span>
113
+ {%- else -%}
114
+ <span class="pub-author">{{author | escape}}</span>
115
+ {%- endif -%}
116
+ {%- if forloop.last == false -%}, {% else %}.{% endif -%}
117
+ {%- endfor -%}
118
+ </p>
119
+ {%- endif -%}
120
+ {%- if include.summary -%}
121
+ <p class="pub-summary">{{ include.summary | escape }}</p>
122
+ {%- endif -%}
123
+ </div>
@@ -0,0 +1,4 @@
1
+ {% comment %}
2
+ Use to add a standard amount of space between items
3
+ {% endcomment %}
4
+ <div class="spacer">&nbsp;</div>
data/_layouts/base.html CHANGED
@@ -11,6 +11,8 @@
11
11
  {{content}}
12
12
  </main>
13
13
 
14
+ {%- include footer.html -%}
15
+
14
16
  </body>
15
17
 
16
18
  </html>
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: base
3
+ ---
4
+ <section class="page">
5
+ <header class="page-header">
6
+ <h1 class="page-title">{{ page.title | escape }}</h1>
7
+ </header>
8
+ <div class="post-content">
9
+ {{ content }}
10
+ </div>
11
+ </section>
@@ -0,0 +1,33 @@
1
+ ---
2
+ layout: base
3
+ ---
4
+ <article class="post" itemscope itemtype="https://schema.org/BlogPosting">
5
+ <header class="post-header">
6
+ <h1 class="post-title">{{ page.title | escape }}</h1>
7
+ {% comment %}
8
+ <!-- This started as a [] bracket style, testing JSON appearance -->
9
+ <p class="post-time" style="font-size: smaller;">
10
+ <time class="post-date post-date_published" datetime="{{page.date | date_to_xmlschema}}" itemprop="datePublished">
11
+ [<span class="rare">create_date</span>=<span class="number">{{page.date | date: "%Y-%m-%d"}}</span>]
12
+ </time>
13
+ {%- if page.modified_date -%}
14
+ <time class="post-date post-date_modified" datetime="{{page.modified_date | date_to_xmlschema}}" itemprop="dateModified">
15
+ [mdate#{{ page.modified_date | date: "%Y-%m-%d" }}]
16
+ </time>
17
+ {%- endif -%}
18
+ &nbsp;[<span class="rare">href</span>=<a class="post-permalink" href="{{page.url | absolute_url}}">{{page.url | relative_url}}</a>]
19
+ </p>
20
+ {% endcomment %}
21
+ <pre class="json-meta">
22
+ "<span class="common">date_created</span>": "<span class="str-literal">{{page.date | date: "%Y-%m-%d"}}</span>"
23
+ {%- if page.modified_date %}
24
+ "date_modified": {{ page.modified_date | date: "%Y-%m-%d" }}
25
+ {%- endif %}
26
+ "<span class="common">permalink</span>": "<a class="str-literal" href="{{page.url | absolute_url}}">{{page.url | relative_url}}</a>"
27
+ </pre>
28
+ </header>
29
+
30
+ <div class="post-content" itemprop="articleBody">
31
+ {{ content }}
32
+ </div>
33
+ </article>
@@ -1,10 +1,14 @@
1
1
  $titles: #f8fafe;
2
- $body: #eaf4f8;
2
+ $body: #eff2f4;
3
+ $header: #181f2c;
3
4
  $titles_dark: #162238;
4
5
  $body_dark: #303b52;
5
6
  $baltic: #24323f;
6
- $waves: #222d36;
7
- $seafloor: #2a3948;
7
+ $waves: #282d3b;
8
+ $seafloor: #1F2632;
9
+ $squall: #282d3b;
10
+ $deep: #232732;
11
+ $shallow: #4c576b;
8
12
  $kaliningrad: #293846;
9
13
  $nord: #2e3440;
10
14
  $kihnu: #4f6a92;
@@ -12,9 +16,12 @@ $gotland: #5e81ac;
12
16
  $helsinki: #7f9fbf;
13
17
  $vilnius: #86bfd4;
14
18
  $stockholm: #92c1bf;
19
+ $stockholm_dark: #72a19f;
15
20
  $gothenburg: #a2bf8f;
21
+ $gothenburg_dark: #9ab279;
16
22
  $sarek: #ebb591;
17
23
  $kurische: #ffea91;
24
+ $visby: #f89a47;
18
25
  $tallinn: #c0656f;
19
26
  $riga: #f75341;
20
27
  $dainava: #b77fb1;
@@ -1,2 +1,6 @@
1
1
 
2
2
  $pad_h: 10vw;
3
+ $border_radius: 12px;
4
+ $break_800: 800px;
5
+ $break_600: 600px;
6
+ $break_400: 400px;
@@ -1,6 +1,7 @@
1
1
  .highlight {
2
2
 
3
- background-color: $nord;
3
+
4
+
4
5
  color: $body;
5
6
  border-radius: 12px;
6
7
  padding: 10px;
@@ -9,6 +10,14 @@
9
10
  overflow-x:scroll;
10
11
  margin: 20px 0;
11
12
 
13
+ background-color: $deep;
14
+
15
+ @media (prefers-color-scheme: light) {
16
+ .light & {
17
+ background-color: $nord;
18
+ }
19
+ }
20
+
12
21
  .hll {
13
22
  background-color: $waves;
14
23
  }
@@ -78,6 +87,10 @@
78
87
  .vg,
79
88
  .vi,
80
89
  .vm {
90
+ color: $nord_snow_med;
91
+ }
92
+
93
+ .nd, .kn {
81
94
  color: $sarek;
82
95
  }
83
96
 
data/_sass/baltic.scss CHANGED
@@ -6,6 +6,7 @@
6
6
 
7
7
  html {
8
8
  font-family: "Jetbrains Mono", "Courier New", monospace;
9
+ background-color: $deep;
9
10
  }
10
11
 
11
12
  html,
@@ -15,12 +16,14 @@ body {
15
16
  }
16
17
 
17
18
  body {
18
- background-color: $seafloor;
19
+ background-color: $nord;
19
20
  color: $body;
20
21
 
21
- &.light {
22
- background-color: $titles;
23
- color: $body_dark;
22
+ @media (prefers-color-scheme: light) {
23
+ &.light {
24
+ background-color: $nord_snow_light;
25
+ color: $body_dark;
26
+ }
24
27
  }
25
28
  }
26
29
 
@@ -29,36 +32,298 @@ h1 {
29
32
  color: $gotland;
30
33
  }
31
34
 
35
+ h3 {
36
+ font-weight: 200;
37
+ }
38
+
39
+ strong {
40
+ font-weight: 900;
41
+ }
42
+
43
+ a {
44
+ text-decoration: none;
45
+ color: $tallinn;
46
+
47
+ &:hover{
48
+ transition: 0.2s;
49
+ color: $riga;
50
+ }
51
+ }
52
+
53
+ hr {
54
+ color: $vilnius;
55
+ background-color: $vilnius;
56
+ border-color: $vilnius;
57
+
58
+ max-width: 90ch;
59
+ margin: 40px 0;
60
+ }
61
+
32
62
  .header {
33
63
  display: grid;
34
- grid-template-columns: auto;
64
+ grid-template-columns: auto auto;
35
65
  padding: 40px $pad_h;
36
- background-color: $baltic;
37
- border-bottom:4px solid #222d36;
66
+ background-color: $header;
67
+ // border-bottom:4px solid #222d36;
38
68
 
39
69
  .header-title-link {
40
70
  font-weight: 700;
41
71
  color: $body;
42
- text-decoration: none;
43
72
  transition: 0.2s;
44
73
 
45
74
  &:hover {
46
75
  color: $riga;
47
76
  }
48
77
  }
78
+
79
+ .header-nav-link {
80
+ margin: 0 20px;
81
+ font-weight: 500;
82
+ color: $vilnius;
83
+ transition: 0.2s;
84
+
85
+ &:hover {
86
+ color: $dainava;
87
+ }
88
+ }
49
89
  }
50
90
 
51
91
  .content-area {
52
92
  display: block;
53
93
  max-width: calc(100vw - $pad_h);
94
+ min-height: 75vh;
54
95
  margin: 40px $pad_h;
55
96
 
56
97
  p {
57
98
  max-width: 90ch;
99
+ line-height: 1.45;
100
+ font-size: 13px;
58
101
  }
59
102
 
103
+ figure {
104
+ margin: 0;
105
+
106
+ figcaption {
107
+ margin: 10px 0 20px $border_radius;
108
+ padding: $border_radius;
109
+ border-left: 4px solid $riga;
110
+ font-size: 0.85em;
111
+ font-style: italic;
112
+ color: $tallinn;
113
+ }
114
+ }
115
+
116
+ video,
60
117
  img {
61
118
  max-width: 100%;
62
119
  border-radius: 12px;
63
120
  }
64
121
  }
122
+
123
+ .publication {
124
+ font-size: smaller;
125
+ margin-bottom: 20px;
126
+
127
+ .pub-title,
128
+ .pub-date,
129
+ .pub-meta_special,
130
+ .pub-venue_name,
131
+ .pub-meta-num,
132
+ .pub-author_is-site-author,
133
+ .pub-link-anchor {
134
+ font-weight: 900;
135
+ }
136
+
137
+ .pub-title {
138
+ margin-bottom: 4px;
139
+ }
140
+
141
+ .pub-title,
142
+ .pub-venue_name {
143
+ color: $helsinki;
144
+ }
145
+ .pub-meta {
146
+ color: $gotland;
147
+ line-height: 1.8;
148
+ margin-top: 0;
149
+ margin-bottom: 0;
150
+ }
151
+
152
+ .pub-meta,
153
+ .pub-authors,
154
+ .pub-summary {
155
+ padding-left: 10px;
156
+ font-size: smaller;
157
+ }
158
+ .pub-authors,
159
+ .pub-summary {
160
+ margin-top: .65em;
161
+ }
162
+
163
+ .pub-date,
164
+ .pub-meta_special {
165
+ color: $tallinn;
166
+ }
167
+ .pub-meta_num {
168
+ color: $dainava;
169
+ }
170
+
171
+ .pub-authors {
172
+ margin-top: 2px;
173
+ color: $gotland;
174
+ }
175
+
176
+ .pub-meta + .pub-meta {
177
+ margin-top: 2px;
178
+ }
179
+
180
+ .pub-link-anchor {
181
+ color: $dainava;
182
+ &:hover {
183
+ color: $riga;
184
+ }
185
+ }
186
+
187
+ .pub-summary {
188
+ padding-left: 20px;
189
+ font-size: 10px;
190
+ }
191
+
192
+ @media (prefers-color-scheme: light) {
193
+ .light & {
194
+ .pub-title,
195
+ .pub-venue_name {
196
+ color: $kihnu;
197
+ }
198
+ .pub-meta {
199
+ color: $gotland;
200
+ }
201
+ }
202
+ }
203
+ }
204
+
205
+ ul.link-list {
206
+ padding-left: 0;
207
+ margin-left: 0;
208
+
209
+ li {
210
+ list-style: none;
211
+ margin: 5px 0;
212
+
213
+ a {
214
+ color: $dainava;
215
+ transition: 0.2s;
216
+
217
+ &:hover {
218
+ color: $tallinn;
219
+ }
220
+ }
221
+ }
222
+ }
223
+
224
+ .baltic-footer {
225
+ display: block;
226
+ width: 100%;
227
+ // padding: $pad_h;
228
+
229
+ .copyright {
230
+ display: block;
231
+ padding: 10px $pad_h;
232
+ font-size: smaller;
233
+ background-color: $shallow;
234
+ color: $body;
235
+
236
+ .symbol {
237
+ color: $helsinki;
238
+ font-weight: 700;
239
+ }
240
+
241
+ @media (prefers-color-scheme: light) {
242
+ .light & {
243
+ background-color: $nord;
244
+ }
245
+ }
246
+ }
247
+ }
248
+
249
+ .footer-content {
250
+ display: grid;
251
+ grid-template-columns: 360px auto;
252
+ grid-column-gap: 4ch;
253
+
254
+ background-color: $deep;
255
+
256
+ @media (prefers-color-scheme: light) {
257
+ .light & {
258
+ background-color: $squall;
259
+ }
260
+ }
261
+
262
+ color: $nord_snow_med;
263
+ padding: 20px $pad_h;
264
+
265
+ font-size: small;
266
+
267
+ @media screen and (max-width: $break_800) {
268
+ grid-template-columns: auto;
269
+ grid-row-gap: 4ch;
270
+ }
271
+ }
272
+
273
+ .number {
274
+ color: $dainava;
275
+ }
276
+
277
+ .str-literal {
278
+ color: $gothenburg;
279
+
280
+ @media (prefers-color-scheme: light) {
281
+ .light & {
282
+ color: $gothenburg_dark;
283
+ }
284
+ }
285
+
286
+ @at-root a.str-literal {
287
+ text-decoration: underline;
288
+ transition: 0.2s;
289
+
290
+ &:hover {
291
+ color: $vilnius;
292
+ }
293
+ }
294
+ }
295
+
296
+ .class {
297
+ color: $gotland;
298
+ }
299
+
300
+ .common {
301
+ color: $stockholm;
302
+
303
+ @media (prefers-color-scheme: light) {
304
+ .light & {
305
+ color: $stockholm_dark;
306
+ }
307
+ }
308
+ }
309
+
310
+ .rare {
311
+ font-weight: 900;
312
+ color: $sarek;
313
+ }
314
+
315
+ // Stylize post attributes to look like JSON
316
+ .json-meta {
317
+ font-size: smaller;
318
+ padding: 10px;
319
+ border-radius: $border_radius;
320
+ max-width: 80ch;
321
+
322
+ background-color: $nord;
323
+
324
+ @media (prefers-color-scheme: light) {
325
+ .light & {
326
+ background-color: $body;
327
+ }
328
+ }
329
+ }
data/readme.md CHANGED
@@ -1,9 +1,22 @@
1
1
  # Baltic
2
-
3
- ![Example index file](./screenshot.png)
2
+ [![Gem Version](https://badge.fury.io/rb/baltic.svg)](https://badge.fury.io/rb/baltic)
4
3
 
5
4
  Baltic is a Jekyll theme inspired by the popular Nord color theme.
6
5
 
6
+ ## Features
7
+
8
+ ![Publication formatting via _includes](./baltic-formatted-publications.png)
9
+
10
+ ![Video Embedding](./baltic-video-embed.png)
11
+
12
+ ![Captioned Images](./baltic-image-captions.png)
13
+
14
+ ![Nord-Color Syntax Highlighting](./baltic-syntax-highlighting.png)
15
+
16
+ ## Example Site
17
+
18
+ ![Example index file](./screenshot.png)
19
+
7
20
  ## Installation
8
21
 
9
22
  Add this line to your Jekyll site's `Gemfile`:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: baltic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew MacGillivray
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-16 00:00:00.000000000 Z
11
+ date: 2024-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -31,17 +31,25 @@ dependencies:
31
31
  - !ruby/object:Gem::Version
32
32
  version: '5.0'
33
33
  description: "A personal blog theme styled for developers. \nInspired by popular \"Nord\"
34
- IDE and terminal themes, my adventures in Canada, and the Baltic & Nordic regions
35
- I hope to someday visit.\n"
34
+ IDE and terminal themes, and my various adventures in the outdoors.\n"
36
35
  email: agjmacgill@gmail.com
37
36
  executables: []
38
37
  extensions: []
39
38
  extra_rdoc_files: []
40
39
  files:
40
+ - _includes/embed-image.html
41
+ - _includes/embed-video.html
41
42
  - _includes/fonts.html
43
+ - _includes/footer.html
44
+ - _includes/footer_about.html
45
+ - _includes/footer_links.html
42
46
  - _includes/head.html
43
47
  - _includes/header.html
48
+ - _includes/publication.html
49
+ - _includes/spacer.html
44
50
  - _layouts/base.html
51
+ - _layouts/page.html
52
+ - _layouts/post.html
45
53
  - _sass/baltic.scss
46
54
  - _sass/baltic/color.scss
47
55
  - _sass/baltic/layout.scss