The config files that ship with Congo contain all of the possible settings that the theme recognises. By default, many of these are commented out but you can simply uncomment them to activate or change a specific feature.
Basic configuration #
Before creating any content, there are a few things you should set for a new installation. Starting in the config.toml
file, set the baseURL
and languageCode
parameters. The languageCode
should be set to the main language that you will be using to author your content.
# config/_default/config.toml
baseURL = "https://your_domain.com/"
@@ -60,7 +62,7 @@
├── cover.jpg
├── index.md
└── thumb.jpg
-
The thumb
image is used as the article thumbnail and will be displayed in article lists, and the cover
image will be displayed at the top of the article content on individual article pages.
In order to provide maximum performance, thumbnail images are automatically cropped and resized to a 4:3 ratio. Cover images will be automatically resized to fit their content, but any ratio is permitted. The feature
image is a special type, and when present, it will be used in place of both the thumb
and cover
images. Feature images are also present in the article metadata, which is included when content is shared to third-party networks like Facebook and Twitter.
The theme will intelligently detect article images and automatically add them to your site. You don’t have to refer to them in the front matter and simply need to place an appropriately named file within the page resources. If the term feature
, cover
or thumb
is found anywhere in the image filename, then it will be used for that purpose.
The Samples section provides a number of examples of these images (and you can view the source code to see the file structure).
Taxonomies #
Congo is also flexible when it comes to taxonomies. Some people prefer to use tags and categories to group their content, others prefer to use topics.
Hugo defaults to using posts, tags and categories out of the box and this will work fine if that’s what you want. If you wish to customise this, however, you can do so by creating a taxonomies.toml
configuration file:
# config/_default/taxonomies.toml
+
The thumb
image is used as the article thumbnail and will be displayed in article lists, and the cover
image will be displayed at the top of the article content on individual article pages.
In order to provide maximum performance, thumbnail images are automatically cropped and resized to a 4:3 ratio. Cover images will be automatically resized to fit their content, but any ratio is permitted. The feature
image is a special type, and when present, it will be used in place of both the thumb
and cover
images. Feature images are also present in the article metadata, which is included when content is shared to third-party networks like Facebook and Twitter.
The theme will intelligently detect article images and automatically add them to your site. You don’t have to refer to them in the front matter and simply need to place an appropriately named file within the page resources. If the term feature
, cover
or thumb
is found anywhere in the image filename, then it will be used for that purpose.
The Samples section provides a number of examples of these images (and you can view the source code to see the file structure).
Taxonomies #
Congo is also flexible when it comes to taxonomies. Some people prefer to use tags and categories to group their content, others prefer to use topics.
Hugo defaults to using posts, tags and categories out of the box and this will work fine if that’s what you want. If you wish to customise this, however, you can do so by creating a taxonomies.toml
configuration file:
# config/_default/taxonomies.toml
topic = "topics"
This will replace the default tags and categories with topics. Refer to the Hugo Taxonomy docs for more information on naming taxonomies.
When you create a new taxonomy, you will need to adjust the navigation links on the website to point to the correct sections, which is covered below.
Congo has two menus that can be customised to suit the content and layout of your site. The main
menu appears in the site header and the footer
menu appears at the bottom of the page just above the copyright notice.
Both menus are configured in the menus.en.toml
file. Similarly to the languages config file, if you wish to use another language, rename this file and replace en
with the language code you wish to use. Menu links will be sorted from lowest to highest weight
, and then alphabetically by name
.
# config/_default/menus.en.toml
@@ -94,8 +96,8 @@
[[footer]]
name = "Privacy"
pageRef = "privacy"
-
Basic links #
The name
parameter specifies the text that is used in the menu link. You can also optionally provide a title
which fills the HTML title attribute for the link.
The pageRef
parameter allows you to easily reference Hugo content pages and taxonomies. It is the quickest way to configure the menu as you can simply refer to any Hugo content item and it will automatically build the correct link. To link to external URLs, the url
parameter can be used.
Further customisation can be achieved through the use of special theme parameters. Providing params
within a link allows the addition of an icon
, the ability to toggle the link text with showName
and to optionally set a target
for the URL. In the example above, the GitHub link will only display as an icon and will open the link in a new window.
Action links #
There is a special case for creating menu items for links that take theme actions. These are denoted using the action
parameter, and a value of the action the link should perform. Action links allow for all the same custom parameters as other links and can be styled with an icon or text name.
There are two valid theme actions:
appearance
will create a link to the appearance switchersearch
will create a link to the site search
Both menus are completely optional and can be commented out if not required. Use the template provided in the default file as a guide.
Detailed configuration #
The steps above are the bare minimum configuration. If you now run hugo server
you will be presented with a blank Congo website. Detailed configuration is covered in the Configuration section.