Fragments
Syna & Fragments
Fragments are the base building block of your website. Each page is made up of one or multiple fragments. These can be a navigation fragment, a content fragment and more.
Where to put the fragments
In Hugo, the simplest way to create a page is to create a directory containing an index.md
file.
If you need to create a new section for your website, then instead of an index.md
file, simply create _index.md
.
Section pages in Hugo are mostly called list
and other pages are called single
.
After creating your page, you need to create fragments to populate that page.
Each fragment is controlled by a content file.
This file is located next to index.md
of the page if the page is single or in the _index
directory if the page is a section one or homepage.
For example:
content/my-page/index.md
: defines the page and a few attributes such as page titlecontent/my-page/my-fragment.md
: content file for a fragment specified as attributefragment = "content"
That fragment file should contain at least the following:
+++
fragment = "[The fragment you want to use]"
weight = 10
+++
For single pages, the directory content would look something like the following:
content
├── my-page
| ├── index.md
| ├── nav.md
| ├── hero
| | ├── index.md
content
directory: The directory where Hugo looks for pages of the websitemy-page
directory: A page calledmy-page
which is accessible by[path-to-website]/my-page
index.md
: Contains page title, url and other page properties. Can also be a fragment itself.nav.md
: A nav fragment. Would override any other global fragment namednav
.hero
directory: A directory that can contain a single fragment. Name of the fragment would behero
and would override any other fragment named hero.index.md
: Controller file for the hero fragment
For list pages, it’s just a bit different:
content
| ├── my-section
| | ├── _index.md
| | ├── _index
| | | ├── index.md
| | ├── my-page
| | | ├── index.md
_index.md
: This file is the same asmy-page/index.md
in the single layout but it cannot be a fragment_index
directory: For list pages, fragments are located in this directoryindex.md
: This file should be a headless page. If not, Hugo would render the page. You can use this file as fragment.
Global fragments such as nav and footer and copyright can be located in the content/_global
directory.
Fragments located in this directory would appear in every page unless there’s another fragment with the same name closer to the page.
Global Fragments
For fragments of a website, that need to show up on every page, we have global fragments.
Global fragments are located in a special content directory content/_global/
.
All fragments within this directory are rendered on all pages by default.
To prevent the page being rendered as a separate page on your website, we define the whole directory as a headless
bundle within the index.md file.
To overwrite a global fragment create a per page fragment with the same filename.
This would overwrite the global one.
In order to hide a global fragment in a specific page or section, you can use the hide
global variable.
Aside from the content/_global/
directory, you can create _global/
directory in any section’s directory (content/[section]/_global/
).
Each section can have global fragments and if there are multiple fragments with the same name, the fragment closest to the page would override the others.
Disabling a global fragment in specific pages/sections
As global fragments are displayed in all child pages, you might want to disable them in some of those pages or specific sections. You can do so by duplicating that fragment in the page you want and disable it there.
For example if you have /content/_global/nav.md
and want to disable it in your
blog, create /content/blog/_global/nav.md
with following configuration:
+++
fragment = "nav"
disabled = true
+++
Built-in fragments
There are several pre-bundled fragments already available in Syna. You can see the full list and their documentation in the fragments section. These fragments make use of some global variables along with their own variables which are mentioned in the fragment’s page.
Custom fragments
You can add your own custom fragment by creating a new layout file within your website’s layouts/partials/fragments/
directory.
If this path doesn’t exist yet, you can create it beforehand.
Fragments with subitems
For image bundling or subitems in fragments such as member
or items
a subdirectory should be used.
- content/my-page/index.md defines the page and a few attributes such as page title
- content/my-page/member.md content file for a fragment specified as attribute
fragment = "member"
- content/my-page/member/my-teammate.md individual content file per member
- content/my-page/member/my-teammate.png
The attributes and content of this file are passed to the specified fragment (fragment = "member"
).
Using the weight
attribute you can specify the order.
Short-comings
As mentioned, fragments are controlled by content files.
There is one exception and that is menus.
Hugo does not allow menus to be defined in content files.
In order to customize menu options for a fragment you need to configure them within your website’s config.toml
file.
As of right now there are three fragments using menus:
- nav:
menu.prepend
,menu.main
andmenu.postpend
- footer:
menu.footer
andmenu.footer_social
- copyright:
menu.copyright_footer
Whenever Hugo allows for resource menus or when we figure out a way to have menu features with frontmatter arrays this would change and menus would be configurable with resource variables like everything else. The change would be breaking. So when updating the theme please read the CHANGELOG and check for breaking changes.
Furthermore we use two keywords, that can’t be used to create pages.
Both ìndex
and global
have a special meaning within the Syna fragment and using them separately might lead to issues.