Go to file
2024-12-01 18:59:06 +01:00
archetypes Initial commit 2020-02-02 11:13:02 -06:00
assets Fix footnote SCSS not being compatible with generated markup 2021-01-10 20:21:00 +01:00
exampleSite Make whitespace more consistent. 2020-08-01 15:31:05 +01:00
i18n multi-language support through i18n 2020-04-18 22:18:57 +02:00
images Initial commit 2020-02-02 11:13:02 -06:00
layouts Remove useless rss link 2024-12-01 18:59:06 +01:00
resources/_gen/assets added crossorigin anonymous, resizing for large images, and ko-fi button 2020-04-13 09:01:41 -05:00
static Add div to collapsible 2024-11-30 07:14:20 +01:00
LICENSE.md Initial commit 2020-02-02 11:13:02 -06:00
README.md Make whitespace more consistent. 2020-08-01 15:31:05 +01:00
theme.toml Fix incompatibility with new hugo version 2024-11-22 14:45:45 +01:00

Noteworthy

Noteworthy is a minimalist Hugo theme for writers and bloggers.

Noteworthy desktop screenshot

Features

  • Fully responsive
  • Google Analytics and Disqus integration
  • Ko-fi donation button
  • Syntax highlighting
  • Mathematical notations with KaTex
  • About, Tags, and Archives pages
  • RSS feeds
  • Social media links
  • SCSS for styling

Installation

Navigate to the root directory of your Hugo site and clone this repository.

git clone https://github.com/kimcc/hugo-theme-noteworthy.git themes/noteworthy

Refer to the Hugo docs for more information.

Image shortcode for large images

To add images using the resize-image shortcode included with this theme, you will need to create a Post Bundle. Create a folder for your post, put your Markdown file and images inside, and rename your Markdown file index.md. For example:

my-new-post
- index.md
- image1.jpg
- image2.png

Then, you can add an image within your Markdown file by using the shortcode like this:

{{< resize-image src="image1.jpg" alt="My first image" >}}

Add captions like this:

{{< resize-image src="image2.png" alt="My second image" caption="My caption" >}}

Set showReadMore = false to true in the config file to have a "read more" link show up when posts are truncated.

Social media accounts

In the params section of the config.toml file, you can add links to your social media accounts. Simply remove the ones that you don't want to include, and their icons will disappear from the site.

# 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 = "#"

Disqus and Google Analytics

Add your Disqus shortname and Google Analytics identifier in the config.toml file.

# Add your Disqus shortname here.
disqusShortname = ""

# Add your Google Analytics identifier: UA-XXXXXXXX-X
googleAnalytics = ""

Ko-fi donation button

If you'd like to enable a Ko-fi button on your posts, enable it in the config file and add your identifier.

# Set enableKofi to true to enable the Ko-fi support button. Add your Ko-fi ID to link to your account.
enableKofi = true
kofi = ""

License

Released under the MIT License.