hexo-theme-icarus/_config.icarus.yml

370 lines
13 KiB
YAML
Raw Normal View History

2020-03-12 16:13:52 +00:00
# Version of the configuration file
version: 4.0.0
2020-03-12 16:13:52 +00:00
# Icarus theme variant, can be "default" or "cyberpunk"
variant: default
# Path or URL to the website's logo
logo: /img/logo.svg
# Page metadata configurations
head:
# URL or path to the website's icon
favicon: /img/favicon.svg
2020-10-04 06:36:17 +00:00
# Web application manifests configuration
# https://developer.mozilla.org/en-US/docs/Web/Manifest
manifest:
# Name of the web application (default to the site title)
name: Icaurs - Hexo Theme
# The displayed name of the web application
# when there is not enough space to display full name
short_name: Icarus
# The start URL of the web application
start_url:
# The default theme color for the application
theme_color: "#f7f7f7"
# A placeholder background color for the application page to display
# before its stylesheet is loaded
background_color: "#f7f7f7"
# The preferred display mode for the website
display: standalone
# Image files that can serve as application icons for different contexts
icons:
2020-03-12 16:13:52 +00:00
# Open Graph metadata
# https://hexo.io/docs/helpers.html#open-graph
open_graph:
# Page title (og:title) (optional)
# You should leave this blank for most of the time
title:
# Page type (og:type) (optional)
# You should leave this blank for most of the time
type: blog
# Page URL (og:url) (optional)
# You should leave this blank for most of the time
url:
2020-10-04 06:36:17 +00:00
# Page cover (og:image) (optional)
2020-03-12 16:13:52 +00:00
# You should leave this blank for most of the time
image:
# Site name (og:site_name) (optional)
# You should leave this blank for most of the time
site_name:
# Page author (article:author) (optional)
# You should leave this blank for most of the time
author:
# Page description (og:description) (optional)
# You should leave this blank for most of the time
description:
# Twitter card type (twitter:card)
twitter_card:
# Twitter ID (twitter:creator)
twitter_id:
2020-10-04 06:36:17 +00:00
# Twitter Site (twitter:site)
2020-03-12 16:13:52 +00:00
twitter_site:
# Google+ profile link (deprecated)
google_plus:
# Facebook admin ID
fb_admins:
# Facebook App ID
fb_app_id:
# Structured data of the page
# https://developers.google.com/search/docs/guides/intro-structured-data
structured_data:
# Page title (optional)
# You should leave this blank for most of the time
title:
# Page description (optional)
# You should leave this blank for most of the time
description:
# Page URL (optional)
# You should leave this blank for most of the time
url:
# Page author (article:author) (optional)
# You should leave this blank for most of the time
author:
2020-10-04 06:36:17 +00:00
# Page images (optional)
2020-03-12 16:13:52 +00:00
# You should leave this blank for most of the time
image:
# Additional HTML meta tags in an array
meta:
# Meta tag specified in <attribute>=<value> style
# E.g., name=theme-color;content=#123456 => <meta name="theme-color" content="#123456">
# URL or path to the website's RSS atom.xml
rss:
# Page top navigation bar configurations
2018-10-26 04:43:25 +00:00
navbar:
2020-03-12 16:13:52 +00:00
# Naviagtion menu items
2018-10-26 04:43:25 +00:00
menu:
Home: /
Archives: /archives
Categories: /categories
Tags: /tags
About: /about
2020-03-12 16:13:52 +00:00
# Links to be shown on the right of the navigation bar
2018-10-26 04:43:25 +00:00
links:
2020-08-30 02:01:33 +00:00
Join Gitter:
icon: fab fa-gitter
url: 'https://gitter.im/hexo-theme-icarus/community'
2018-10-26 04:43:25 +00:00
Download on GitHub:
icon: fab fa-github
2020-03-12 16:13:52 +00:00
url: 'https://github.com/ppoffice/hexo-theme-icarus'
# Page footer configurations
2018-10-26 04:43:25 +00:00
footer:
# Links to be shown on the right of the footer section
links:
Creative Commons:
icon: fab fa-creative-commons
url: 'https://creativecommons.org/'
2020-08-30 02:01:33 +00:00
Join Gitter:
icon: fab fa-gitter
url: 'https://gitter.im/hexo-theme-icarus/community'
2018-10-26 04:43:25 +00:00
Download on GitHub:
icon: fab fa-github
2020-03-12 16:13:52 +00:00
url: 'https://github.com/ppoffice/hexo-theme-icarus'
# Article related configurations
2018-10-26 04:43:25 +00:00
article:
2019-08-13 03:43:30 +00:00
# Code highlight settings
highlight:
# Code highlight themes
# https://github.com/highlightjs/highlight.js/tree/master/src/styles
theme: atom-one-light
2020-03-12 16:13:52 +00:00
# Show copy code button
2019-08-13 03:43:30 +00:00
clipboard: true
# Default folding status of the code blocks. Can be "", "folded", "unfolded"
fold: unfolded
2020-03-12 16:13:52 +00:00
# Whether to show estimated article reading time
2018-10-26 04:43:25 +00:00
readtime: true
2020-08-29 04:45:14 +00:00
# Article licensing block
licenses:
Creative Commons:
icon: fab fa-creative-commons
url: 'https://creativecommons.org/'
2020-08-29 20:28:52 +00:00
'CC BY-NC-SA 4.0': 'https://creativecommons.org/licenses/by-nc-sa/4.0/'
2020-03-12 16:13:52 +00:00
# Search plugin configurations
# https://ppoffice.github.io/hexo-theme-icarus/categories/Plugins/Search/
2018-10-26 04:43:25 +00:00
search:
type: insight
2020-03-12 16:13:52 +00:00
# Comment plugin configurations
# https://ppoffice.github.io/hexo-theme-icarus/categories/Plugins/Comment/
# comment:
2020-03-12 16:13:52 +00:00
# Donate plugin configurations
# https://ppoffice.github.io/hexo-theme-icarus/categories/Plugins/Donation/
# donates:
# # Alipay donate button configurations
2019-02-02 17:22:35 +00:00
# -
# type: alipay
2020-03-12 16:13:52 +00:00
# # Alipay qrcode image URL
# qrcode: ''
# # "Buy me a coffee" donate button configurations
2019-02-02 17:22:35 +00:00
# -
2020-03-12 16:13:52 +00:00
# type: buymeacoffee
# # URL to the "Buy me a coffee" page
# url: ''
# # Patreon donate button configurations
# -
# type: patreon
# # URL to the Patreon page
# url: ''
# # Paypal donate button configurations
2019-02-02 17:22:35 +00:00
# -
# type: paypal
# # Paypal business ID or email address
2020-03-12 16:13:52 +00:00
# business: ''
2019-02-02 17:22:35 +00:00
# # Currency code
# currency_code: USD
2020-03-12 16:13:52 +00:00
# # Wechat donate button configurations
2019-02-02 17:22:35 +00:00
# -
2020-03-12 16:13:52 +00:00
# type: wechat
# # Wechat qrcode image URL
# qrcode: ''
# Share plugin configurations
# https://ppoffice.github.io/hexo-theme-icarus/categories/Plugins/Share/
2018-10-26 04:43:25 +00:00
share:
type: sharethis
2020-03-12 16:13:52 +00:00
# URL to the ShareThis share plugin script
2018-10-26 04:43:25 +00:00
install_url: //platform-api.sharethis.com/js/sharethis.js#property=5ab6f60ace89f00013641890&product=inline-share-buttons
2020-03-12 16:13:52 +00:00
# Sidebar configurations.
# Please be noted that a sidebar is only visible when it has at least one widget
sidebar:
2020-03-12 16:13:52 +00:00
# Left sidebar configurations
left:
2020-03-12 16:13:52 +00:00
# Whether the sidebar sticks to the top when page scrolls
sticky: false
2020-03-12 16:13:52 +00:00
# Right sidebar configurations
right:
2020-03-12 16:13:52 +00:00
# Whether the sidebar sticks to the top when page scrolls
sticky: false
2020-03-12 16:13:52 +00:00
# Sidebar widget configurations
# http://ppoffice.github.io/hexo-theme-icarus/categories/Widgets/
2018-10-26 04:43:25 +00:00
widgets:
2020-03-12 16:13:52 +00:00
# Profile widget configurations
2018-10-26 04:43:25 +00:00
-
2020-03-12 16:13:52 +00:00
# Where should the widget be placed, left sidebar or right sidebar
2018-10-26 04:43:25 +00:00
position: left
2020-03-12 16:13:52 +00:00
type: profile
# Author name
2018-10-26 04:43:25 +00:00
author: PPOffice
2020-03-12 16:13:52 +00:00
# Author title
2018-10-26 04:43:25 +00:00
author_title: Web Developer
2020-03-12 16:13:52 +00:00
# Author's current location
2018-10-26 04:43:25 +00:00
location: Earth, Solar System
2020-03-12 16:13:52 +00:00
# URL or path to the avatar image
avatar:
# Whether show the rounded avatar image
2019-08-06 03:27:11 +00:00
avatar_rounded: false
2020-03-12 16:13:52 +00:00
# Email address for the Gravatar
gravatar:
# URL or path for the follow button
follow_link: 'https://github.com/ppoffice'
2018-12-23 20:13:01 +00:00
# Links to be shown on the bottom of the profile widget
2018-10-26 04:43:25 +00:00
social_links:
Github:
icon: fab fa-github
2020-03-12 16:13:52 +00:00
url: 'https://github.com/ppoffice'
2018-10-26 04:43:25 +00:00
Facebook:
icon: fab fa-facebook
2020-03-12 16:13:52 +00:00
url: 'https://facebook.com'
2018-10-26 04:43:25 +00:00
Twitter:
icon: fab fa-twitter
2020-03-12 16:13:52 +00:00
url: 'https://twitter.com'
2018-10-26 04:43:25 +00:00
Dribbble:
icon: fab fa-dribbble
2020-03-12 16:13:52 +00:00
url: 'https://dribbble.com'
2018-10-26 04:43:25 +00:00
RSS:
icon: fas fa-rss
url: /
2020-03-12 16:13:52 +00:00
# Table of contents widget configurations
2018-10-26 04:43:25 +00:00
-
2020-03-12 16:13:52 +00:00
# Where should the widget be placed, left sidebar or right sidebar
2018-10-26 04:43:25 +00:00
position: left
2020-03-12 16:13:52 +00:00
type: toc
2020-10-04 06:36:17 +00:00
# Whether to show the index of each heading
index: true
2020-03-12 16:13:52 +00:00
# Recommendation links widget configurations
2018-10-26 04:43:25 +00:00
-
2020-03-12 16:13:52 +00:00
# Where should the widget be placed, left sidebar or right sidebar
2018-10-26 04:43:25 +00:00
position: left
2020-03-12 16:13:52 +00:00
type: links
# Names and URLs of the sites
2018-10-26 04:43:25 +00:00
links:
Hexo: 'https://hexo.io'
Bulma: 'https://bulma.io'
2020-03-12 16:13:52 +00:00
# Categories widget configurations
2018-10-26 04:43:25 +00:00
-
2020-03-12 16:13:52 +00:00
# Where should the widget be placed, left sidebar or right sidebar
2018-10-26 04:43:25 +00:00
position: left
2020-03-12 16:13:52 +00:00
type: categories
# Recent posts widget configurations
2018-10-26 04:43:25 +00:00
-
2020-03-12 16:13:52 +00:00
# Where should the widget be placed, left sidebar or right sidebar
2018-10-26 04:43:25 +00:00
position: right
2020-03-12 16:13:52 +00:00
type: recent_posts
# Archives widget configurations
2018-10-26 04:43:25 +00:00
-
2020-03-12 16:13:52 +00:00
# Where should the widget be placed, left sidebar or right sidebar
2018-10-26 04:43:25 +00:00
position: right
2020-03-12 16:13:52 +00:00
type: archives
# Tags widget configurations
2018-10-26 04:43:25 +00:00
-
2020-03-12 16:13:52 +00:00
# Where should the widget be placed, left sidebar or right sidebar
2018-10-26 04:43:25 +00:00
position: right
2020-03-12 16:13:52 +00:00
type: tags
# Google FeedBurner email subscription widget configurations
# -
# # Where should the widget be placed, left sidebar or right sidebar
# position: left
# type: subscribe_email
# # Hint text under the email input
# description:
# # Feedburner ID
# feedburner_id: ''
# Google AdSense unit configurations
# -
# # Where should the widget be placed, left sidebar or right sidebar
# position: left
# type: adsense
# # AdSense client ID
# client_id: ''
# # AdSense AD unit ID
# slot_id: ''
# Plugin configurations
# https://ppoffice.github.io/hexo-theme-icarus/categories/Plugins/
2018-10-26 04:43:25 +00:00
plugins:
2020-03-12 16:13:52 +00:00
# Enable page startup animations
2018-11-14 03:51:17 +00:00
animejs: true
2020-03-12 16:13:52 +00:00
# Show the "back to top" button
back_to_top: true
# Baidu Analytics plugin settings
# https://tongji.baidu.com
baidu_analytics:
# Baidu Analytics tracking ID
tracking_id:
2020-10-04 06:36:17 +00:00
# Bing Webmaster Tools plugin settings
# https://www.bing.com/toolbox/webmaster/
bing_webmaster:
# Bing Webmaster Tools tracking ID in the <meta> tag
tracking_id:
2020-03-12 16:13:52 +00:00
# BuSuanZi site/page view counter
# https://busuanzi.ibruce.info
busuanzi: false
# CNZZ statistics
# https://www.umeng.com/web
cnzz:
# CNZZ tracker id
id:
# CNZZ website id
web_id:
2020-10-04 06:36:17 +00:00
# Alerting users about the use of cookies
# https://www.osano.com/cookieconsent/
cookie_consent:
# The compliance type. Can be "info", "opt-in", or "opt-out"
type: info
# Theme of the popup. Can be "block", "edgeless", or "classic"
theme: edgeless
# Whether the popup should stay static regardless of the page scrolls
static: false
# Where on the screen the consent popup should display
position: bottom-left
# URL to your site's cookie policy
policyLink: 'https://www.cookiesandyou.com/'
2018-10-26 04:43:25 +00:00
# Enable the lightGallery and Justified Gallery plugins
gallery: true
# Google Analytics plugin settings
2020-03-12 16:13:52 +00:00
# https://analytics.google.com
google_analytics:
# Google Analytics tracking ID
2018-10-26 04:43:25 +00:00
tracking_id: UA-72437521-5
# Hotjar user feedback plugin
2020-03-12 16:13:52 +00:00
# https://www.hotjar.com/
2018-10-28 05:30:33 +00:00
hotjar:
# Hotjar site id
2020-03-12 16:13:52 +00:00
site_id:
# Enable the KaTeX math typesetting supprot
# https://katex.org/
katex: false
# Enable the MathJax math typesetting support
# https://www.mathjax.org/
mathjax: false
2020-03-12 16:13:52 +00:00
# Enable the Outdated Browser plugin
# http://outdatedbrowser.com/
outdated_browser: true
# Show a progress bar at top of the page on page loading
2018-11-02 04:09:50 +00:00
progressbar: true
2020-10-04 06:36:17 +00:00
# Statcounter statistics
# https://statcounter.com/
statcounter:
# Statcounter project id
project:
# Statcounter project security code
security:
# Twitter conversion tracking plugin settings
# https://business.twitter.com/en/help/campaign-measurement-and-analytics/conversion-tracking-for-websites.html
twitter_conversion_tracking:
# Twitter Pixel ID
pixel_id:
2018-10-26 04:43:25 +00:00
# CDN provider settings
2020-03-12 16:13:52 +00:00
# https://ppoffice.github.io/hexo-theme-icarus/Configuration/Theme/speed-up-your-site-with-custom-cdn/
2018-10-26 04:43:25 +00:00
providers:
2020-03-12 16:13:52 +00:00
# Name or URL template of the JavaScript and/or stylesheet CDN provider
cdn: jsdelivr
2020-03-12 16:13:52 +00:00
# Name or URL template of the webfont CDN provider
2018-10-26 04:43:25 +00:00
fontcdn: google
2020-03-12 16:13:52 +00:00
# Name or URL of the fontawesome icon font CDN provider
2018-10-26 04:43:25 +00:00
iconcdn: fontawesome