Skip to content

Commit d363aee

Browse files
Add IDs to heading on main page
1 parent 162a5d2 commit d363aee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/website/page/index.gleam

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,17 @@ pub fn my_stuff(posts: List(blog.Post(_))) -> component.Section(_) {
6262
"My Stuff",
6363
list.flatten([
6464
[
65-
html.h2([], [
65+
html.h2([attribute.id("links")], [
6666
element.text("Links"),
6767
]),
6868
html.p([], list.map(socials, social)),
69-
html.h2([], [
69+
html.h2([attribute.id("posts")], [
7070
element.text("Posts"),
7171
]),
7272
],
7373
list.map(posts, post),
7474
[
75-
html.h2([], [
75+
html.h2([attribute.id("talks")], [
7676
element.text("Talks"),
7777
]),
7878
],

0 commit comments

Comments
 (0)