hugo theme noteworthy
1.0.0
值得注意的是为作家和博主设计的极简主义 Hugo 主题。
导航到 Hugo 站点的根目录并克隆此存储库。
git clone https://github.com/kimcc/hugo-theme-noteworthy.git themes/noteworthy
请参阅 Hugo 文档以获取更多信息。
要使用此主题附带的调整大小图像短代码添加图像,您需要创建一个帖子包。为您的帖子创建一个文件夹,将 Markdown 文件和图像放入其中,然后将 Markdown 文件重命名为index.md
。例如:
my-new-post
- index.md
- image1.jpg
- image2.png
然后,您可以使用如下短代码在 Markdown 文件中添加图像:
{{< resize-image src="image1.jpg" alt="My first image" >}}
添加这样的标题:
{{< resize-image src="image2.png" alt="My second image" caption="My caption" >}}
在配置文件中将showReadMore = false
设置为true
,以便在帖子被截断时显示“阅读更多”链接。
在config.toml
文件的params
部分中,您可以添加指向社交媒体帐户的链接。只需删除您不想包含的图标,它们的图标就会从网站上消失。
# Main
email = "#"
facebook = "#"
twitter = "#"
instagram = "#"
tumblr = "#"
reddit = "#"
pinterest = "#"
youtube = "#"
vimeo = "#"
weibo = "#"
vk = "#"
linkedin = "#"
# Writing
medium = "#"
blogger = "#"
wordpress = "#"
# Creative & Visual
dribbble = "#"
behance = "#"
deviantart = "#"
flickr = "#"
# Audio & Music
soundcloud = "#"
# Programming
github = "#"
stackoverflow = "#"
gitlab = "#"
codepen = "#"
# Academic
googlescholar = "#"
impactstory = "#"
orcid = "#"
# Travel
googlemaps = "#"
tripadvisor = "#"
在config.toml
文件中添加您的 Disqus 短名称和 Google Analytics 标识符。
# Add your Disqus shortname here.
disqusShortname = ""
# Add your Google Analytics identifier: UA-XXXXXXXX-X
googleAnalytics = ""
如果您想在帖子上启用 Ko-fi 按钮,请在配置文件中启用它并添加您的标识符。
# Set enableKofi to true to enable the Ko-fi support button. Add your Ko-fi ID to link to your account.
enableKofi = true
kofi = ""
根据 MIT 许可证发布。