diff options
Diffstat (limited to 'src/tour.gleam')
-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") } |