mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-11-05 00:43:13 +00:00
27 lines
814 B
Plaintext
27 lines
814 B
Plaintext
|
|
<%
|
|
let contType = '';
|
|
if (is_root()) {
|
|
contType = 'main__container';
|
|
}
|
|
%>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- partial('_partial/head') %>
|
|
<body>
|
|
<main class="container-wrapper">
|
|
<!--[if lt IE 9]>
|
|
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade</a>.</p>
|
|
<![endif]-->
|
|
<noscript><small class="no-js">You disabled Javascript. Please, enable it for better experience.</small></noscript>
|
|
<%- partial('_partial/navbar', null, {cache: !config.relative_link}) %>
|
|
<%- partial('_partial/sidebar') %>
|
|
<div class="container <%= contType %>"><%- body %></div>
|
|
</main>
|
|
<script src="/js/main.min.js"></script>
|
|
<% if (is_root()) { %> <script src="/js/index.min.js"></script> <% } %>
|
|
</body>
|
|
</html>
|