mirror of
https://github.com/plausible/analytics.git
synced 2024-12-18 14:51:57 +03:00
4d4f8ba5c3
* Elixir upgrade - upgraded Elixir to 1.11.2 - upgraded Erlang to 23.2.1 - upgraded Phoenix to 1.5.7 - Upgraded: bamboo_postmark 0.6.0 => 0.7.0 (minor) bcrypt_elixir 2.2.0 => 2.3.0 csv 2.3.1 => 2.4.1 ecto 3.4.6 => 3.5.5 ecto_sql 3.4.4 => 3.5.3 elixir_make 0.6.0 => 0.6.2 ex_machina 2.4.0 => 2.5.0 excoveralls 0.12.3 => 0.13.4 (minor) file_system 0.2.8 => 0.2.10 gettext 0.18.0 => 0.18.2 httpoison 1.6.2 => 1.7.0 nanoid 2.0.2 => 2.0.5 phoenix_ecto 4.1.0 => 4.2.1 phoenix_live_reload 1.2.2 => 1.3.0 postgrex 0.15.5 => 0.15.7 sentry 7.2.4 => 7.2.5 timex 3.6.2 => 3.6.3 tzdata 1.0.3 => 1.0.5 yamerl 0.8.0 => 0.8.1 * Elixir & Docker upgrade upgraded to 1.11.3 * Docker - fixed missing python3 package for newer Alpine linux
32 lines
1.7 KiB
Elixir
32 lines
1.7 KiB
Elixir
<!DOCTYPE html>
|
|
<html lang="en" class="h-full">
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<meta name="description" content="A lightweight, non-intrusive alternative to Google Analytics."/>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="<%= PlausibleWeb.Router.Helpers.static_path(@conn, "/images/icon/plausible_favicon.png") %>">
|
|
<title><%= assigns[:title] || "Plausible · Web analytics" %></title>
|
|
<link rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
|
|
<%= render("_tracking.html", assigns) %>
|
|
<script type="text/javascript" data-pref="<%= @conn.assigns[:current_user] && @conn.assigns[:current_user].theme %>" src="<%= Routes.static_path(@conn, "/js/applyTheme.js") %>"></script>
|
|
</head>
|
|
<body class="flex flex-col h-full bg-gray-100 dark:bg-gray-900">
|
|
<div class="text-center w-full my-8">
|
|
<a href="<%= home_dest(@conn) %>">
|
|
<%= img_tag(PlausibleWeb.Router.Helpers.static_path(@conn, "/images/icon/plausible_logo_dark.png"), class: "hidden dark:inline", style: "height: 2.5rem;", alt: "Plausible logo") %>
|
|
<%= img_tag(PlausibleWeb.Router.Helpers.static_path(@conn, "/images/icon/plausible_logo.png"), class: "inline dark:hidden", style: "height: 2.5rem;", alt: "Plausible logo")%>
|
|
</a>
|
|
</div>
|
|
|
|
<%= render("_flash.html", assigns) %>
|
|
<%= @inner_content %>
|
|
|
|
<p class="text-center text-gray-500 text-xs py-8">
|
|
©2020 Plausible Analytics. All rights reserved.
|
|
</p>
|
|
|
|
<script type="text/javascript" src="<%= Routes.static_path(@conn, "/js/app.js") %>"></script>
|
|
</body>
|
|
</html>
|