23 lines
617 B
Plaintext
23 lines
617 B
Plaintext
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<%
|
|
var title = page.title;
|
|
if (is_archive()){
|
|
title = 'Archives';
|
|
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;
|
|
}
|
|
%>
|
|
<title><% if (title){ %><%= title %> | <% } %><%= config.title %></title>
|
|
|
|
<%- css('styles/main') %>
|
|
<link href='https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css' rel='stylesheet'>
|