dotfolio-theme 0.1.0 → 0.1.1
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/_data/theme.yml +4 -4
- data/_includes/{recent-posts.html → recent-notes.html} +4 -4
- data/_layouts/home.html +1 -1
- data/assets/css/main.css +10 -20
- data/assets/css/tailwind.css +9 -9
- data/lib/dotfolio-theme/templates/_config.yml +3 -3
- data/lib/dotfolio-theme/templates/notes-index.html +3 -2
- metadata +12 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4e3d2c3fc78e7a59d82001a93129158ee9cbc6ceea20891ddfd12ea1e46b1c3e
|
|
4
|
+
data.tar.gz: b9852d91892f43ba369b17b927c07b5be3e8ad57469622fba8e71de5dd27c57a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f80d27b400a4aedf29ef089b32de82d24919b47a152e423766f26e29043f59128e52004ee487a2aca3e01e76d9058fe24594227a677c9e28bcf9ce2b53097a3
|
|
7
|
+
data.tar.gz: fb87e249d8a45a46b045ef1d050dc4597197986bd5bae7d36892eeb273dca480c0f4eafcb9c7e98f64614c6cfb099de324f4ec70a8a0f9527d36a275f9abac68
|
data/_data/theme.yml
CHANGED
|
@@ -14,8 +14,8 @@ headings:
|
|
|
14
14
|
more:
|
|
15
15
|
label: More on GitHub
|
|
16
16
|
link: https://github.com/username
|
|
17
|
-
|
|
18
|
-
heading:
|
|
17
|
+
notes:
|
|
18
|
+
heading: Notes
|
|
19
19
|
subheading: Smurfy notes, bookmarks, and handy smurfources.
|
|
20
20
|
more:
|
|
21
21
|
label: Older notes
|
|
@@ -67,11 +67,11 @@ tools:
|
|
|
67
67
|
projects:
|
|
68
68
|
- title : Smurfboard
|
|
69
69
|
description: A smurfy app to keep track of all village tasks, from mushroom gardening to potion brewing.
|
|
70
|
-
link:
|
|
70
|
+
link: https://example.com
|
|
71
71
|
image: assets/projects/project.png
|
|
72
72
|
- title : SmurfLib
|
|
73
73
|
description: A magical collection of scrolls, recipes, and Smurf lore, for every Smurf to learn and share.
|
|
74
|
-
link:
|
|
74
|
+
link: https://example.com
|
|
75
75
|
image: assets/projects/project.png
|
|
76
76
|
|
|
77
77
|
socials:
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
{% assign headings = site.headings | default: site.data.theme.headings | default: [] %}
|
|
3
3
|
|
|
4
4
|
<!-- Recent Posts -->
|
|
5
|
-
<section class="
|
|
6
|
-
<h2 class="heading">{{ headings.
|
|
7
|
-
<p class="subheading">{{ headings.
|
|
5
|
+
<section class="notes">
|
|
6
|
+
<h2 class="heading">{{ headings.notes.heading | default:headings.notes.heading }}</h2>
|
|
7
|
+
<p class="subheading">{{ headings.notes.subheading | default:headings.notes.subheading }}</p>
|
|
8
8
|
|
|
9
9
|
<ul>
|
|
10
10
|
{% for post in posts limit:3 %}
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
<!-- Notes Button -->
|
|
24
24
|
<div class="more">
|
|
25
25
|
<a href="/notes">
|
|
26
|
-
{{ headings.
|
|
26
|
+
{{ headings.notes.more.label | default:headings.notes.more.label }}
|
|
27
27
|
<svg fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
|
|
28
28
|
<path stroke-linecap="round" stroke-linejoin="round" d="M17 8l4 4m0 0l-4 4m4-4H3" />
|
|
29
29
|
</svg>
|
data/_layouts/home.html
CHANGED
data/assets/css/main.css
CHANGED
|
@@ -565,8 +565,6 @@ body {
|
|
|
565
565
|
background-image: radial-gradient(#e5e7eb 1px,transparent 1px);
|
|
566
566
|
--tw-text-opacity: 1;
|
|
567
567
|
color: rgb(31 41 55 / var(--tw-text-opacity, 1));
|
|
568
|
-
-webkit-font-smoothing: antialiased;
|
|
569
|
-
-moz-osx-font-smoothing: grayscale;
|
|
570
568
|
background-size: 16px 16px;
|
|
571
569
|
}
|
|
572
570
|
|
|
@@ -582,7 +580,7 @@ nav {
|
|
|
582
580
|
margin-left: auto;
|
|
583
581
|
margin-right: auto;
|
|
584
582
|
display: flex;
|
|
585
|
-
max-width:
|
|
583
|
+
max-width: 80ch;
|
|
586
584
|
align-items: center;
|
|
587
585
|
justify-content: space-between;
|
|
588
586
|
padding-left: 1.5rem;
|
|
@@ -594,7 +592,7 @@ nav {
|
|
|
594
592
|
main {
|
|
595
593
|
margin-left: auto;
|
|
596
594
|
margin-right: auto;
|
|
597
|
-
max-width:
|
|
595
|
+
max-width: 80ch;
|
|
598
596
|
padding-left: 1.5rem;
|
|
599
597
|
padding-right: 1.5rem;
|
|
600
598
|
padding-top: 4rem;
|
|
@@ -604,7 +602,7 @@ footer {
|
|
|
604
602
|
margin-left: auto;
|
|
605
603
|
margin-right: auto;
|
|
606
604
|
display: flex;
|
|
607
|
-
max-width:
|
|
605
|
+
max-width: 80ch;
|
|
608
606
|
justify-content: space-between;
|
|
609
607
|
padding-left: 1.5rem;
|
|
610
608
|
padding-right: 1.5rem;
|
|
@@ -1073,32 +1071,32 @@ main.home .more svg {
|
|
|
1073
1071
|
}
|
|
1074
1072
|
|
|
1075
1073
|
/* ----------------------------------------
|
|
1076
|
-
Posts
|
|
1074
|
+
Notes / Posts
|
|
1077
1075
|
---------------------------------------- */
|
|
1078
1076
|
|
|
1079
|
-
.
|
|
1077
|
+
.notes ul > :not([hidden]) ~ :not([hidden]) {
|
|
1080
1078
|
--tw-space-y-reverse: 0;
|
|
1081
1079
|
margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1082
1080
|
margin-bottom: calc(2rem * var(--tw-space-y-reverse));
|
|
1083
1081
|
}
|
|
1084
1082
|
|
|
1085
|
-
.
|
|
1083
|
+
.notes li {
|
|
1086
1084
|
border-left-width: 2px;
|
|
1087
1085
|
--tw-border-opacity: 1;
|
|
1088
1086
|
border-color: rgb(132 204 22 / var(--tw-border-opacity, 1));
|
|
1089
1087
|
padding-left: 1rem;
|
|
1090
1088
|
}
|
|
1091
1089
|
|
|
1092
|
-
.
|
|
1090
|
+
.notes .title {
|
|
1093
1091
|
font-size: 1.125rem;
|
|
1094
1092
|
line-height: 1.75rem;
|
|
1095
1093
|
}
|
|
1096
1094
|
|
|
1097
|
-
.
|
|
1095
|
+
.notes .title:hover {
|
|
1098
1096
|
text-decoration-line: underline;
|
|
1099
1097
|
}
|
|
1100
1098
|
|
|
1101
|
-
.
|
|
1099
|
+
.notes .excerpt {
|
|
1102
1100
|
margin-top: 0.25rem;
|
|
1103
1101
|
font-size: 0.875rem;
|
|
1104
1102
|
line-height: 1.25rem;
|
|
@@ -1106,7 +1104,7 @@ main.home .more svg {
|
|
|
1106
1104
|
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
1107
1105
|
}
|
|
1108
1106
|
|
|
1109
|
-
.
|
|
1107
|
+
.notes .excerpt:is(.dark *) {
|
|
1110
1108
|
--tw-text-opacity: 1;
|
|
1111
1109
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
1112
1110
|
}
|
|
@@ -1449,20 +1447,12 @@ main.home .more svg {
|
|
|
1449
1447
|
display: contents;
|
|
1450
1448
|
}
|
|
1451
1449
|
|
|
1452
|
-
.hidden {
|
|
1453
|
-
display: none;
|
|
1454
|
-
}
|
|
1455
|
-
|
|
1456
1450
|
.truncate {
|
|
1457
1451
|
overflow: hidden;
|
|
1458
1452
|
text-overflow: ellipsis;
|
|
1459
1453
|
white-space: nowrap;
|
|
1460
1454
|
}
|
|
1461
1455
|
|
|
1462
|
-
.filter {
|
|
1463
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1464
|
-
}
|
|
1465
|
-
|
|
1466
1456
|
/* ----------------------------------------
|
|
1467
1457
|
Base Styles (global resets if needed)
|
|
1468
1458
|
---------------------------------------- */
|
data/assets/css/tailwind.css
CHANGED
|
@@ -12,19 +12,19 @@
|
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
body {
|
|
15
|
-
@apply text-gray-800 bg-amber-50 bg-[radial-gradient(#e5e7eb_1px,transparent_1px)] dark:text-neutral-200 dark:bg-gray-900 dark:bg-[radial-gradient(#2a2a2a_1px,transparent_1px)] [background-size:16px_16px]
|
|
15
|
+
@apply text-gray-800 bg-amber-50 bg-[radial-gradient(#e5e7eb_1px,transparent_1px)] dark:text-neutral-200 dark:bg-gray-900 dark:bg-[radial-gradient(#2a2a2a_1px,transparent_1px)] [background-size:16px_16px];
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
nav {
|
|
19
|
-
@apply max-w-[
|
|
19
|
+
@apply max-w-[80ch] mx-auto px-6 py-8 flex justify-between items-center;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
main {
|
|
23
|
-
@apply max-w-[
|
|
23
|
+
@apply max-w-[80ch] mx-auto px-6 pt-16;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
footer {
|
|
27
|
-
@apply max-w-[
|
|
27
|
+
@apply max-w-[80ch] mx-auto px-6 py-7 flex justify-between text-gray-500;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
section {
|
|
@@ -221,21 +221,21 @@
|
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
/* ----------------------------------------
|
|
224
|
-
Posts
|
|
224
|
+
Notes / Posts
|
|
225
225
|
---------------------------------------- */
|
|
226
|
-
.
|
|
226
|
+
.notes ul {
|
|
227
227
|
@apply space-y-8;
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
.
|
|
230
|
+
.notes li {
|
|
231
231
|
@apply pl-4 border-l-2 border-lime-500;
|
|
232
232
|
}
|
|
233
233
|
|
|
234
|
-
.
|
|
234
|
+
.notes .title {
|
|
235
235
|
@apply text-lg hover:underline;
|
|
236
236
|
}
|
|
237
237
|
|
|
238
|
-
.
|
|
238
|
+
.notes .excerpt {
|
|
239
239
|
@apply text-sm text-gray-400 dark:text-gray-500 mt-1;
|
|
240
240
|
}
|
|
241
241
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
title: Dotfolio
|
|
2
|
-
description: A dotted notebook-style Jekyll theme for
|
|
2
|
+
description: A clean, dotted notebook-style Jekyll theme for developer portfolios, projects, and notes.
|
|
3
3
|
|
|
4
4
|
hero:
|
|
5
5
|
name: Brainy Smurf
|
|
@@ -14,8 +14,8 @@ headings:
|
|
|
14
14
|
more:
|
|
15
15
|
label: More on GitHub
|
|
16
16
|
link: https://github.com/username
|
|
17
|
-
|
|
18
|
-
heading:
|
|
17
|
+
notes:
|
|
18
|
+
heading: Notes
|
|
19
19
|
subheading: Smurfy notes, bookmarks, and handy smurfources.
|
|
20
20
|
more:
|
|
21
21
|
label: Older notes
|
|
@@ -4,9 +4,10 @@ title: "Notes"
|
|
|
4
4
|
pagination:
|
|
5
5
|
enabled: true
|
|
6
6
|
---
|
|
7
|
+
{% assign headings = site.headings | default: site.data.theme.headings | default: '' %}
|
|
7
8
|
<section class="notes-index">
|
|
8
|
-
<
|
|
9
|
-
<p class="subheading">
|
|
9
|
+
<h1 class="heading">{{ headings.notes.heading | default:headings.notes.heading }}</h1>
|
|
10
|
+
<p class="subheading">{{ headings.notes.subheading | default:headings.notes.subheading }}</p>
|
|
10
11
|
|
|
11
12
|
<input type="text" id="search-input" class="search-input" placeholder="Search notes..." />
|
|
12
13
|
|
metadata
CHANGED
|
@@ -1,42 +1,42 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dotfolio-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jennie Ron Ablog
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-04-
|
|
10
|
+
date: 2026-04-10 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: jekyll
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
|
-
- - "
|
|
16
|
+
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '4.
|
|
18
|
+
version: '4.4'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
|
-
- - "
|
|
23
|
+
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '4.
|
|
25
|
+
version: '4.4'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: jekyll-paginate-v2
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
|
-
- - "
|
|
30
|
+
- - "~>"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '0'
|
|
32
|
+
version: '3.0'
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - "
|
|
37
|
+
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '0'
|
|
39
|
+
version: '3.0'
|
|
40
40
|
description: Dotfolio is a calm, dotted notebook-style Jekyll theme with a minimal,
|
|
41
41
|
structured layout for showcasing projects and documenting ideas.
|
|
42
42
|
email:
|
|
@@ -55,7 +55,7 @@ files:
|
|
|
55
55
|
- _includes/hero.html
|
|
56
56
|
- _includes/nav.html
|
|
57
57
|
- _includes/projects.html
|
|
58
|
-
- _includes/recent-
|
|
58
|
+
- _includes/recent-notes.html
|
|
59
59
|
- _layouts/default.html
|
|
60
60
|
- _layouts/home.html
|
|
61
61
|
- _layouts/page.html
|
|
@@ -110,8 +110,6 @@ homepage: https://github.com/jennieablog/dotfolio-theme
|
|
|
110
110
|
licenses:
|
|
111
111
|
- MIT
|
|
112
112
|
metadata:
|
|
113
|
-
jekyll-theme: 'true'
|
|
114
|
-
homepage_uri: https://github.com/jennieablog/dotfolio-theme
|
|
115
113
|
source_code_uri: https://github.com/jennieablog/dotfolio-theme
|
|
116
114
|
rdoc_options: []
|
|
117
115
|
require_paths:
|
|
@@ -120,7 +118,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
120
118
|
requirements:
|
|
121
119
|
- - ">="
|
|
122
120
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: '0'
|
|
121
|
+
version: '3.0'
|
|
124
122
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
123
|
requirements:
|
|
126
124
|
- - ">="
|