1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- baseURL = "https://unbl.ink/"
- title = "UNBLINK"
- enableRobotsTXT = true
- enableEmoji = true
- theme = "paper"
- # Highlight options. See https://gohugo.io/content-management/syntax-highlighting/
- PygmentsCodeFences = true # Enable syntax highlighting with GitHub flavoured code fences
- PygmentsUseClasses = true # Use CSS classes to format highlighted code
- PygmentsCodefencesGuessSyntax = true
- PygmentsOptions = "linenos=table"
- # language support # en / zh-cn / other... translations present in i18n/
- defaultContentLanguage = "en" # Default language to use
- [languages.en]
- languageCode = "en"
- [author] # essential
- name = "CP"
- [sitemap] # essential
- changefreq = "weekly"
- priority = 0.5
- filename = "sitemap.xml"
- [[menu.main]] # config your menu
- name = "Home"
- weight = 10
- identifier = "home"
- url = "/"
- [[menu.main]]
- name = "Archives"
- weight = 20
- identifier = "archives"
- url = "/post/"
- [[menu.main]]
- name = "Categories"
- weight = 40
- identifier = "categories"
- url = "/categories/"
- [params]
- debug = false # If true, load `eruda.min.js`. See https://github.com/liriliri/eruda
- since = "2015" # Site creation time
- homeFullContent = true # if false, show post summaries on home page. Othewise show full content.
- rssFullContent = true # if false, Rss feed instead of the summary
- # site info (optional)
- logoTitle = "UNBLINK" # default: the title value
- description = "UNBLINK"
- # paginate of archives, tags and categories
- archive-paginate = 100
- # paginate style, default use numbered pagination links
- # if true, use original "Previous" and "Next" links.
- # paginateOriginalStyle = true
- # The date format to use; for a list of valid formats, see https://gohugo.io/functions/format/
- dateFormatToUse = "2006-01-02"
- # show word count and read time ?
- moreMeta = true
- # show language chooser in menu
- showMenuLanguageChooser = true
- # Some global options, you can also close or open something in front matter for a single post, see more information from `archetypes/default.md`.
- toc = true
- photoswipe = true # see https://github.com/dimsemenov/PhotoSwipe
- bootcdn = false # In china. @Deprecated: use [params.publicCDN]
- mathjax = false # see https://www.mathjax.org/
- contentCopyright = '<a rel="license noopener" href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank">CC BY-NC-ND 4.0</a>'
- # Link custom CSS and JS assets
- # (relative to /static/css and /static/js respectively)
- customCSS = [] # if ['custom.css'], load '/static/css/custom.css' file
- customJS = [] # if ['custom.js'], load '/static/js/custom.js' file
- [params.publicCDN] # load these files from public cdn
- enable = false
- jquery = '<script src="https://cdn.jsdelivr.net/npm/jquery@3.2.1/dist/jquery.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>'
- slideout = '<script src="https://cdn.jsdelivr.net/npm/slideout@1.0.1/dist/slideout.min.js" integrity="sha256-t+zJ/g8/KXIJMjSVQdnibt4dlaDxc9zXr/9oNPeWqdg=" crossorigin="anonymous"></script>'
- gitmentJS = '<script src="https://cdn.jsdelivr.net/npm/gitment@0.0.3/dist/gitment.browser.min.js" crossorigin="anonymous"></script>'
- gitmentCSS = '<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitment@0.0.3/style/default.min.css" crossorigin="anonymous">'
|