mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 10:12:26 +00:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="utf-8">
|
|
<title><%= site_name %>: Your News Inbox</title>
|
|
<%= stylesheetTag("application.css") %>
|
|
<meta name="csrf-param" content="authenticity_token" />
|
|
<meta name="csrf-token" content="<%= authenticity_token %>" />
|
|
<link rel="icon" href="<%= assetPath("images/favicon.ico") %>">
|
|
</head>
|
|
<body class="d-flex flex-column text-center font-weight-bold text-bg-dark min-vh-100">
|
|
<div class="container">
|
|
<%= partial("flash.html") %>
|
|
<%= partial("nav/navbar.plush.html") %>
|
|
<%= partial("header/header.plush.html") %>
|
|
<%= yield %>
|
|
</div>
|
|
|
|
<%= javascriptTag("application.js") %>
|
|
<%= if (analytics_enabled == "true") { %>
|
|
<%= if (analytics_enabled_self_hosting) { %>
|
|
<script defer data-domain="<%= site_domain %>" src="https://<%= site_domain %>/js/script.js"></script>
|
|
<% } else { %>
|
|
<script defer data-domain="<%= site_domain %>" src="https://plausible.io/js/script.js"></script>
|
|
<% } %>
|
|
<% } %>
|
|
</body>
|
|
|
|
<%= partial("footer.plush.html") %>
|
|
</html>
|