aboutsummaryrefslogtreecommitdiff
path: root/blog/sidebar.ml
diff options
context:
space:
mode:
Diffstat (limited to 'blog/sidebar.ml')
-rwxr-xr-xblog/sidebar.ml23
1 files changed, 0 insertions, 23 deletions
diff --git a/blog/sidebar.ml b/blog/sidebar.ml
deleted file mode 100755
index 1df0f1a..0000000
--- a/blog/sidebar.ml
+++ /dev/null
@@ -1,23 +0,0 @@
-open StdLabels
-open Brr
-
-(** Return the sidebar *)
-let get
- : unit -> El.t option
- = fun () ->
-
- List.find_opt (El.children @@ Document.body G.document)
- ~f:(fun t -> El.has_tag_name El.Name.aside t)
-
-let rec clean
- : El.t -> unit
- = fun el ->
- List.iter (El.children el)
- ~f:(fun el ->
- (* Remove the links from the sidebar, keep h1 and other stuff *)
- if (El.has_tag_name (Jstr.v "nav") el)
- || (El.has_tag_name (Jstr.v "ul") el) then
- El.remove el
- else
- clean el
- )