Commit d027012f3787b8f2217bfd2d1b95eb535cc1c7e4

Thomas de Grivel 2022-01-21T15:09:09

resolve double footer in admin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/lib/kmxgit_web/templates/layout/app.html.heex b/lib/kmxgit_web/templates/layout/app.html.heex
index 7eb4e9d..0543398 100644
--- a/lib/kmxgit_web/templates/layout/app.html.heex
+++ b/lib/kmxgit_web/templates/layout/app.html.heex
@@ -1,2 +1 @@
 <%= @inner_content %>
-<%= render "footer.html", assigns %>
diff --git a/lib/kmxgit_web/templates/layout/root.html.heex b/lib/kmxgit_web/templates/layout/root.html.heex
index 5adbbe1..48d11b9 100644
--- a/lib/kmxgit_web/templates/layout/root.html.heex
+++ b/lib/kmxgit_web/templates/layout/root.html.heex
@@ -21,5 +21,6 @@
     <%= render "nav.html", assigns %>
     <%= render "flash.html", assigns %>
     <%= @inner_content %>
+    <%= render "footer.html", assigns %>
   </body>
 </html>