34 lines
1019 B
Plaintext
34 lines
1019 B
Plaintext
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<%
|
||
|
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 if (page.title === 'about') {
|
||
|
title = __('about');
|
||
|
}
|
||
|
%>
|
||
|
<title>
|
||
|
<% if (title){ %><%= title %> | <% } %><%= config.title %>
|
||
|
</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||
|
<% if (theme.rss){ %>
|
||
|
<link rel="alternate" href="<%= url_for(theme.rss) %>" title="<%= config.title %>" type="application/atom+xml">
|
||
|
<% } %>
|
||
|
<% if (theme.favicon){ %>
|
||
|
<%- favicon_tag(theme.favicon) %>
|
||
|
<% } %>
|
||
|
<%- css('css/style') %>
|
||
|
<%- export_config() %>
|
||
|
</head>
|
||
|
|