+1
scripts/bootstrap-icons/src/classes.json
+1
scripts/bootstrap-icons/src/classes.json
+4
-4
src/_components/post_card.vto
+4
-4
src/_components/post_card.vto
···
5
5
<p class="text-subtext1 text-lg">{{ post.title }}</p>
6
6
<p class="inline italic text-subtext0">{{ post.summary }}</p>
7
7
<p class="float-right inline text-blue">
8
-
<time datetime="{{ post.date |> date('date') }}">
9
-
{{ post.date |> date('DATE') }}
8
+
<time datetime="{{ post.published |> date('date') }}">
9
+
{{ post.published |> date('DATE') }}
10
10
</time>
11
11
</p>
12
12
</div>
···
19
19
<h2 class="text-subtext1 font-serif text-2xl mb-2">{{ post.title }}</h2>
20
20
<h3 class="text-lg lg:inline italic text-subtext0">{{ post.summary }}</h3>
21
21
<p class="text-lg lg:float-right lg:inline text-blue">
22
-
<time datetime="{{ post.date |> date('date') }}">
23
-
{{ post.date |> date('DATE') }}
22
+
<time datetime="{{ post.published |> date('date') }}">
23
+
{{ post.published |> date('DATE') }}
24
24
</time>
25
25
</p>
26
26
</div>
+2
-2
src/_includes/layouts/about.vto
+2
-2
src/_includes/layouts/about.vto
···
2
2
<main class="min-h-screen text-text justify-self-center w-full lg:w-1/2 h-card">
3
3
<h1 class="my-8 text-5xl text-bold text-mauve">
4
4
About
5
-
<div class="p-name p-nickname inline">
5
+
<span class="p-name p-nickname inline">
6
6
dish
7
-
</div>
7
+
</span>
8
8
</h1>
9
9
10
10
<div class="text-lg">
+1
-1
src/_includes/layouts/blog-list.vto
+1
-1
src/_includes/layouts/blog-list.vto
+1
-1
src/_includes/layouts/blog-post.vto
+1
-1
src/_includes/layouts/blog-post.vto
+1
-1
src/blog/example-blog-post-2.md
+1
-1
src/blog/example-blog-post-2.md
+1
-1
src/blog/example-blog-post.md
+1
-1
src/blog/example-blog-post.md
+4
-1
src/static/icons/bsi.min.css
+4
-1
src/static/icons/bsi.min.css
···
2
2
@font-face {
3
3
font-display: block;
4
4
font-family: bootstrap-icons;
5
-
src: url("/static/icons/bsi.min.woff2?v=1740025433") format("woff2");
5
+
src: url("/static/icons/bsi.min.woff2?v=1740282679") format("woff2");
6
6
}
7
7
.bi::before,
8
8
[class*=" bi-"]::before,
···
43
43
}
44
44
.bi-list-ul::before {
45
45
content: "\f478";
46
+
}
47
+
.bi-paragraph::before {
48
+
content: "\f4b4";
46
49
}
47
50
.bi-pencil::before {
48
51
content: "\f4cb";
src/static/icons/bsi.min.woff2
src/static/icons/bsi.min.woff2
This is a binary file and will not be displayed.
+15
src/static/styles.css
+15
src/static/styles.css
···
118
118
div.callout-content > p {
119
119
@apply mb-0;
120
120
}
121
+
122
+
h2:has(a.header-anchor) {
123
+
@apply text-3xl text-mauve relative mb-8 no-underline;
124
+
left: -1.75rem;
125
+
}
126
+
h2:has(a.header-anchor)::before {
127
+
@apply text-2xl relative mr-1;
128
+
top: 0.25rem;
129
+
font-family: "bootstrap-icons";
130
+
content: "\F4B4";
131
+
}
132
+
}
133
+
134
+
@utility header-anchor {
135
+
@apply text-mauve!;
121
136
}
122
137
123
138
@utility callout {