Freedom

Shortcodes #

Shortcodes are user-facing components that content authors can use directly within markdown files. They provide a simple way to embed complex HTML snippets without writing raw HTML.

Key Characteristics:

Example:

markdown
Check out my GitHub profile: {{< icon "github" "brands" >}}

Partials #

Partials are developer-facing template components used within Hugo layouts and other templates. They’re the building blocks for theme developers.

Key Characteristics:

Example:

go-html-template
{{ partial "widgets/breadcrumb.html" (dict "page" . "site" .Site) }}