2018-09-10 09:21:59 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="<%= theme.language %>">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<%
|
|
|
|
var title = page.title;
|
|
|
|
|
|
|
|
if (is_archive()){
|
|
|
|
title = __('archive_a');
|
|
|
|
|
|
|
|
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>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
2018-09-16 06:37:38 +00:00
|
|
|
|
2018-09-10 09:21:59 +00:00
|
|
|
<% if (theme.rss){ %>
|
|
|
|
<link rel="alternate" href="<%- theme.rss %>" title="<%= config.title %>" type="application/atom+xml">
|
|
|
|
<% } %>
|
2018-09-20 04:11:03 +00:00
|
|
|
|
2018-09-24 01:51:48 +00:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#132873">
|
|
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
2018-09-20 04:11:03 +00:00
|
|
|
<meta name="apple-mobile-web-app-title" content="<%- theme.nickname %>">
|
|
|
|
<meta name="application-name" content="<%- theme.nickname %>">
|
|
|
|
<meta name="msapplication-TileColor" content="#603cba">
|
2018-09-24 01:51:48 +00:00
|
|
|
<meta name="msapplication-config" content="/browserconfig.xml">
|
2018-09-20 04:11:03 +00:00
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
2018-09-10 09:21:59 +00:00
|
|
|
<%- css('css/typing') %>
|
|
|
|
<% if (theme.icons){ %>
|
2018-09-20 04:11:03 +00:00
|
|
|
<%- css('css/fontawesome.min.css') %>
|
|
|
|
<%- css('css/brands.min.css') %>
|
2018-09-10 09:21:59 +00:00
|
|
|
<% } %>
|
|
|
|
</head>
|