17 lines
591 B
ERB
17 lines
591 B
ERB
<!DOCTYPE html>
|
|
<html lang="<%= html_lang_attribute(I18n.locale) %>">
|
|
<head>
|
|
<%= render 'layouts/portal_head' %>
|
|
</head>
|
|
<body class="font-default bg-white dark:bg-slate-900">
|
|
<div id="portal" class="antialiased">
|
|
<main class="flex flex-col min-h-screen main-content" role="main">
|
|
<%= render 'public/api/v1/portals/header', portal: @portal %>
|
|
<%= yield %>
|
|
<%= render 'public/api/v1/portals/footer' unless @portal.account.feature_enabled?('disable_branding') %>
|
|
</main>
|
|
</div>
|
|
<%= render 'layouts/portal_scripts' %>
|
|
</body>
|
|
</html>
|