From 87ddbaa6b5022488da22e3b7c854a0c2a242c0b3 Mon Sep 17 00:00:00 2001 From: Mitchell Hanberg Date: Mon, 26 Jul 2021 22:22:08 -0400 Subject: [PATCH] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 039400e..8e8330f 100644 --- a/README.md +++ b/README.md @@ -164,7 +164,9 @@ html lang: "en" do section class: "container" do nav role: "navigation" do ul do - li do: a("Get Started", href: "https://hexdocs.pm/phoenix/overview.html") + li do + a href: "https://hexdocs.pm/phoenix/overview.html"), do: "Get Started" + end end end @@ -176,8 +178,8 @@ html lang: "en" do end main role: "main", class: "container" do - p class: "alert alert-info", role: "alert", compact: true, do: get_flash(@conn, :info) - p class: "alert alert-danger", role: "alert", compact: true, do: get_flash(@conn, :error) + p class: "alert alert-info", role: "alert", do: get_flash(@conn, :info) + p class: "alert alert-danger", role: "alert", do: get_flash(@conn, :error) render @view_module, @view_template, assigns end