Current section

Files

Jump to
literature lib literature templates layout root_dashboard.html.heex
Raw

lib/literature/templates/layout/root_dashboard.html.heex

<!DOCTYPE html>
<html lang="en">
<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="csrf-token" content={get_csrf_token()} />
<.live_title suffix=" · Literature">
{assigns[:page_title] || "Literature"}
</.live_title>
<link rel="shortcut icon" type="image/png" href="/favicon.ico" />
<link phx-track-static rel="stylesheet" href={asset_path(@conn, :css)} />
<script defer phx-track-static type="text/javascript" src={asset_path(@conn, :js)}>
</script>
</head>
<body>
{@inner_content}
</body>
</html>