summaryrefslogtreecommitdiff
path: root/themes/hexo-theme-freemind.bithack/layout/_partial/head.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'themes/hexo-theme-freemind.bithack/layout/_partial/head.ejs')
m---------themes/hexo-theme-freemind.bithack0
-rw-r--r--themes/hexo-theme-freemind.bithack/layout/_partial/head.ejs63
2 files changed, 63 insertions, 0 deletions
diff --git a/themes/hexo-theme-freemind.bithack b/themes/hexo-theme-freemind.bithack
deleted file mode 160000
-Subproject db335ebdc14507c7687084da084a56eb3d003f1
diff --git a/themes/hexo-theme-freemind.bithack/layout/_partial/head.ejs b/themes/hexo-theme-freemind.bithack/layout/_partial/head.ejs
new file mode 100644
index 0000000..9f0c977
--- /dev/null
+++ b/themes/hexo-theme-freemind.bithack/layout/_partial/head.ejs
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="pragma" content="no-cache">
+ <meta http-equiv="cache-control" content="no-cache">
+ <meta http-equiv="expires" content="0">
+ <%
+ 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 %>"><% } %>
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
+
+ <% if (page.title){ %><meta property="og:title" content="<%= page.title %>"/><% } %>
+ <meta property="og:site_name" content="<%= config.title %>"/>
+
+ <% if(page.cover) { %>
+ <meta property="og:image" content="<%= page.cover %>" />
+ <% } else { %>
+ <meta property="og:image" content="<%= config.cover %>"/>
+ <% } %>
+
+ <% if (theme.rss){ %>
+ <link rel="alternative" href="<%- config.root %><%- theme.rss %>" title="<%= config.title %>" type="application/atom+xml">
+ <% } %>
+ <% if (theme.favicon){ %>
+ <link href="<%- config.root %><%- theme.favicon %>" rel="icon">
+ <% } %>
+
+ <link rel="stylesheet" href="<%- config.root %>css/bootstrap.min.css" media="screen" type="text/css">
+ <link rel="stylesheet" href="<%- config.root %>css/font-awesome.css" media="screen" type="text/css">
+ <link rel="stylesheet" href="<%- config.root %>css/style.css" media="screen" type="text/css">
+ <link rel="stylesheet" href="<%- config.root %>css/responsive.css" media="screen" type="text/css">
+ <link rel="stylesheet" href="<%- config.root %>css/highlight.css" media="screen" type="text/css">
+ <link rel="stylesheet" href="<%- config.root %>css/google-fonts.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-2.0.3.min.js"></script>
+
+ <!-- analytics -->
+ <%- partial('post/analytics') %>
+
+</head>