2019-08-17 20:58:36 +02:00
|
|
|
doctype html
|
|
|
|
html lang="en"
|
|
|
|
head
|
|
|
|
meta charset="utf-8"
|
|
|
|
meta http-equiv="X-UA-Compatible" content="IE=edge"
|
2019-08-18 02:43:44 +02:00
|
|
|
meta name="viewport" content="width=device-width, initial-scale=1"
|
|
|
|
title
|
2019-08-17 20:58:36 +02:00
|
|
|
= if assigns[:title] do
|
|
|
|
=> assigns[:title]
|
|
|
|
' - Philomena
|
|
|
|
- else
|
|
|
|
' Philomena
|
2019-11-16 01:59:28 +01:00
|
|
|
link rel="stylesheet" href=stylesheet_path(@conn, @current_user)
|
2019-08-18 02:43:44 +02:00
|
|
|
link rel="icon" href="/favicon.ico" type="image/x-icon"
|
|
|
|
link rel="icon" href="/favicon.svg" type="image/svg+xml"
|
|
|
|
meta name="generator" content="philomena"
|
|
|
|
meta name="theme-color" content="#618fc3"
|
|
|
|
meta name="format-detection" content="telephone=no"
|
|
|
|
meta name="robots" content="noindex, nofollow"
|
2019-11-13 05:49:37 +01:00
|
|
|
= csrf_meta_tag()
|
2019-08-18 02:43:44 +02:00
|
|
|
script type="text/javascript" src=Routes.static_path(@conn, "/js/app.js") async="async"
|
|
|
|
body data-theme="default"
|
|
|
|
= render PhilomenaWeb.LayoutView, "_burger.html", assigns
|
|
|
|
#container
|
|
|
|
= render PhilomenaWeb.LayoutView, "_header.html", assigns
|
|
|
|
= render PhilomenaWeb.LayoutView, "_flash_warnings.html", assigns
|
2019-11-17 23:51:14 +01:00
|
|
|
main#content class=layout_class(@conn)
|
2019-08-18 02:43:44 +02:00
|
|
|
= render @view_module, @view_template, assigns
|
2019-10-05 02:27:26 +02:00
|
|
|
= render PhilomenaWeb.LayoutView, "_footer.html", assigns
|
2019-10-11 03:47:13 +02:00
|
|
|
= clientside_data(@conn)
|