<!DOCTYPE html lang="<%= I18n.locale %>">
|
|
<html>
|
|
<head>
|
|
<title><%= content_for?(:title) ? yield(:title) : t(:project_name) %></title>
|
|
|
|
<%= tag :meta, name: 'description', content: content_for?(:meta_description) ? yield(:meta_description) : (@node.present?? @node.page_description : '') %>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
<link rel="apple-touch-icon" href="/ikea-favicon-300x300.png">
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" sizes="16x16 32x32">
|
|
<link rel="icon" sizes="192x192" href="/ikea-favicon-300x300.png">
|
|
|
|
<%= stylesheet_link_tag "application" %>
|
|
<%= frontend_javascript_importmap_tags %>
|
|
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<%= link_to svg('ikea-foundation-week'), root_url %>
|
|
<div>
|
|
<%= t('can_you_spot_the_link').html_safe %>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<%= yield %>
|
|
</main>
|
|
</body>
|
|
</html>
|