<%= link "new", to: Routes.task_path(@conn, :new), class: "button is-dark" %>
<%= for task <- @tasks do %> <% end %>
task
<%= 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 %>