jekkyl-arumai 0.1.9 → 0.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/_layouts/default.html +3 -2
- data/_layouts/post.html +31 -1
- data/assets/theme.css +145 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6050833f6f1297fe13612b6fdc9f999142f87120a39fe65206655d5eba31f26f
|
|
4
|
+
data.tar.gz: 25262cf007bf958c92027056c07c934578a1cf7d5e01ec9a21e91492d96a68c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35813919af047c6fe39665d8e84765a1e90b4dfe298967ffcffec75721ba42a5c9bff74d22a15aa6b4bd1c061892bb1f46d115d44ff14d0b47e329e008d01ec4
|
|
7
|
+
data.tar.gz: ad79176a3d27550ade14c9a84d1972ed6c568c067ee8586fa56a5a38244b1e2ea3121293ac3b64d03965fc144b33ee4a6f656724c9790e1616d77ff877d7b182
|
data/_layouts/default.html
CHANGED
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
6
|
-
<meta name="description" content="{{site.description}}">
|
|
6
|
+
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
|
7
7
|
<meta name="author" content="{{site.author}}">
|
|
8
|
-
<title>{{site.title}}</title>
|
|
8
|
+
<title>{% if page.title %}{{ page.title }} | {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
|
|
9
|
+
{% seo %}
|
|
9
10
|
{% feed_meta %}
|
|
10
11
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
11
12
|
{% assign themes = "twilight,dark,funky,okaidia,coy,solarizedlight,tomorrow" | split:"," %}
|
data/_layouts/post.html
CHANGED
|
@@ -2,5 +2,35 @@
|
|
|
2
2
|
layout: default
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<article class="arumai-post">
|
|
6
|
+
<header class="post-header">
|
|
7
|
+
<h1 class="post-title">{{ page.title }}</h1>
|
|
8
|
+
<div class="post-meta">
|
|
9
|
+
<span class="post-date">{{ page.date | date: "%B %d, %Y" }}</span>
|
|
10
|
+
{% if page.tags %}
|
|
11
|
+
<span class="post-tags">
|
|
12
|
+
{% for tag in page.tags %}
|
|
13
|
+
<span class="post-tag">#{{ tag }}</span>
|
|
14
|
+
{% endfor %}
|
|
15
|
+
</span>
|
|
16
|
+
{% endif %}
|
|
17
|
+
</div>
|
|
18
|
+
</header>
|
|
6
19
|
|
|
20
|
+
{% if page.image %}
|
|
21
|
+
<figure class="post-hero">
|
|
22
|
+
<img src="{{ page.image }}" alt="{{ page.title }}" />
|
|
23
|
+
</figure>
|
|
24
|
+
{% endif %}
|
|
25
|
+
|
|
26
|
+
<div class="post-content">
|
|
27
|
+
{{ content }}
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
<footer class="post-footer">
|
|
31
|
+
<p class="post-cta">
|
|
32
|
+
Enjoyed this post? I write more frequently on backend engineering and infrastructure at
|
|
33
|
+
<a href="https://sathia.vattam.ai">sathia.vattam.ai</a>.
|
|
34
|
+
</p>
|
|
35
|
+
</footer>
|
|
36
|
+
</article>
|
data/assets/theme.css
CHANGED
|
@@ -249,3 +249,148 @@ img:hover {
|
|
|
249
249
|
[data-theme="dark"] .navbar-toggler-icon {
|
|
250
250
|
filter: invert(1);
|
|
251
251
|
}
|
|
252
|
+
/* --- Post Layout Enhancements --- */
|
|
253
|
+
.arumai-post {
|
|
254
|
+
max-width: 780px;
|
|
255
|
+
margin: 0 auto;
|
|
256
|
+
padding: 20px 0 80px;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.post-header {
|
|
260
|
+
margin-bottom: 36px;
|
|
261
|
+
text-align: center;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.post-title {
|
|
265
|
+
font-size: 2.5rem;
|
|
266
|
+
font-weight: 700;
|
|
267
|
+
line-height: 1.2;
|
|
268
|
+
margin-bottom: 16px;
|
|
269
|
+
color: var(--arumai-text);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.post-meta {
|
|
273
|
+
display: flex;
|
|
274
|
+
flex-wrap: wrap;
|
|
275
|
+
gap: 12px;
|
|
276
|
+
justify-content: center;
|
|
277
|
+
align-items: center;
|
|
278
|
+
font-size: 0.9rem;
|
|
279
|
+
color: var(--arumai-muted);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.post-tags {
|
|
283
|
+
display: flex;
|
|
284
|
+
flex-wrap: wrap;
|
|
285
|
+
gap: 8px;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.post-tag {
|
|
289
|
+
display: inline-block;
|
|
290
|
+
padding: 3px 12px;
|
|
291
|
+
border-radius: 999px;
|
|
292
|
+
background-color: var(--arumai-blockquote-bg);
|
|
293
|
+
color: var(--arumai-muted);
|
|
294
|
+
font-size: 0.8rem;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.post-hero {
|
|
298
|
+
margin: 0 0 48px 0;
|
|
299
|
+
text-align: center;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.post-hero img {
|
|
303
|
+
width: 100%;
|
|
304
|
+
max-height: 420px;
|
|
305
|
+
object-fit: cover;
|
|
306
|
+
border-radius: 10px;
|
|
307
|
+
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.post-content {
|
|
311
|
+
font-size: 1.05rem;
|
|
312
|
+
line-height: 1.75;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.post-content h2 {
|
|
316
|
+
font-size: 1.7rem;
|
|
317
|
+
font-weight: 600;
|
|
318
|
+
margin-top: 56px;
|
|
319
|
+
margin-bottom: 22px;
|
|
320
|
+
padding-bottom: 10px;
|
|
321
|
+
border-bottom: 2px solid var(--arumai-blockquote-border);
|
|
322
|
+
color: var(--arumai-text);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.post-content h3 {
|
|
326
|
+
font-size: 1.35rem;
|
|
327
|
+
font-weight: 600;
|
|
328
|
+
margin-top: 36px;
|
|
329
|
+
margin-bottom: 16px;
|
|
330
|
+
color: var(--arumai-text);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.post-content p {
|
|
334
|
+
margin-bottom: 1.25em;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.post-content pre {
|
|
338
|
+
border-radius: 8px;
|
|
339
|
+
margin: 24px 0;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.post-content code {
|
|
343
|
+
font-size: 0.9em;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.post-section-figure {
|
|
347
|
+
margin: 32px 0;
|
|
348
|
+
text-align: center;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.post-section-figure img {
|
|
352
|
+
width: 100%;
|
|
353
|
+
max-width: 700px;
|
|
354
|
+
height: auto;
|
|
355
|
+
border-radius: 8px;
|
|
356
|
+
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.post-section-figure figcaption {
|
|
360
|
+
margin-top: 10px;
|
|
361
|
+
font-size: 0.85rem;
|
|
362
|
+
color: var(--arumai-muted);
|
|
363
|
+
font-style: italic;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.post-footer {
|
|
367
|
+
margin-top: 72px;
|
|
368
|
+
padding: 28px;
|
|
369
|
+
border-radius: 10px;
|
|
370
|
+
background-color: var(--arumai-blockquote-bg);
|
|
371
|
+
text-align: center;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.post-cta {
|
|
375
|
+
margin: 0;
|
|
376
|
+
font-size: 1.05rem;
|
|
377
|
+
color: var(--arumai-text);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.post-cta a {
|
|
381
|
+
font-weight: 600;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
@media (max-width: 768px) {
|
|
385
|
+
.post-title {
|
|
386
|
+
font-size: 1.9rem;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.post-hero img {
|
|
390
|
+
max-height: 280px;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.post-section-figure img {
|
|
394
|
+
max-width: 100%;
|
|
395
|
+
}
|
|
396
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekkyl-arumai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sathia
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|