diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-24 03:20:47 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-24 03:20:47 +0000 |
commit | f24f2d15275961f1c0144e68fde75a60aeaaa165 (patch) | |
tree | 38be1626f3ade436fbd17eadb2753fa2f0effb37 /config.toml | |
parent | bf04383b34c4a4fdfe239de2805a30a051921002 (diff) | |
download | capotej.com-f24f2d15275961f1c0144e68fde75a60aeaaa165.tar.gz |
move to bear theme
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 186 |
1 files changed, 47 insertions, 139 deletions
diff --git a/config.toml b/config.toml index 8c0b813..bfc08c0 100644 --- a/config.toml +++ b/config.toml @@ -1,18 +1,25 @@ +# Base URL used when generating links to your pages +# Set to the URL for your site baseURL = "https://capotej.com/" -languageCode = "en" -defaultContentLanguage = "en" # en / zh-cn / ... (This field determines which i18n file to use) -title = "capotej.com" -enableRobotsTXT = true -enableEmoji = true -theme = "even" -preserveTaxonomyNames = true -hasCJKLanguage = false # has chinese/japanese/korean ? # 自动检测是否包含 中文\日文\韩文 -paginate = 9 # 首页每页显示的文章数 -disqusShortname = "" # disqus_shortname -googleAnalytics = "" # UA-XXXXXXXX-X -copyright = "" # default: author.name ↓ # 默认为下面配置的author.name ↓ +# The name of this wonderful theme ;-). +theme = 'hugo-bearblog' + +# Basic metadata configuration for your blog. +title = "@capotej" +author = "Julio Capote" +copyright = "Copyright © 2023, Julio Capote." +languageCode = "en-US" +# Generate a nice robots.txt for SEO +enableRobotsTXT = true + +# Generate "Bearblog"-like URLs !only!, see https://bearblog.dev/. +disableKinds = ["taxonomy"] +ignoreErrors = ["error-disable-taxonomy"] +[permalinks] + posts = "/blog/:year/:month/:day/:title/" + tags = "/blog/:slug" [mediaTypes] [mediaTypes."application/atom"] @@ -23,131 +30,32 @@ copyright = "" # default: author.name ↓ # 默认为下面配 baseName = "atom" isPlainText = false -[author] # essential # 必需 - name = "Julio Capote" - -[permalinks] - post = "/blog/:year/:month/:day/:title/" - -[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 = "About" - weight = 20 - identifier = "about" - url = "/about/" -[[menu.main]] - name = "Projects" - weight = 30 - identifier = "projects" - url = "/projects/" -[[menu.main]] - name = "Archives" - weight = 40 - identifier = "archives" - url = "/post/" - [params] - version = "3.x" # Used to give a friendly message when you have an incompatible update - debug = false # If true, load `eruda.min.js`. See https://github.com/liriliri/eruda - - since = "2008" # Site creation time # 站点建立时间 - - # site info (optional) # 站点信息(可选,不需要的可以直接注释掉) - logoTitle = "@capotej" # default: the title value # 默认值: 上面设置的title值 - keywords = ["capotej"] - description = "Personal Blog of Julio Capote" - - # paginate of archives, tags and categories # 归档、标签、分类每页显示的文章数目,建议修改为一个较大的值 - archivePaginate = 25 - - # show 'xx Posts In Total' in archive page ? # 是否在归档页显示文章的总数 - showArchiveCount = false - - # The date format to use; for a list of valid formats, see https://gohugo.io/functions/format/ - dateFormatToUse = "01-02-2006" - - # show word count and read time ? # 是否显示字数统计与阅读时间 - moreMeta = false - - # 一些全局开关,你也可以在每一篇内容的 front matter 中针对单篇内容关闭或开启某些功能,在 archetypes/default.md 查看更多信息。 - # 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 # 是否开启目录 - autoCollapseToc = false # Auto expand and collapse toc # 目录自动展开/折叠 - fancybox = false # see https://github.com/fancyapps/fancybox # 是否启用fancybox(图片可点击) - mathjax = false # see https://www.mathjax.org/ # 是否使用mathjax(数学公式) - mathjaxEnableSingleDollar = false # 是否使用 $...$ 即可進行inline latex渲染 - mathjaxEnableAutoNumber = false # 是否使用公式自动编号 - - postMetaInFooter = false # contain author, lastMod, markdown link, license # 包含作者,上次修改时间,markdown链接,许可信息 - linkToMarkDown = false # Only effective when hugo will output .md files. # 链接到markdown原始文件(仅当允许hugo生成markdown文件时有效) - contentCopyright = '' # e.g. '<a rel="license noopener" href="https://creativecommons.org/licenses/by-nc-nd/4.0/" target="_blank">CC BY-NC-ND 4.0</a>' - - changyanAppid = "" # Changyan app id # 畅言 - changyanAppkey = "" # Changyan app key - livereUID = "" # LiveRe UID # 来必力 - baidu_push = false # baidu push # 百度 - baidu_analytics = "" # Baidu Analytics - baidu_verification = "" # Baidu Verification - google_verification = "" # Google_Verification # 谷歌 - - # Link custom CSS and JS assets - # (relative to /static/css and /static/js respectively) - customCSS = ["logo.css"] - customJS = [] - - [params.publicCDN] # load these files from public cdn # 启用公共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>' - fancyboxJs = '<script src="https://cdn.jsdelivr.net/npm/@fancyapps/fancybox@3.1.20/dist/jquery.fancybox.min.js" integrity="sha256-XVLffZaxoWfGUEbdzuLi7pwaUJv1cecsQJQqGLe7axY=" crossorigin="anonymous"></script>' - fancyboxCss = '<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/fancybox@3.1.20/dist/jquery.fancybox.min.css" integrity="sha256-7TyXnr2YU040zfSP+rEcz29ggW4j56/ujTPwjMzyqFY=" crossorigin="anonymous">' - 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">' - gitalkJS = '<script src="https://cdn.jsdelivr.net/npm/gitalk@1.2.2/dist/gitalk.min.js" integrity="sha256-DcjhdbufsHMHflFjZtKNFnPKOAL2ybOxGcPOR4MtnJg=" crossorigin="anonymous"></script>' - gitalkCSS = '<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/gitalk@1.2.2/dist/gitalk.css" integrity="sha256-rJVe5uyYRXdLM+Kkoj7JtN+9qI0bZTxkYTaNWODpg7U=" crossorigin="anonymous">' - timeagoJS = '<script src="https://cdn.jsdelivr.net/npm/timeago.js@3.0.2/dist/timeago.min.js" integrity="sha256-jwCP0NAdCBloaIWTWHmW4i3snUNMHUNO+jr9rYd2iOI=" crossorigin="anonymous"></script>' - timeagoLocalesJS = '<script src="https://cdn.jsdelivr.net/npm/timeago.js@3.0.2/dist/timeago.locales.min.js" integrity="sha256-ZwofwC1Lf/faQCzN7nZtfijVV6hSwxjQMwXL4gn9qU8=" crossorigin="anonymous"></script>' - - # Display a message at the beginning of an article to warn the readers that it's content may be outdated. - # 在文章开头显示提示信息,提醒读者文章内容可能过时。 - [params.outdatedInfoWarning] - enable = false - hint = 30 # Display hint if the last modified time is more than these days ago. # 如果文章最后更新于这天数之前,显示提醒 - warn = 180 # Display warning if the last modified time is more than these days ago. # 如果文章最后更新于这天数之前,显示警告 - - [params.gitment] # Gitment is a comment system based on GitHub issues. see https://github.com/imsun/gitment - owner = "" # Your GitHub ID - repo = "" # The repo to store comments - clientId = "" # Your client ID - clientSecret = "" # Your client secret - - [params.gitalk] # Gitalk is a comment system based on GitHub issues. see https://github.com/gitalk/gitalk - owner = "" # Your GitHub ID - repo = "" # The repo to store comments - clientId = "" # Your client ID - clientSecret = "" # Your client secret - - [params.flowchartDiagrams]# see https://blog.olowolo.com/example-site/post/js-flowchart-diagrams/ - enable = false - options = "" - - [params.sequenceDiagrams] # see https://blog.olowolo.com/example-site/post/js-sequence-diagrams/ - enable = false - options = "" # default: "{theme: 'simple'}" - - [params.reward] # 文章打赏 - enable = false - wechat = "/path/to/your/wechat-qr-code.png" # 微信二维码 - alipay = "/path/to/your/alipay-qr-code.png" # 支付宝二维码 - -[outputs] - home = [ "HTML", "Atom" ] + # The "description" of your website. This is used in the meta data of your generated html. + description = "Personal Web Site of Julio Capote" + + # The path to your "favicon". This should be a square (at least 32px x 32px) png-file. + # Hint: It's good practise to also put a "favicon.ico"-file into your "static"-folder. + favicon = "images/favicon.png" + + # These "images" are used for the structured data templates. This will show up, when + # services like Twitter or Slack want to generate a preview of a link to your site. + # See https://gohugo.io/templates/internal#twitter-cards and + # https://gohugo.io/templates/internal#open-graph. + images = ["images/share.png"] + + # Another "title" :-). This one is used as the site_name on the Hugo's internal + # opengraph structured data template. + # See https://ogp.me/ and https://gohugo.io/templates/internal#open-graph. + title = "capotej.com" + + # This theme will, by default, inject a made-with-line at the bottom of the page. + # You can turn it off, but we would really appreciate if you don’t :-). + hideMadeWithLine = true + + # By default, this theme displays dates with a format like "02 Jan, 2006", but + # you can customize it by setting the `dateFormat` param in your site's config + # file. See [Hugo's Format function docs](https://gohugo.io/functions/format/) + # for details. An example TOML config that uses [ISO + # 8601](https://en.wikipedia.org/wiki/ISO_8601) format: + # dateFormat = "2006-01-02" |