diff --git a/lib/chiya_web/controllers/page_html/bookmarks.html.heex b/lib/chiya_web/controllers/page_html/bookmarks.html.heex new file mode 100644 index 0000000..961a504 --- /dev/null +++ b/lib/chiya_web/controllers/page_html/bookmarks.html.heex @@ -0,0 +1,27 @@ +<%= if @channel do %> +
+ <.header> + <%= @channel.name %> + +
+ +
+
+ <%= Markdown.render(@channel.content) |> raw %> +
+ +
+ <.note_list notes={@notes} layout={@channel.layout} show_content={false} /> +
+
+<% else %> +
+ <.header> + Wiki + + +
+ Wiki is not set up. +
+
+<% end %>