* Add article list view * Add article view CSS * Cleanup scaffold app layout Most importantly, fix issue with page title. * Add article view to Page controller * Add article list view to router
15 lines
455 B
Text
15 lines
455 B
Text
<!DOCTYPE html>
|
|
<html lang="sv">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="csrf-token" content={get_csrf_token()} />
|
|
<title><%= assigns[:page_title] || "Anders Englöf Ytterström" %></title>
|
|
<link rel="stylesheet" href={~p"/assets/app.css"} />
|
|
</head>
|
|
<body class="bg-white">
|
|
<%= @inner_content %>
|
|
<script src={~p"/assets/app.js"}>
|
|
</script>
|
|
</body>
|
|
</html>
|