diff options
author | Jonas Hartmann <netzebw@jonas-hartmann.com> | 2024-04-29 15:43:25 +0200 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-04-30 16:21:47 +0100 |
commit | 8571bb9d6ea7f3671e2244721c8b3e35d7d795fc (patch) | |
tree | ee34b06da057a177da30aec9d350352447963a92 | |
parent | 4c3e0f5dd09da3e580d33f9d85301498f2490099 (diff) | |
download | tour-8571bb9d6ea7f3671e2244721c8b3e35d7d795fc.tar.gz tour-8571bb9d6ea7f3671e2244721c8b3e35d7d795fc.zip |
add what
-rw-r--r-- | src/tour.gleam | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tour.gleam b/src/tour.gleam index be26ffa..0bfd9cf 100644 --- a/src/tour.gleam +++ b/src/tour.gleam @@ -293,6 +293,9 @@ fn contents_list_html(chapters: List(Chapter)) -> String { ]), ..chapters ] + |> list.append([ + h("p", [], [h("a", [#("href", path_what_next)], [text("What's next…?")])]), + ]) |> list.map(render_html) |> string.join("\n") } |