mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
40 lines
1.7 KiB
Text
40 lines
1.7 KiB
Text
doctype html
|
|
html lang="en"
|
|
head
|
|
meta http-equiv="X-UA-Compatible" content="IE=edge"
|
|
= viewport_meta_tag(@conn)
|
|
|
|
title
|
|
= if assigns[:title] do
|
|
=> assigns[:title]
|
|
' - Derpibooru
|
|
- else
|
|
' Derpibooru
|
|
link rel="preconnect" href="https://#{cdn_host()}"
|
|
link rel="stylesheet" href=stylesheet_path(@current_user)
|
|
= if is_nil(@current_user) do
|
|
link rel="stylesheet" href=dark_stylesheet_path() media="(prefers-color-scheme: dark)"
|
|
link rel="icon" href="/favicon.ico" type="image/x-icon"
|
|
link rel="icon" href="/favicon.svg" type="image/svg+xml"
|
|
link rel="search" type="application/opensearchdescription+xml" title="Derpibooru" href="/opensearch.xml"
|
|
meta name="generator" content="philomena"
|
|
meta name="theme-color" content="#618fc3"
|
|
meta name="format-detection" content="telephone=no"
|
|
= csrf_meta_tag()
|
|
|
|
= vite_hmr? do
|
|
script type="module" src="http://#{@conn.host}:5173/@vite/client"
|
|
script type="module" src="http://#{@conn.host}:5173/js/app.ts"
|
|
- else
|
|
script type="text/javascript" src=~p"/js/app.js" async="async"
|
|
= render PhilomenaWeb.LayoutView, "_opengraph.html", assigns
|
|
body data-theme=theme_name(@current_user) data-vite-reload=to_string(vite_reload?())
|
|
= render PhilomenaWeb.LayoutView, "_burger.html", assigns
|
|
#container class=container_class(@current_user)
|
|
= render PhilomenaWeb.LayoutView, "_header.html", assigns
|
|
= render PhilomenaWeb.LayoutView, "_flash_warnings.html", assigns
|
|
main#content class=layout_class(@conn)
|
|
= @inner_content
|
|
= render PhilomenaWeb.LayoutView, "_footer.html", assigns
|
|
form.hidden: input.js-interaction-cache type="hidden" value="{}"
|
|
= clientside_data(@conn)
|