32 lines
893 B
Plaintext
32 lines
893 B
Plaintext
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<%
|
|
let title = page.title;
|
|
if (is_archive()) {
|
|
title = __('archive');
|
|
if (is_month()) {
|
|
title += ': ' + page.year + '/' + page.month;
|
|
} else if (is_year()) {
|
|
title += ': ' + page.year;
|
|
}
|
|
} else if (is_category()) {
|
|
title = __('category') + ': ' + page.category;
|
|
} else if (is_tag()) {
|
|
title = __('tag') + ': ' + page.tag;
|
|
} else {
|
|
title = __(page.title);
|
|
}
|
|
%>
|
|
<title>
|
|
<% if (title){ %><%= title %> |
|
|
<% } %>
|
|
<%= theme.base_info.title || config.title || 'Keep' %>
|
|
</title>
|
|
<%- __favicon_tag('images/logo.svg') %>
|
|
<%- css('css/style') %>
|
|
<%- __css('css/font-awesome.min.css') %>
|
|
<%- export_config() %>
|
|
</head>
|
|
|