mirror of
https://gitlab.com/OpenAlt/OpenAltRO/openalt_ro.git
synced 2026-09-24 14:26:49 +00:00
90 lines
3 KiB
Text
90 lines
3 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Metadata -->
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="<%= config.description %>">
|
|
<meta name="author" content="<%= config.author %>">
|
|
<meta name="title" content="<%= config.title %> - <%= config.subtitle %>">
|
|
<meta name="theme-color" content="<%= theme.primary_color %>">
|
|
|
|
<!-- Open Graph Meta Tags -->
|
|
<meta property="og:title" content="<%= config.title %>">
|
|
<meta property="og:description" content="<%= config.description %>">
|
|
<meta property="og:image" content="<%= url_for(theme.banner) %>">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="<%= config.url %>">
|
|
|
|
<link rel="icon" href="<%= url_for(theme.favicon) %>">
|
|
|
|
<script src="<%= url_for(theme.fontawesome) %>" crossorigin="anonymous"></script>
|
|
|
|
<title><%= config.title %></title>
|
|
<link rel="stylesheet" href="<%= url_for('/css/style.css') %>">
|
|
|
|
<style>
|
|
a:hover {
|
|
color: <%= theme.primary_color %>;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<nav>
|
|
<!-- Avatar -->
|
|
<a href="/">
|
|
<div class="topbar-header">
|
|
<img src="<%= url_for(theme.banner) %>" alt="<%= config.author %>">
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Topbar Menu -->
|
|
<% theme.topbar_menu.forEach(function(menu) { %>
|
|
<% if (menu.enable) { %>
|
|
<a href="<%= menu.url %>">
|
|
<%= menu.name %>
|
|
</a>
|
|
<% } %>
|
|
<% }); %>
|
|
|
|
<span class="social">
|
|
<% theme.social.forEach(function(social) { %>
|
|
<% if (social.enable) { %>
|
|
<span class="social-icon">
|
|
<a href="<%= social.url %>" target="_blank">
|
|
<% if (theme.fontawesome) { %>
|
|
<i class="<%= social.icon %>"></i>
|
|
<% } else { %>
|
|
<img src='<%= url_for(theme.avatar) %>'></img>
|
|
<% } %>
|
|
</a>
|
|
</span>
|
|
<% } %>
|
|
<% }); %>
|
|
</span>
|
|
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<!-- BODY -->
|
|
<div class="content">
|
|
<%- body %>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="footer smoll">
|
|
<% if (theme.hexo) { %>
|
|
<div class="hexo footer">
|
|
Powered by Hexo, theme <a href="https://openalt.ro" target="_blank">OpenAlt</a><br>
|
|
</div>
|
|
<% } %>
|
|
<% if (theme.copyright) { %>
|
|
<div class="copy footer">
|
|
© <%= theme.copy_year %> <%= config.author %>
|
|
</div>
|
|
<% } %>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|