Since some features of this theme need to processes SCSS to CSS, it is recommended to use Hugo extended version for better experience.
2 Installation
The following steps are here to help you initialize your new website. If you don’t know Hugo at all, we strongly suggest you learn more about it by following this great documentation for beginners.
2.1 Create Your Project
Hugo provides a new command to create a new website:
title="My New Hugo FixIt Site"baseURL="http://example.org/"# determines default content language ["en", "zh-cn", "fr", "pl", ...]defaultContentLanguage="en"# language code ["en", "zh-CN", "fr", "pl", ...]languageCode="en"# Change the default theme to be use when building the site with Hugotheme="FixIt"[params]# FixIt theme versionversion="0.2.X"[menu][[menu.main]]identifier="posts"# you can add extra information before the name (HTML format is supported), such as iconspre=""# you can add extra information after the name (HTML format is supported), such as iconspost=""name="Posts"url="/posts/"# title will be shown when you hover on this menu linktitle=""weight=1# add user-defined content to menu items[menu.main.params]# add css class to a specific menu itemclass=""# whether set as a draft menu item whose function is similar to a draft post/pagedraft=false# add fontawesome icon to a specific menu itemicon="fa-solid fa-archive"# set menu item type, optional value: ["mobile", "desktop"]type=""[[menu.main]]identifier="categories"pre=""post=""name="Categories"url="/categories/"title=""weight=2[menu.main.params]icon="fa-solid fa-th"[[menu.main]]identifier="tags"pre=""post=""name="Tags"url="/tags/"title=""weight=3[menu.main.params]icon="fa-solid fa-tags"# Markup related configuration in Hugo[markup]# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)[markup.highlight]# false is a necessary configuration (https://github.com/hugo-fixit/FixIt/issues/43)noClasses=false
Note
When building the website, you can set a theme by using --theme option. However, we suggest you modify the configuration file (config.toml) and set the theme as the default.
Feel free to edit the post file by adding some sample content and replacing the title value in the beginning of the file.
Note
By default all posts and pages are created as a draft. If you want to render these pages, remove the property draft: true from the metadata, set the property draft: false or add -D/--buildDrafts parameter to hugo command.
2.5 Launching the Website Locally
Launch by using the following command:
1
2
# `hugo serve` is an alias of `hugo server`, which is not a misspelling ~
hugo server
Go to http://localhost:1313.
Tip
When you run hugo server, when the contents of the files change, the page automatically refreshes with the changes.
Note
Since the theme use .Scratch in Hugo to implement some features,
it is highly recommended that you add --disableFastRender parameter to hugo server command for the live preview of the page you are editing.
1
hugo server --disableFastRender
2.6 Build the Website
When your site is ready to deploy, run the following command:
1
hugo
A public folder will be generated, containing all static content and assets for your website. It can now be deployed on any web server.
[params]# FixIt theme versionversion="0.2.X"# e.g. "0.2.X", "0.2.15", "v0.2.15" etc.# site descriptiondescription="This is my new Hugo FixIt site"# site keywordskeywords=["Hugo","FixIt"]# site default theme ["light", "dark", "auto"]defaultTheme="auto"# public git repo url only then enableGitInfo is truegitRepo=""# which hash function used for SRI, when empty, no SRI is used# ["sha256", "sha384", "sha512", "md5"]fingerprint=""# date formatdateFormat="2006-01-02"# website images for Open Graph and Twitter Cardsimages=["/logo.png"]# enable PWAenablePWA=true# whether to add external Icon for external links automaticallyexternalIcon=false# FixIt will, by default, inject a theme meta tag in the HTML head on the home page only.# You can turn it off, but we would really appreciate if you don’t, as this is a good way to watch FixIt's popularity on the rise.disableThemeInject=false# App icon config[params.app]# optional site title override for the app when added to an iOS home screen or Android launchertitle="FixIt"# whether to omit favicon resource linksnoFavicon=false# modern SVG favicon to use in place of older style .png and .ico filessvgFavicon=""# Safari mask icon coloriconColor="#5bbad5"# Windows v8-10 tile colortileColor="#da532c"# Android browser theme color[params.app.themeColor]light="#f8f8f8"dark="#252627"# Search config[params.search]enable=true# type of search engine ["lunr", "algolia"]type="lunr"# max index length of the chunked contentcontentLength=4000# placeholder of the search barplaceholder=""# max number of results lengthmaxResultLength=10# snippet length of the resultsnippetLength=30# HTML tag name of the highlight part in resultshighlightTag="em"# whether to use the absolute URL based on the baseURL in search indexabsoluteURL=false[params.search.algolia]index=""appID=""searchKey=""# Header config[params.header]# desktop header mode ["sticky", "normal", "auto"]desktopMode="sticky"# mobile header mode ["sticky", "normal", "auto"]mobileMode="auto"# Header title config[params.header.title]# URL of the LOGOlogo="/fixit.min.svg"# title namename=""# you can add extra information before the name (HTML format is supported), such as iconspre=""# you can add extra information after the name (HTML format is supported), such as iconspost=""# whether to use typeit animation for title nametypeit=false# Header subtitle config[params.header.subtitle]# subtitle namename=""# whether to use typeit animation for subtitle nametypeit=false# Footer config[params.footer]enable=true# Custom content (HTML format is supported)custom=""# whether to show Hugo and theme infohugo=true# whether to show copyright infocopyright=true# whether to show the authorauthor=true# Site creation yearsince=2021# Site creation timesiteTime=""# e.g. "2021-12-18T16:15:22+08:00"# whether to show total word count of site contentwordCount=true# Public network security only in China (HTML format is supported)gov=""# ICP info only in China (HTML format is supported)icp=""# license info (HTML format is supported)license='<a rel="license external nofollow noopener noreferrer" href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a>'# Section (all posts) page config[params.section]# special amount of posts in each section pagepaginate=20# date format (month and day)dateFormat="01-02"# amount of RSS pagesrss=10# recently updated posts settings[params.section.recentlyUpdated]enable=falserss=falsedays=30maxCount=10# List (category or tag) page config[params.list]# special amount of posts in each list pagepaginate=20# date format (month and day)dateFormat="01-02"# amount of RSS pagesrss=10# Home page config[params.home]# amount of RSS pagesrss=10# Home page profile[params.home.profile]enable=true# Gravatar Email for preferred avatar in home pagegravatarEmail="xx@xx.com"# URL of avatar shown in home pageavatarURL=""# title shown in home page (HTML format is supported)title=""# subtitle shown in home pagesubtitle="This is my new Hugo FixIt site"# whether to use typeit animation for subtitletypeit=true# whether to show social linkssocial=true# disclaimer (HTML format is supported)disclaimer=""# Home page posts[params.home.posts]enable=true# special amount of posts in each home posts pagepaginate=6# Social config about the author[params.social]GitHub="Lruihao"Linkedin=""Twitter=""Instagram=""Facebook=""Telegram=""Medium=""Gitlab=""Youtubelegacy=""Youtubecustom=""Youtubechannel=""Tumblr=""Quora=""Keybase=""Pinterest=""Reddit=""Codepen=""FreeCodeCamp=""Bitbucket=""Stackoverflow=""Weibo=""Odnoklassniki=""VK=""Flickr=""Xing=""Snapchat=""Soundcloud=""Spotify=""Bandcamp=""Paypal=""Fivehundredpx=""Mix=""Goodreads=""Lastfm=""Foursquare=""Hackernews=""Kickstarter=""Patreon=""Steam=""Twitch=""Strava=""Skype=""Whatsapp=""Zhihu=""Douban=""Angellist=""Slidershare=""Jsfiddle=""Deviantart=""Behance=""Dribbble=""Wordpress=""Vine=""Googlescholar=""Researchgate=""Mastodon=""Thingiverse=""Devto=""Gitea=""XMPP=""Matrix=""Bilibili=""ORCID=""Liberapay=""Ko-Fi=""BuyMeaCoffee=""Linktree=""QQ=""QQGroup=""# https://qun.qq.com/join.htmlDiaspora=""CSDN=""Discord=""DiscordInvite=""Lichess=""Pleroma=""Kaggle=""MediaWiki=""Plume=""HackTheBox=""RootMe=""Feishu=""TryHackMe=""Phone=""Email=""RSS=true# Page config[params.page]# whether to hide a page from home pagehiddenFromHomePage=false# whether to hide a page from search resultshiddenFromSearch=false# whether to enable twemojitwemoji=false# whether to enable lightgallerylightgallery=false# whether to enable the ruby extended syntaxruby=true# whether to enable the fraction extended syntaxfraction=true# whether to enable the fontawesome extended syntaxfontawesome=true# license info (HTML format is supported)license='<a rel="license external nofollow noopener noreferrer" href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a>'# whether to show link to Raw Markdown content of the contentlinkToMarkdown=true# whether to show the full text content in RSSrssFullText=false# Page style ["narrow", "normal", "wide", ...]pageStyle="normal"# Gravatar is force-used as the author's avatargravatarForce=false# Auto Bookmark Support# If true, save the reading progress when closing the page.autoBookmark=false# Repost config[params.page.repost]enable=falseurl=""# Table of the contents config[params.page.toc]# whether to enable the table of the contentsenable=true# whether to keep the static table of the contents in front of the postkeepStatic=false# whether to make the table of the contents in the sidebar automatically collapsedauto=true# position of TOC ["left", "right"]position="right"# Display a message at the beginning of an article to warn the reader that its content might be expired[params.page.expirationReminder]enable=false# Display the reminder if the last modified time is more than 90 days agoreminder=90# Display warning if the last modified time is more than 180 days agowarning=180# If the article expires, close the comment or notcloseComment=false# KaTeX mathematical formulas (https://katex.org)[params.page.math]enable=true# default inline delimiter is $ ... $ and \( ... \)inlineLeftDelimiter=""inlineRightDelimiter=""# default block delimiter is $$ ... $$, \[ ... \], \begin{equation} ... \end{equation} and some other functionsblockLeftDelimiter=""blockRightDelimiter=""# KaTeX extension copy_texcopyTex=true# KaTeX extension mhchemmhchem=true# Code config[params.page.code]# whether to show the copy button of the code blockcopy=true# whether to show the edit button of the code blockedit=true# the maximum number of lines of displayed code by defaultmaxShownLines=10# Post edit[params.page.edit]enable=false# Link for fork & edit# url = "/edit/branch-name/subdirectory-name" # base on `params.gitRepo`# url = "https://github.com/user-name/repo-name/edit/branch-name/subdirectory-name" # full urlurl=""# Mapbox GL JS config (https://docs.mapbox.com/mapbox-gl-js)[params.page.mapbox]# access token of Mapbox GL JSaccessToken=""# style for the light themelightStyle="mapbox://styles/mapbox/light-v9"# style for the dark themedarkStyle="mapbox://styles/mapbox/dark-v9"# whether to add NavigationControlnavigation=true# whether to add GeolocateControlgeolocate=true# whether to add ScaleControlscale=true# whether to add FullscreenControlfullscreen=true# social share links in post page[params.page.share]enable=trueTwitter=trueFacebook=trueLinkedin=falseWhatsapp=truePinterest=falseTumblr=falseHackerNews=falseReddit=falseVK=falseBuffer=falseXing=falseLine=trueInstapaper=falsePocket=falseDigg=falseStumbleupon=falseFlipboard=falseWeibo=trueRenren=falseMyspace=trueBlogger=trueBaidu=falseOdnoklassniki=falseEvernote=trueSkype=falseTrello=falseMix=false# Comment config[params.page.comment]enable=false# Artalk comment config (https://artalk.js.org/)[params.page.comment.artalk]enable=falseserver="https://yourdomain/api/"site="默认站点"placeholder=""noComment=""sendBtn=""editorTravel=trueflatMode="auto"maxNesting=3# It take effect when `params.page.lightgallery` is enabledlightgallery=falselocale=""# # Disqus comment config (https://disqus.com)[params.page.comment.disqus]enable=false# Disqus shortname to use Disqus in postsshortname=""# Gitalk comment config (https://github.com/gitalk/gitalk)[params.page.comment.gitalk]enable=falseowner=""repo=""clientId=""clientSecret=""# Valine comment config (https://github.com/xCss/Valine)[params.page.comment.valine]enable=falseappId=""appKey=""placeholder=""avatar="mp"meta=""pageSize=10lang=""visitor=truerecordIP=truehighlight=trueenableQQ=falseserverURLs=""# emoji data file name, default is "google.yml"# ["apple.yml", "google.yml", "facebook.yml", "twitter.yml"]# located in "themes/FixIt/assets/data/emoji/" directory# you can store your own data files in the same path under your project:# "assets/data/emoji/"emoji=""commentCount=true# # Waline comment config (https://waline.js.org)[params.page.comment.waline]enable=falseserverURL=""pageview=false# emoji=["//unpkg.com/@waline/emojis@1.1.0/weibo"]meta=["nick","mail","link"]requiredMeta=[]login="enable"wordLimit=0pageSize=10imageUploader=false# highlighter=false# comment=false# texRenderer=false# search=false# recaptchaV3Key=""# # Facebook comment config (https://developers.facebook.com/docs/plugins/comments)[params.page.comment.facebook]enable=falsewidth="100%"numPosts=10appId=""languageCode=""# Telegram comments config (https://comments.app)[params.page.comment.telegram]enable=falsesiteID=""limit=5height=""color=""colorful=truedislikes=falseoutlined=false# Commento comment config (https://commento.io)[params.page.comment.commento]enable=false# Utterances comment config (https://utteranc.es)[params.page.comment.utterances]enable=false# owner/reporepo=""issueTerm="pathname"label=""lightTheme="github-light"darkTheme="github-dark"# Twikoo comment config (https://twikoo.js.org/)[params.page.comment.twikoo]enable=falseenvId=""region=""path=""visitor=truecommentCount=true# It take effect when `params.page.lightgallery` is enabledlightgallery=false# Giscus comments config[params.page.comment.giscus]enable=falserepo=""repoId=""category=""categoryId=""mapping=""reactionsEnabled="1"emitMetadata="0"inputPosition="bottom"# top, bottomlightTheme="light"darkTheme="dark"lazyLoad=true# Third-party library config[params.page.library][params.page.library.css]# someCSS = "some.css"# located in "assets/"# Or# someCSS = "https://cdn.example.com/some.css"[params.page.library.js]# someJavascript = "some.js"# located in "assets/"# Or# someJavascript = "https://cdn.example.com/some.js"# Page SEO config[params.page.seo]# image URLimages=[]# Publisher info[params.page.seo.publisher]name=""logoUrl=""# TypeIt config[params.typeit]# typing speed between each step (measured in milliseconds)speed=100# blinking speed of the cursor (measured in milliseconds)cursorSpeed=1000# character used for the cursor (HTML format is supported)cursorChar="|"# cursor duration after typing finishing (measured in milliseconds, "-1" means unlimited)duration=-1# Mermaid config[params.mermaid]# For values, see https://mermaid-js.github.io/mermaid/#/Setup?id=themethemes=["neutral","dark"]# PanguJS config[params.pangu]# For Chinese writingenable=false# Watermark config# Detail config see https://github.com/Lruihao/watermark#readme[params.watermark]enable=false# watermark's text (HTML format is supported)content=""# watermark's transparencyopacity=0.1# parent of watermark's containerappendTo=".wrapper>main"# watermark's width. unit: pxwidth=150# watermark's height. unit: pxheight=20# row spacing of watermarks. unit: pxrowSpacing=60# col spacing of watermarks. unit: pxcolSpacing=30# watermark's tangent angle. unit: degrotate=15# watermark's fontSize. unit: remfontSize=0.85# watermark's fontFamilyfontFamily="inherit"# Busuanzi count[params.ibruce]enable=true# Enable in post metaenablePost=false# Site creation time# The parameter `ibruce.siteTime` is deprecated since v0.2.14, use `footer.siteTime` instead# siteTime = "" # e.g. "2021-12-18T16:15:22+08:00"# Site verification code config for Google/Bing/Yandex/Pinterest/Baidu/360/Sogou[params.verification]google=""bing=""yandex=""pinterest=""baidu=""so=""sogou=""# Site SEO config[params.seo]# image URLimage=""# thumbnail URLthumbnailUrl=""# Analytics config[params.analytics]enable=false# Google Analytics[params.analytics.google]id=""# whether to anonymize IPanonymizeIP=true# Fathom Analytics[params.analytics.fathom]id=""# server url for your tracker if you're self hostingserver=""# Cookie consent config[params.cookieconsent]enable=true# text strings used for Cookie consent banner[params.cookieconsent.content]message=""dismiss=""link=""# CDN config for third-party library files[params.cdn]# CDN data file name, disabled by default ["jsdelivr.yml", "unpkg.yml", ...]# located in "themes/FixIt/assets/data/cdn/" directory# you can store your own data files in the same path under your project: "assets/data/cdn/"# data = "unpkg.yml"# Compatibility config[params.compatibility]# whether to use Polyfill.io to be compatible with older browserspolyfill=false# whether to use object-fit-images to be compatible with older browsersobjectFit=false# GitHub banner in the top-right or top-left corner[params.githubCorner]enable=falsepermalink="https://github.com/hugo-fixit/FixIt"title="View source on GitHub"position="right"# ["left", "right"]# Gravatar config[params.gravatar]# Gravatar host, default: "www.gravatar.com"host="www.gravatar.com"# ["cn.gravatar.com", "gravatar.loli.net", ...]style=""# ["", "mp", "identicon", "monsterid", "wavatar", "retro", "blank", "robohash"]# Back to top[params.backToTop]enable=true# Scroll percent label in b2t buttonscrollpercent=false# Reading progress bar[params.readingProgress]enable=false# Available values: ["left", "right"]start="left"# Available values: ["top", "bottom"]position="top"reversed=falselight=""dark=""height="2px"# Developer options[params.dev]enable=false# Check for updatesc4u=false# Please do not expose to public!githubToken=""# Mobile Devtools config[params.dev.mDevtools]enable=false# "vConsole", "eruda" supportedtype="vConsole"# Markup related configuration in Hugo[markup]# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)[markup.highlight]########## necessary configurations ########### https://github.com/hugo-fixit/FixIt/issues/43codeFences=truelineNos=truelineNumbersInTable=truenoClasses=false########## necessary configurations ##########guessSyntax=true# Goldmark is from Hugo 0.60 the default library used for Markdown[markup.goldmark][markup.goldmark.extensions]definitionList=truefootnote=truelinkify=truestrikethrough=truetable=truetaskList=truetypographer=true[markup.goldmark.renderer]# whether to use HTML tags directly in the documentunsafe=true# Table Of Contents settings[markup.tableOfContents]startLevel=2endLevel=6# Author config[author]name="xxxx"email=""link=""# Sitemap config[sitemap]changefreq="weekly"filename="sitemap.xml"priority=0.5# Permalinks config (https://gohugo.io/content-management/urls#permalinks)[Permalinks]# posts = ":year/:month/:filename"posts=":filename"# Privacy config (https://gohugo.io/about/hugo-and-gdpr/)[privacy][privacy.twitter]enableDNT=true[privacy.youtube]privacyEnhanced=true# [mediaTypes]# Options to make output .md files[mediaTypes."text/markdown"]suffixes=["md"]# Options to make output .txt files[mediaTypes."text/plain"]suffixes=["txt"]# [outputFormats]# Options to make output .md files[outputFormats.MarkDown]mediaType="text/markdown"isPlainText=trueisHTML=false# Options to make output baidu_urls.txt file[outputFormats.BaiduUrls]baseName="baidu_urls"mediaType="text/plain"isPlainText=trueisHTML=false# Options to make hugo output files[outputs]home=["HTML","RSS","JSON","BaiduUrls"]page=["HTML","MarkDown"]section=["HTML","RSS"]taxonomy=["HTML","RSS"]taxonomyTerm=["HTML"]
Note
Note that some of these parameters are explained in details in other sections of this documentation.
Hugo environments
Default environments are development with hugo server and production with hugo.
Due to limitations in the local development environment,
the comment system, CDN and fingerprint will not be enabled in the development environment.
You could enable these features with hugo server -e production.
Tips about CDN Configuration
1
2
3
[params.cdn]# CDN data file name, disabled by default ["jsdelivr.yml", "unpkg.yml", ...]data=""
The default CDN data file is located in themes/FixIt/assets/data/cdn/ directory.
You can store your own data file in the same path under your project: assets/data/cdn/.
Tips about social Configuration
You can directly set your ID to get a default social link and its icon:
1
2
[params.social]Mastodon="@xxxx"
The social link generated is https://mastodon.technology/@xxxx.
Or You can set more options through a dict:
1
2
3
4
5
6
7
8
9
10
[params.social][params.social.Mastodon]# weight when arranging icons (the greater the weight, the later the icon is positioned)weight=0# your social IDid="@xxxx"# prefix of your social linkprefix="https://mastodon.social/"# content hovering on the icontitle="Mastodon"
The default data of all supported social links is located in themes/FixIt/assets/data/social.yaml,
which is you can refer to.
There are three css common class for print view in FixIt Theme.
page-break-before Insert page break before element
page-break-after Insert page break after element
print-d-none Hide elements in print view
Here is a simple exmple:
1
2
3
4
5
<divclass="page-break-before"></div><divclass="page-break-after"></div><divclass="print-d-none">
Something you want to hide in the print view is written here.
</div>
3.4 Script Customization
The directory including the custom script file named custom.js is assets/js relative to your project root directory.
If the script file assets/js/custom.js exists, it will be executed at the end of each post and page.
According to the interface provided by Hugo, FixIt theme only realizes some functions, but I think it is enough to meet the needs of most people and make users easier to use.
The following is a complete menu item configuration:
[menu][[menu.main]]identifier="posts"# Identifier of the parent menu itemparent=""# you can add extra information before the name (HTML format is supported), such as iconspre=""# you can add extra information after the name (HTML format is supported), such as iconspost=""name="Posts"url="/posts/"# title will be shown when you hover on this menu linktitle=""weight=1# add user-defined content to menu items[menu.main.params]# add css class to a specific menu itemclass="text-center"# whether set as a draft menu item whose function is similar to a draft post/pagedraft=false# add fontawesome icon to a specific menu itemicon="fa-solid fa-archive"# set menu item type, optional value: ["mobile", "desktop"]type=""
3.5.1 Sub Menu
In consideration of practicability and typesetting, the FixIt theme only supports two-tier nested menus, which can be configured through the parent field in the menu configuration.
The parent item of a menu item should be the identifier of another menu item, and the identifier should be unique in the menu.
3.5.2 Menu Params
You can also add user-defined content to menu items via the params field. The FixIt theme currently provides two parameters:
class{String} add css class to a specific menu item
draft{Boolean} whether set as a draft menu item whose function is similar to a draft post/page
icon{String} add fontawesome icon to a specificmenu item
type{String} set menu item type, optional value: [“mobile”, “desktop”]
Note
The draft menu items and posts/pages can be rendered by starting the Hugo server command or adding the -D/--buildDrafts parameter to hugo command.
Tip
This helps to distinguish the different contents of preview environment and production environment during deployment.
It’s also possible to create menu entries from the page by configuring front matter (i.e. the .md-file).
Here is a yaml example:
1
2
3
4
5
6
7
8
9
10
11
12
---title:"Theme Documentation - Basics"author:"Lruihao"menu:main:name:"Basics"title:"Discover what the Hugo - FixIt theme is all about and the core-concepts behind it."parent:"documentation"params:icon:"fa-brands fa-readme"---...
4 Multilingual and i18n
FixIt theme is fully compatible with Hugo multilingual mode, which provides in-browser language switching.
# [en, zh-cn, fr, pl, ...] determines default content languagedefaultContentLanguage="en"[languages][languages.en]weight=1title="My New Hugo FixIt Site"languageCode="en"languageName="English"[[languages.en.menu.main]]identifier="posts"pre=""post=""name="Posts"url="/posts/"title=""weight=1[[languages.en.menu.main]]identifier="tags"pre=""post=""name="Tags"url="/tags/"title=""weight=2[[languages.en.menu.main]]identifier="categories"pre=""post=""name="Categories"url="/categories/"title=""weight=3[languages.zh-cn]weight=2title="我的全新 Hugo FixIt 网站"# language code, CN only herelanguageCode="zh-CN"languageName="简体中文"# whether to include Chinese/Japanese/KoreanhasCJKLanguage=true[[languages.zh-cn.menu.main]]identifier="posts"pre=""post=""name="文章"url="/posts/"title=""weight=1[[languages.zh-cn.menu.main]]identifier="tags"pre=""post=""name="标签"url="/tags/"title=""weight=2[[languages.zh-cn.menu.main]]identifier="categories"pre=""post=""name="分类"url="/categories/"title=""weight=3[languages.fr]weight=3title="Mon nouveau site Hugo FixIt"languageCode="fr"languageName="Français"[[languages.fr.menu.main]]identifier="posts"pre=""post=""name="Postes"url="/posts/"title=""weight=1[[languages.fr.menu.main]]identifier="tags"pre=""post=""name="Balises"url="/tags/"title=""weight=2[[languages.fr.menu.main]]identifier="categories"name="Catégories"pre=""post=""url="/categories/"title=""weight=3
Then, for each new page, append the language code to the file name.
Single file my-page.md is split in three files:
in English: my-page.en.md
in Chinese: my-page.zh-cn.md
in French: my-page.fr.md
Note
Be aware that only translated pages are displayed in menu. It’s not replaced with default language content.
Translations strings are used for common default values used in the theme. Translations are available in some languages, but you may use another language or want to override default values.
To override these values, create a new file in your local i18n folder i18n/<languageCode>.toml and inspire yourself from themes/FixIt/i18n/en.toml.
By the way, as these translations could be used by other people, please take the time to propose a translation by making a PR to the theme!
5 Search
Based on Lunr.js or algolia, searching is supported in FixIt theme.
5.1 Output Configuration
In order to generate index.json for searching, add JSON output file type to the home of the outputs part in your site configuration.
1
2
[outputs]home=["HTML","RSS","JSON"]
5.2 Search Configuration
Based on index.json generated by Hugo, you could activate searching.
[params.search]enable=true# type of search engine ["lunr", "algolia"]type="lunr"# max index length of the chunked contentcontentLength=4000# placeholder of the search barplaceholder=""# max number of results lengthmaxResultLength=10# snippet length of the resultsnippetLength=30# HTML tag name of the highlight part in resultshighlightTag="em"# whether to use the absolute URL based on the baseURL in search indexabsoluteURL=false[params.search.algolia]index=""appID=""searchKey=""
How to choose search engine?
The following is a comparison of two search engines:
lunr: simple, no need to synchronize index.json, no limit for contentLength,
but high bandwidth and low performance (Especially for Chinese which needs a large segmentit library)
algolia: high performance and low bandwidth, but need to synchronize index.json and limit for contentLength
The content of the post is separated by h2 and h3 HTML tag to improve query performance and basically implement full-text search.
contentLength is used to limit the max index length of the part starting with h2 and h3 HTML tag.
Tips about algolia
You need to upload index.json files to algolia to activate searching.
You could upload the index.json files by browsers but a CLI tool may be better.
Algolia Atomic is a good choice.
To be compatible with Hugo multilingual mode,
you need to upload different index.json for each language to the different index of algolia, such as zh-cn/index.json or fr/index.json…
Thanks
Thanks to the original author Dillon for preparing and revising the content before version v0.2.10 in this documentation.