mirror of
https://github.com/wahyd4/hexo-phase-junv.git
synced 2026-08-09 21:15:51 +10:00
37 lines
1.6 KiB
Plaintext
37 lines
1.6 KiB
Plaintext
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<%
|
|
var title = [];
|
|
if (page.current > 1) title.push(__('page', page.current));
|
|
if (page.title) title.push(page.title);
|
|
if (page.category) title.push(page.category);
|
|
if (page.tag) title.push(page.tag);
|
|
if (page.archive){
|
|
if (page.year) title.push(__('archive_b', page.year + (page.month ? '/' + page.month : '')));
|
|
else title.push(__('archive_a'));
|
|
}
|
|
title.push(config.title);
|
|
%>
|
|
<title><%= title.join(' | ') %></title>
|
|
<% if (config.author){ %><meta name="author" content="<%= config.author %>"><% } %>
|
|
|
|
<% if (page.description){ %>
|
|
<meta name="description" content="<%= page.description %>">
|
|
<% } else if (config.description){ %>
|
|
<meta name="description" content="<%= config.description %>">
|
|
<% } else if (page.excerpt){ %>
|
|
<meta name="description" content="<%= strip_html(page.excerpt).replace(/^\s*/, '').replace(/\s*$/, '') %>">
|
|
<% } else if (page.content){ %>
|
|
<meta name="description" content="<%= strip_html(page.content).replace(/^\s*/, '').replace(/\s*$/, '').substring(0, 150) %>">
|
|
<% } %>
|
|
<% if (page.keywords){ %><meta name="keywords" content="<%= page.keywords %>"><% } %>
|
|
|
|
<link rel="alternate" href="<% if (theme.rss){ %><%- theme.rss %><% } else { %><%- config.root %>atom.xml<% } %>" title="<%= config.title %>" type="application/atom+xml">
|
|
<link rel="stylesheet" href="<%- config.root %>css/style.css" media="screen" type="text/css">
|
|
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
|
<script src="<%- config.root%>js/jquery-1.11.1.min.js"></script>
|
|
<%- partial('google_analytics') %>
|
|
</head>
|