diff of 0a59d06a8421add58124b6a9406e6bf79d1709f3
0a59d06a8421add58124b6a9406e6bf79d1709f3
diff --git a/elm-frontti/src/PostsAdmin.elm b/elm-frontti/src/PostsAdmin.elm
index a1dfdc5..c53a35a 100644
--- a/elm-frontti/src/PostsAdmin.elm
+++ b/elm-frontti/src/PostsAdmin.elm
@@ -35,7 +35,8 @@ titleView title = case (int_to_month_string title.month) of
, a [ href ("/blog/post/edit/" ++ String.fromInt title.id)
, attribute "data-testid" "manager-edit-post-btn"
, onClick (OpenPostEditor title.id)] [text "Edit"]
- , a [href ("/blog/post/remove/" ++ String.fromInt title.id)] [text "Remove"]
+ -- this has never been implemented...
+ -- , a [href ("/blog/post/remove/" ++ String.fromInt title.id)] [text "Remove"]
, div [class "post-admin-title" ]
(List.append [ h3 [] [text "Tags: "]]
(List.map (\tag -> a [ href ("/blog/tags/" ++ tag)
diff --git a/src/routes/root-routes.lisp b/src/routes/root-routes.lisp
index 4220e8c..43bf373 100644
--- a/src/routes/root-routes.lisp
+++ b/src/routes/root-routes.lisp
@@ -80,8 +80,8 @@
<script src=\"/resources/murja.js\"></script>
</head>
<body>
+ <div id=\"app\" />
<script src=\"/resources/murja-helper.js\"></script>
- <div id=\"#app\" />
</body>
</html>")