initial
This commit is contained in:
51
themes/next/layout/_partials/head/external-fonts.swig
Normal file
51
themes/next/layout/_partials/head/external-fonts.swig
Normal file
@ -0,0 +1,51 @@
|
||||
{% if theme.font.enable %}
|
||||
|
||||
{% set font_config = theme.font %}
|
||||
{% set font_families = '' %}
|
||||
{% set font_styles = ':300,300italic,400,400italic,700,700italic' %}
|
||||
{% set font_found = false %}
|
||||
|
||||
{% if font_config.global.family and font_config.global.external %}
|
||||
{% set font_families += font_config.global.family + font_styles %}
|
||||
{% set font_found = true %}
|
||||
{% endif %}
|
||||
|
||||
{% if font_config.headings.family and font_config.headings.external %}
|
||||
{% if font_found %}
|
||||
{% set font_families += '|' %}
|
||||
{% endif %}
|
||||
|
||||
{% set font_families += font_config.headings.family + font_styles %}
|
||||
{% endif %}
|
||||
|
||||
{% if font_config.posts.family and font_config.posts.external %}
|
||||
{% if font_found %}
|
||||
{% set font_families += '|' %}
|
||||
{% endif %}
|
||||
|
||||
{% set font_families += font_config.posts.family + font_styles %}
|
||||
{% endif %}
|
||||
|
||||
{% if font_config.logo.family and font_config.logo.external %}
|
||||
{% if font_found %}
|
||||
{% set font_families += '|' %}
|
||||
{% endif %}
|
||||
|
||||
{% set font_families += font_config.logo.family + font_styles %}
|
||||
{% endif %}
|
||||
|
||||
{% if font_config.codes.family and font_config.codes.external %}
|
||||
{% if font_found %}
|
||||
{% set font_families += '|' %}
|
||||
{% endif %}
|
||||
|
||||
{% set font_families += font_config.codes.family + font_styles %}
|
||||
{% endif %}
|
||||
|
||||
{% if font_families !== '' %}
|
||||
{% set font_families += '&subset=latin,latin-ext' %}
|
||||
{% set font_host = font_config.host | default('//fonts.googleapis.com') %}
|
||||
<link rel="stylesheet" href="{{ font_host }}/css?family={{ font_families }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
28
themes/next/layout/_partials/head/head-unique.swig
Normal file
28
themes/next/layout/_partials/head/head-unique.swig
Normal file
@ -0,0 +1,28 @@
|
||||
{{
|
||||
open_graph({
|
||||
twitter_id: theme.twitter,
|
||||
google_plus: theme.google_plus,
|
||||
fb_admins: theme.fb_admins,
|
||||
fb_app_id: theme.fb_app_id
|
||||
})
|
||||
}}
|
||||
|
||||
{% if theme.rss === '' and config.feed and config.feed.path %}
|
||||
{% set theme.rss = config.feed.path %}
|
||||
{% endif %}
|
||||
{% if theme.rss %}
|
||||
<link rel="alternate" href="{{ url_for(theme.rss) }}" title="{{ title }}" type="application/atom+xml"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.canonical %}
|
||||
{% set without_index = url.replace('index.html', '') %}
|
||||
{% set without_html = without_index.replace('.html', '') %}
|
||||
<link rel="canonical" href="{{ without_html }}"/>
|
||||
{% endif %}
|
||||
|
||||
{# Exports some front-matter variables to Front-End #}
|
||||
<script id="page.configurations">
|
||||
CONFIG.page = {
|
||||
sidebar: {{ page.sidebar | json_encode }},
|
||||
};
|
||||
</script>
|
128
themes/next/layout/_partials/head/head.swig
Normal file
128
themes/next/layout/_partials/head/head.swig
Normal file
@ -0,0 +1,128 @@
|
||||
<meta charset="UTF-8"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2"/>
|
||||
<meta name="theme-color" content="{{ theme.android_chrome_color }}"/>
|
||||
|
||||
{% if theme.needmoreshare2.enable %}
|
||||
{% set needmoreshare2_css = url_for(theme.vendors._internal + '/needsharebutton/needsharebutton.css') %}
|
||||
{% if theme.vendors.needmoreshare2_css %}
|
||||
{% set needmoreshare2_css = theme.vendors.needmoreshare2_css %}
|
||||
{% endif %}
|
||||
<link rel="stylesheet" href="{{ needmoreshare2_css }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.pace %}
|
||||
{% set pace_css_uri = url_for(theme.vendors._internal + '/pace/'+ theme.pace_theme +'.min.css?v=1.0.2') %}
|
||||
{% set pace_js_uri = url_for(theme.vendors._internal + '/pace/pace.min.js?v=1.0.2') %}
|
||||
{% if theme.vendors.pace %}
|
||||
{% set pace_js_uri = theme.vendors.pace %}
|
||||
{% endif %}
|
||||
{% if theme.vendors.pace_css %}
|
||||
{% set pace_css_uri = theme.vendors.pace_css %}
|
||||
{% endif %}
|
||||
<script src="{{ pace_js_uri }}"></script>
|
||||
<link rel="stylesheet" href="{{ pace_css_uri }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.han %}
|
||||
{% set Han_uri = url_for(theme.vendors._internal + '/Han/dist/han.min.css?v=3.3') %}
|
||||
{% if theme.vendors.han %}
|
||||
{% set Han_uri = theme.vendors.han %}
|
||||
{% endif %}
|
||||
<link rel="stylesheet" href="{{ Han_uri }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.disable_baidu_transformation %}
|
||||
<meta http-equiv="Cache-Control" content="no-transform"/>
|
||||
<meta http-equiv="Cache-Control" content="no-siteapp"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.google_site_verification %}
|
||||
<meta name="google-site-verification" content="{{ theme.google_site_verification }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.bing_site_verification %}
|
||||
<meta name="msvalidate.01" content="{{ theme.bing_site_verification }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.yandex_site_verification %}
|
||||
<meta name="yandex-verification" content="{{ theme.yandex_site_verification }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.baidu_site_verification %}
|
||||
<meta name="baidu-site-verification" content="{{ theme.baidu_site_verification }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.fancybox %}
|
||||
{% set fancybox_css_uri = url_for(theme.vendors._internal + '/fancybox/source/jquery.fancybox.css') %}
|
||||
{% if theme.vendors.fancybox_css %}
|
||||
{% set fancybox_css_uri = theme.vendors.fancybox_css %}
|
||||
{% endif %}
|
||||
<link rel="stylesheet" href="{{ fancybox_css_uri }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% include "./external-fonts.swig" %}
|
||||
|
||||
{% set font_awesome_uri = url_for(theme.vendors._internal + '/font-awesome/css/font-awesome.min.css?v=4.6.2') %}
|
||||
{% if theme.vendors.fontawesome %}
|
||||
{% set font_awesome_uri = theme.vendors.fontawesome %}
|
||||
{% endif %}
|
||||
<link rel="stylesheet" href="{{ font_awesome_uri }}"/>
|
||||
|
||||
<link rel="stylesheet" href="{{ url_for(theme.css) }}/main.css?v={{ version }}"/>
|
||||
|
||||
{% if theme.favicon.apple_touch_icon %}
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for(theme.favicon.apple_touch_icon) }}?v={{ version }}">
|
||||
{% endif %}
|
||||
{% if theme.favicon.medium %}
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for(theme.favicon.medium) }}?v={{ version }}">
|
||||
{% endif %}
|
||||
{% if theme.favicon.small %}
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for(theme.favicon.small) }}?v={{ version }}">
|
||||
{% endif %}
|
||||
{% if theme.favicon.safari_pinned_tab %}
|
||||
<link rel="mask-icon" href="{{ url_for(theme.favicon.safari_pinned_tab) }}?v={{ version }}" color="{{ theme.android_chrome_color }}">
|
||||
{% endif %}
|
||||
{% if theme.favicon.android_manifest %}
|
||||
<link rel="manifest" href="{{ url_for(theme.favicon.android_manifest) }}">
|
||||
{% endif %}
|
||||
{% if theme.favicon.ms_browserconfig %}
|
||||
<meta name="msapplication-config" content="{{ url_for(theme.favicon.ms_browserconfig) }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if theme.facebook_sdk.enable and theme.facebook_sdk.webmaster %}
|
||||
<meta property="fb:admins" content="{{ theme.facebook_sdk.fb_admin }}"/>
|
||||
<meta property="fb:app_id" content="{{ theme.facebook_sdk.app_id }}"/>
|
||||
{% endif %}
|
||||
|
||||
{# Export some HEXO Configurations to Front-End #}
|
||||
<script id="hexo.configurations">
|
||||
var NexT = window.NexT || {};
|
||||
var CONFIG = {
|
||||
root: '{{ theme.root }}',
|
||||
scheme: '{{ theme.scheme }}',
|
||||
version: '{{ version }}',
|
||||
sidebar: {{ theme.sidebar | json_encode }},
|
||||
back2top: {{ theme.back2top.enable }},
|
||||
back2top_sidebar: {{ theme.back2top.sidebar }},
|
||||
fancybox: {{ theme.fancybox }},
|
||||
fastclick: {{ theme.fastclick }},
|
||||
lazyload: {{ theme.lazyload }},
|
||||
tabs: {{ theme.tabs.enable }},
|
||||
motion: {{ theme.motion | json_encode }},
|
||||
algolia: {
|
||||
applicationID: '{{ theme.algolia.applicationID }}',
|
||||
apiKey: '{{ theme.algolia.apiKey }}',
|
||||
indexName: '{{ theme.algolia.indexName }}',
|
||||
hits: {{ theme.algolia_search.hits | json_encode }},
|
||||
labels: {{ theme.algolia_search.labels | json_encode }}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
{% if theme.custom_file_path.head %}
|
||||
{% set custom_head = '../../../../../' + theme.custom_file_path.head %}
|
||||
{% else %}
|
||||
{% set custom_head = '../../_custom/head.swig' %}
|
||||
{% endif %}
|
||||
{% include custom_head %}
|
Reference in New Issue
Block a user