diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-22 15:44:24 -0600 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-22 15:44:24 -0600 |
commit | deaaa3058727ab4646d87affaa93e8fc10f982ac (patch) | |
tree | e1af9410f273751ef0f3f052c2b59fa7183c964e | |
parent | 7905252d246e507cac894c7e58edbc1e3df360e9 (diff) | |
download | aggiedit-deaaa3058727ab4646d87affaa93e8fc10f982ac.tar.gz aggiedit-deaaa3058727ab4646d87affaa93e8fc10f982ac.zip |
Change favicon to static path
-rw-r--r-- | lib/aggiedit_web/templates/layout/root.html.heex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/aggiedit_web/templates/layout/root.html.heex b/lib/aggiedit_web/templates/layout/root.html.heex index ec7ff0d..861ed8b 100644 --- a/lib/aggiedit_web/templates/layout/root.html.heex +++ b/lib/aggiedit_web/templates/layout/root.html.heex @@ -8,7 +8,7 @@ <%= live_title_tag assigns[:page_title] || "Aggiedit" %> <link phx-track-static rel="stylesheet" href={Routes.static_path(@conn, "/assets/app.css")}/> <script phx-track-static type="text/javascript" src={Routes.static_path(@conn, "/assets/app.js")}></script> - <link rel="icon" type="image/x-icon" href={Routes.static_path(@conn, "/favicon.ico")}/> + <link rel="icon" type="image/x-icon" href="/favicon.ico" /> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script> |