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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ba490a8198dd1b105e503000fa606a62922f5e55d8b9c43f98a8750114e2eb13
4
- data.tar.gz: 301df074ead7bb1909e4a5593917bfb556b2e08e2b7a8b987f1b640b305c86dd
3
+ metadata.gz: 4e3d2c3fc78e7a59d82001a93129158ee9cbc6ceea20891ddfd12ea1e46b1c3e
4
+ data.tar.gz: b9852d91892f43ba369b17b927c07b5be3e8ad57469622fba8e71de5dd27c57a
5
5
  SHA512:
6
- metadata.gz: 2832737ce1435279287cf2fc6572fccd4835a16ff834c418a46cf9267343a362e1a62823b76628aea2c5a5db6062e9def211b00167cb38a48c85d5cbf5d7e4c4
7
- data.tar.gz: 65ce70ed6c3335b6bad717918016f60d25d2a9b69816d50d582624b418c1745f25deecf3159bf608b138cea8f70a1c7bfeffc037eb8e4f37c12fd3019d7206bd
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
- posts:
18
- heading: Recent Notes
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="posts">
6
- <h2 class="heading">{{ headings.posts.heading | default:headings.posts.heading }}</h2>
7
- <p class="subheading">{{ headings.posts.subheading | default:headings.posts.subheading }}</p>
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.posts.more.label | default:headings.posts.more.label }}
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
@@ -7,4 +7,4 @@ pagination:
7
7
 
8
8
  {% include hero.html %}
9
9
  {% include projects.html %}
10
- {% include recent-posts.html %}
10
+ {% include recent-notes.html %}
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: 75ch;
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: 75ch;
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: 75ch;
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
- .posts ul > :not([hidden]) ~ :not([hidden]) {
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
- .posts li {
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
- .posts .title {
1090
+ .notes .title {
1093
1091
  font-size: 1.125rem;
1094
1092
  line-height: 1.75rem;
1095
1093
  }
1096
1094
 
1097
- .posts .title:hover {
1095
+ .notes .title:hover {
1098
1096
  text-decoration-line: underline;
1099
1097
  }
1100
1098
 
1101
- .posts .excerpt {
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
- .posts .excerpt:is(.dark *) {
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
  ---------------------------------------- */
@@ -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] antialiased;
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-[75ch] mx-auto px-6 py-8 flex justify-between items-center;
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-[75ch] mx-auto px-6 pt-16;
23
+ @apply max-w-[80ch] mx-auto px-6 pt-16;
24
24
  }
25
25
 
26
26
  footer {
27
- @apply max-w-[75ch] mx-auto px-6 py-7 flex justify-between text-gray-500;
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
- .posts ul {
226
+ .notes ul {
227
227
  @apply space-y-8;
228
228
  }
229
229
 
230
- .posts li {
230
+ .notes li {
231
231
  @apply pl-4 border-l-2 border-lime-500;
232
232
  }
233
233
 
234
- .posts .title {
234
+ .notes .title {
235
235
  @apply text-lg hover:underline;
236
236
  }
237
237
 
238
- .posts .excerpt {
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 minimal and structured developer portfolios.
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
- posts:
18
- heading: Recent Notes
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
- <div class="heading">Notes</div>
9
- <p class="subheading">Developer notes, bookmarks, and resources.</p>
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.0
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-09 00:00:00.000000000 Z
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.0'
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.0'
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-posts.html
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
  - - ">="