hexo-theme-stellar/layout/_partial/head.ejs

115 lines
3.4 KiB
Plaintext
Raw Normal View History

2021-02-19 23:33:19 +08:00
<%
2021-02-21 04:01:17 +08:00
function generate_title() {
2022-11-06 19:46:47 +08:00
if (page.seo_title) {
return page.seo_title;
}
if (page.wiki) {
let proj = theme.wiki.projects[page.wiki];
let wiki = (proj && proj.name) || page.wiki;
if (page.title) {
return wiki + __('symbol.colon') + page.title + ' - ' + config.title;
} else {
return wiki + ' - ' + config.title;
}
2021-02-19 23:33:19 +08:00
} else {
2022-11-06 19:46:47 +08:00
if (page.category) {
return __('btn.category') + __('symbol.colon') + page.category + ' - ' + config.title;
} else if (page.tag) {
return __('btn.tag') + __('symbol.colon') + page.tag + ' - ' + config.title;
} else {
return config.title;
}
2021-02-19 23:33:19 +08:00
}
return '';
}
2021-02-26 20:02:32 +08:00
function generate_description() {
2022-11-06 19:46:47 +08:00
if (page.layout == 'wiki' && page.wiki) {
let proj = theme.wiki.projects[page.wiki];
if (proj && proj.description) {
return '<meta name="description" content="' + proj.description + '">';
}
2021-02-26 20:02:32 +08:00
}
if (page.description || page.excerpt || page.content) {
return '<meta name="description" content="' + truncate(strip_html(page.description || page.excerpt || page.content), {length: 150}) + '">';
}
return '<meta name="description" content="' + config.description + '">';
}
2021-02-21 04:01:17 +08:00
function generate_robots() {
if (is_home() == true) {
return '';
}
if (page.robots) {
return '<meta name="robots" content="' + page.robots + '">';
}
2021-02-19 23:33:19 +08:00
}
2021-02-21 03:13:21 +08:00
function og_args() {
var args = {};
if (theme.open_graph.twitter_id) {
args.twitter_id = theme.open_graph.twitter_id;
2021-02-19 23:33:19 +08:00
}
2021-02-21 03:13:21 +08:00
if (page.layout == 'post' && page.cover) {
args.twitter_card = 'summary_large_image';
2021-02-19 23:33:19 +08:00
}
2021-02-21 03:13:21 +08:00
return args;
2021-02-19 23:33:19 +08:00
}
%>
2021-03-06 00:01:41 +08:00
<head>
2021-02-21 03:13:21 +08:00
<%- meta_generator() %>
2022-10-29 17:23:32 +08:00
<meta name="hexo-theme" content="<%- stellar_info('tree') %>">
2021-02-19 23:33:19 +08:00
<meta charset="utf-8">
2021-02-21 04:01:17 +08:00
<%- generate_robots() %>
2021-02-21 03:13:21 +08:00
2021-02-19 23:33:19 +08:00
<meta http-equiv='x-dns-prefetch-control' content='on' />
<link rel='dns-prefetch' href='https://fastly.jsdelivr.net'>
<link rel="preconnect" href="https://fastly.jsdelivr.net" crossorigin>
<link rel='dns-prefetch' href='//unpkg.com'>
2021-02-19 23:33:19 +08:00
<meta name="renderer" content="webkit">
<meta name="force-rendering" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="HandheldFriendly" content="True" >
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
2021-06-23 13:41:05 +08:00
<meta name="theme-color" content="#f8f8f8">
2022-10-29 17:23:32 +08:00
2021-02-21 04:01:17 +08:00
<title><%- generate_title() %></title>
2021-02-19 23:33:19 +08:00
2021-02-21 03:13:21 +08:00
<% if (theme.open_graph && theme.open_graph.enable) { %>
<%- open_graph(og_args()) %>
<% } %>
2021-02-26 20:02:32 +08:00
<%- generate_description() %>
2021-02-19 23:33:19 +08:00
<!-- feed -->
<% if (config.feed && config.feed.path) { %>
<%- feed_tag(config.feed.path, {title: config.title}) %>
<% } %>
<% if (theme.stellar.cdn_css) { %>
<%- css(theme.stellar.cdn_css) %>
<% } else { %>
<%- css('/css/main.css') %>
<% } %>
2021-06-23 16:39:27 +08:00
<% if (config.favicon) { %>
<%- favicon_tag(config.favicon) %>
<% } %>
2021-07-26 22:26:46 +08:00
2022-06-07 13:19:56 +08:00
<% if (config.highlight && config.highlight.enable == true && config.highlight.hljs == true) { %>
<%- css(theme.style.codeblock.highlightjs_theme) %>
<% } %>
<% if (theme.plugins.katex && theme.plugins.katex.enable) { %>
<%- theme.plugins.katex.min_css %>
<%- theme.plugins.katex.min_js %>
<%- theme.plugins.katex.auto_render_min_js %>
<% } %>
2022-06-07 13:19:56 +08:00
2021-02-19 23:33:19 +08:00
<% if (config.inject && config.inject.head){ %>
<% (config.inject.head||[]).forEach(function(item){ %>
<%- item %>
<% }) %>
<% } %>
</head>