diff --git a/lib/planner_web/templates/layout/root.html.leex b/lib/planner_web/templates/layout/root.html.leex
index 79caea9..84f3ccd 100644
--- a/lib/planner_web/templates/layout/root.html.leex
+++ b/lib/planner_web/templates/layout/root.html.leex
@@ -2,7 +2,7 @@
-
- <%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :update, @task)) %>
-
-
+<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :update, @task)) %>
diff --git a/lib/planner_web/templates/task/index.html.eex b/lib/planner_web/templates/task/index.html.eex
index 06f68e5..135a8f7 100644
--- a/lib/planner_web/templates/task/index.html.eex
+++ b/lib/planner_web/templates/task/index.html.eex
@@ -1,33 +1,29 @@
-
-
- <%= link "new", to: Routes.task_path(@conn, :new), class: "button is-dark" %>
+<%= link "new", to: Routes.task_path(@conn, :new), class: "button is-dark" %>
-
-
-
-
- task |
-
-
-
- <%= for task <- @tasks do %>
-
-
- <%= if not is_nil(task.due_at) do %>
-
-
- due: <%= task.due_at %>
-
-
- <% end %>
- <%= link to: Routes.task_path(@conn, :show, task.id), class: "has-text-black" do %>
- <%= task.value %>
- <% end %>
- |
-
- <% end %>
-
-
-
-
+
+
+
+
+ task |
+
+
+
+ <%= for task <- @tasks do %>
+
+
+ <%= if not is_nil(task.due_at) do %>
+
+
+ due: <%= task.due_at %>
+
+
+ <% end %>
+ <%= link to: Routes.task_path(@conn, :show, task.id), class: "has-text-black" do %>
+ <%= task.value %>
+ <% end %>
+ |
+
+ <% end %>
+
+
diff --git a/lib/planner_web/templates/task/new.html.eex b/lib/planner_web/templates/task/new.html.eex
index fd05e9e..3eb812a 100644
--- a/lib/planner_web/templates/task/new.html.eex
+++ b/lib/planner_web/templates/task/new.html.eex
@@ -1,5 +1 @@
-
-
- <%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :create)) %>
-
-
+<%= render "form.html", Map.put(assigns, :action, Routes.task_path(@conn, :create)) %>
diff --git a/lib/planner_web/templates/task/show.html.eex b/lib/planner_web/templates/task/show.html.eex
index 708ced0..e156f00 100644
--- a/lib/planner_web/templates/task/show.html.eex
+++ b/lib/planner_web/templates/task/show.html.eex
@@ -1,31 +1,26 @@
-
-
-
-
- <%= if not is_nil(@task.due_at) or is_nil(@task.filed_at) do %>
-
- <%= if not is_nil(@task.due_at) do %>due: <%= @task.due_at %><% end %>
- <%= if is_nil(@task.filed_at) do %>unfiled<% end %>
-
- <% end %>
-
-
- <%= @task.value %>
-
-
-
- updated: <%= @task.updated_at %>
- created: <%= @task.inserted_at %>
-
-
-
-
- <%= link "edit", to: Routes.task_path(@conn, :edit, @task.id), class: "button is-dark" %>
-
-
- <%= link "delete", to: Routes.task_path(@conn, :delete, @task.id), class: "button is-dark", method: :delete, data: [confirm: "are you sure?"] %>
-
-
+
+ <%= if not is_nil(@task.due_at) or is_nil(@task.filed_at) do %>
+
+ <%= if not is_nil(@task.due_at) do %>due: <%= @task.due_at %><% end %>
+ <%= if is_nil(@task.filed_at) do %>unfiled<% end %>
+ <% end %>
+
+
+ <%= @task.value %>
+
+
+
+ updated: <%= @task.updated_at %>
+ created: <%= @task.inserted_at %>
+
+
+
+
+ <%= link "edit", to: Routes.task_path(@conn, :edit, @task.id), class: "button is-dark" %>
+
+
+ <%= link "delete", to: Routes.task_path(@conn, :delete, @task.id), class: "button is-dark", method: :delete, data: [confirm: "are you sure?"] %>
+