summaryrefslogtreecommitdiff
path: root/layout
diff options
context:
space:
mode:
Diffstat (limited to 'layout')
-rw-r--r--layout/_partial/header.ejs14
1 files changed, 12 insertions, 2 deletions
diff --git a/layout/_partial/header.ejs b/layout/_partial/header.ejs
index 1ef4ef8..32d2d2a 100644
--- a/layout/_partial/header.ejs
+++ b/layout/_partial/header.ejs
@@ -1,7 +1,17 @@
<header class="header">
- <div class="header-title">
- <%= config.title %>
+ <div class="header-topbar">
+ <div class="header-title">
+ <%= config.title %>
+ </div>
+ <div class="header-menu">
+ <% for (let item of theme.menubar) { %>
+ <a href="<%= item[0] %>"><%= item[1] %></a>
+ <% } %>
+ </div>
</div>
+ <% if (theme.logo) { %>
+ <div class="header-logo" style="background-image: url('<%= theme.logo %>');"></div>
+ <% } %>
<div class="header-desc">
<%= config.description %>
</div>