<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Examples on Hugo Solstice Theme</title><link>https://webdev.eclipse.org/docs/hugo/examples/</link><description>Recent content in Examples on Hugo Solstice Theme</description><generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>webdev@eclipse-foundation.org (Christopher Guindon)</managingEditor><webMaster>webdev@eclipse-foundation.org (Christopher Guindon)</webMaster><atom:link href="https://webdev.eclipse.org/docs/hugo/examples/index.xml" rel="self" type="application/rss+xml"/><item><title>Basic jumbotron</title><link>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-basic/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-basic/</guid><description>&lt;p>A jumbotron renders automatically as soon as &lt;code>headline&lt;/code> is set in the page
front matter. Adding a &lt;code>tagline&lt;/code> provides a short supporting line beneath it.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">headline&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Hugo Solstice Theme&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">tagline&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;The open-source platform for Eclipse Foundation sites.&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Custom menu with direct links</title><link>https://webdev.eclipse.org/docs/hugo/examples/nav-direct/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/nav-direct/</guid><description>&lt;p>When a top-level menu entry has no children, it renders as a plain &lt;code>&amp;lt;a&amp;gt;&lt;/code> link
in the navigation bar. This is the right pattern for short menus where each
destination is a single page.&lt;/p>
&lt;p>The navigation above is driven by the &lt;code>demo_direct&lt;/code> menu defined in
&lt;code>menus.en.toml&lt;/code> and activated on this page with:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">main_menu&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;demo_direct&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-toml" data-lang="toml">&lt;span style="display:flex;">&lt;span>[[demo_direct]]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> name = &lt;span style="color:#c3e88d">&amp;#34;Home&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> url = &lt;span style="color:#c3e88d">&amp;#34;/&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> weight = &lt;span style="color:#ffc777">1&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>[[demo_direct]]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> name = &lt;span style="color:#c3e88d">&amp;#34;Examples&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> url = &lt;span style="color:#c3e88d">&amp;#34;/examples/&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> weight = &lt;span style="color:#ffc777">2&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>[[demo_direct]]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> name = &lt;span style="color:#c3e88d">&amp;#34;Changelog&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> url = &lt;span style="color:#c3e88d">&amp;#34;/changelog/&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> weight = &lt;span style="color:#ffc777">3&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Raw HTML in Markdown</title><link>https://webdev.eclipse.org/docs/hugo/examples/content-html/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/content-html/</guid><description>&lt;p>Hugo&amp;rsquo;s Goldmark renderer escapes or strips some raw HTML by default. The
&lt;code>html&lt;/code> shortcode passes its inner content through &lt;code>safeHTML&lt;/code>, letting you
embed any HTML you need without changing site-wide Markdown settings.&lt;/p>
&lt;h2 id="example">Example&lt;/h2>
&lt;div class="alert alert-info">
&lt;strong>Note:&lt;/strong> This alert block is raw HTML, rendered inside a
Markdown page through the &lt;code>html&lt;/code> shortcode.
&lt;/div>
&lt;h2 id="source">Source&lt;/h2>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-go-html-template" data-lang="go-html-template">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#444a73;font-style:italic">{{&lt;/span>&lt;span style="color:#c53b53">&amp;lt;&lt;/span> &lt;span style="color:#c099ff">html&lt;/span> &lt;span style="color:#c53b53">&amp;gt;&lt;/span>&lt;span style="color:#444a73;font-style:italic">}}&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&amp;lt;&lt;span style="color:#c099ff">div&lt;/span> &lt;span style="color:#82aaff">class&lt;/span>&lt;span style="color:#c3e88d;font-weight:bold">=&lt;/span>&lt;span style="color:#c3e88d">&amp;#34;alert alert-info&amp;#34;&lt;/span>&amp;gt;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &amp;lt;&lt;span style="color:#c099ff">strong&lt;/span>&amp;gt;Note:&amp;lt;/&lt;span style="color:#c099ff">strong&lt;/span>&amp;gt; This alert block is raw HTML, rendered inside a
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> Markdown page through the &amp;lt;&lt;span style="color:#c099ff">code&lt;/span>&amp;gt;html&amp;lt;/&lt;span style="color:#c099ff">code&lt;/span>&amp;gt; shortcode.
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&amp;lt;/&lt;span style="color:#c099ff">div&lt;/span>&amp;gt;
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#444a73;font-style:italic">{{&lt;/span>&lt;span style="color:#c53b53">&amp;lt;&lt;/span> &lt;span style="color:#c53b53">/&lt;/span>&lt;span style="color:#c099ff">html&lt;/span> &lt;span style="color:#c53b53">&amp;gt;&lt;/span>&lt;span style="color:#444a73;font-style:italic">}}&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;h2 id="when-to-use-it">When to use it&lt;/h2>
&lt;p>Reach for &lt;code>html&lt;/code> when the markup you want isn&amp;rsquo;t expressible in Markdown: a
wrapper with custom classes, a semantic element like &lt;code>&amp;lt;aside&amp;gt;&lt;/code>, or a
specific Bootstrap component. For repeated patterns, prefer a dedicated
shortcode or partial.&lt;/p></description></item><item><title>Custom menu with dropdowns</title><link>https://webdev.eclipse.org/docs/hugo/examples/nav-dropdown/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/nav-dropdown/</guid><description>&lt;p>When a top-level menu entry has children but none of those children have
children themselves, the theme renders it as a dropdown toggle button in the
navigation bar.&lt;/p>
&lt;p>The navigation above is driven by the &lt;code>demo_dropdown&lt;/code> menu defined in
&lt;code>menus.en.toml&lt;/code> and activated on this page with:&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">main_menu&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;demo_dropdown&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-toml" data-lang="toml">&lt;span style="display:flex;">&lt;span>[[demo_dropdown]]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> name = &lt;span style="color:#c3e88d">&amp;#34;Home&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> url = &lt;span style="color:#c3e88d">&amp;#34;/&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> weight = &lt;span style="color:#ffc777">1&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>[[demo_dropdown]]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> identifier = &lt;span style="color:#c3e88d">&amp;#34;demo-dropdown-docs&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> name = &lt;span style="color:#c3e88d">&amp;#34;Docs&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> url = &lt;span style="color:#c3e88d">&amp;#34;#&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> weight = &lt;span style="color:#ffc777">2&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>[[demo_dropdown]]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> parent = &lt;span style="color:#c3e88d">&amp;#34;demo-dropdown-docs&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> name = &lt;span style="color:#c3e88d">&amp;#34;Components&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> url = &lt;span style="color:#c3e88d">&amp;#34;/components/&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> weight = &lt;span style="color:#ffc777">1&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>[[demo_dropdown]]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> parent = &lt;span style="color:#c3e88d">&amp;#34;demo-dropdown-docs&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> name = &lt;span style="color:#c3e88d">&amp;#34;Front Matter&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> url = &lt;span style="color:#c3e88d">&amp;#34;/frontmatter/&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> weight = &lt;span style="color:#ffc777">2&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>[[demo_dropdown]]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> parent = &lt;span style="color:#c3e88d">&amp;#34;demo-dropdown-docs&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> name = &lt;span style="color:#c3e88d">&amp;#34;Configuration&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> url = &lt;span style="color:#c3e88d">&amp;#34;/configuration/&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> weight = &lt;span style="color:#ffc777">3&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Jumbotron with preheadline</title><link>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-preheadline/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-preheadline/</guid><description>&lt;p>&lt;code>preheadline&lt;/code> renders above the main headline in a smaller style. It is
typically used to label the type of page (announcement, event, section name,
etc.).&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">preheadline&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Announcement&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">headline&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Solstice 3.1 is now available&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">tagline&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;New components, refreshed documentation, and ESM support.&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Table of contents</title><link>https://webdev.eclipse.org/docs/hugo/examples/content-table-of-contents/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/content-table-of-contents/</guid><description>&lt;p>The &lt;code>table_of_contents&lt;/code> shortcode renders a heading followed by Hugo&amp;rsquo;s
automatically generated TOC for the current page. Hugo collects every
heading from the page body and produces a nested list of anchor links. Use
it on long-form documents — guides, specifications, runbooks — where readers
need a quick way to jump between sections.&lt;/p>
&lt;p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed imperdiet
tortor id rhoncus pulvinar. Suspendisse nec aliquam ante. Sed vel convallis
ex, ac elementum nisi. Nam eros lectus, tempus sit amet lorem at, laoreet
blandit enim. Vestibulum metus justo, venenatis mollis ex quis, pretium
ultricies orci.&lt;/p></description></item><item><title>Custom menu with a mega menu</title><link>https://webdev.eclipse.org/docs/hugo/examples/nav-mega/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/nav-mega/</guid><description>&lt;p>When a top-level menu entry has children that themselves have children, the
theme automatically promotes it to a mega menu: clicking the entry opens a
full-width panel where each second-level child becomes a column heading and
its third-level children become the links underneath.&lt;/p>
&lt;p>Each column heading accepts an optional Font Awesome icon via the &lt;code>pre&lt;/code>
property, which is rendered before the heading text.&lt;/p>
&lt;p>The navigation above is driven by the &lt;code>demo_mega&lt;/code> menu defined in
&lt;code>menus.en.toml&lt;/code> and activated on this page with:&lt;/p></description></item><item><title>Jumbotron with call-to-action links</title><link>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-links/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-links/</guid><description>&lt;p>Each entry in &lt;code>links&lt;/code> becomes a button in the jumbotron. Use &lt;code>class&lt;/code> to switch
between primary, default, or any other button style supplied by the theme.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">links&lt;/span>: [
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#c099ff">[href&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;/downloads/&amp;#34;&lt;/span>&lt;span style="color:#c099ff">, text&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Download&amp;#34;&lt;/span>&lt;span style="color:#c099ff">, class&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;btn btn-primary&amp;#34;&lt;/span>],
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#c099ff">[href&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;/changelog/&amp;#34;&lt;/span>&lt;span style="color:#c099ff">, text&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Release notes&amp;#34;&lt;/span>&lt;span style="color:#c099ff">, class&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;btn btn-default&amp;#34;&lt;/span>],
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>]
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Custom sidebar</title><link>https://webdev.eclipse.org/docs/hugo/examples/nav-sidebar/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/nav-sidebar/</guid><description>&lt;p>The sidebar partial reads from the &lt;code>sidebar&lt;/code> menu in the site configuration.
By default, it picks the section that matches the current page&amp;rsquo;s path. You
can override this for a single page by setting &lt;code>sidebar&lt;/code> in the front matter
to one or more identifiers from &lt;code>menus.toml&lt;/code>.&lt;/p>
&lt;p>Top-level entries become collapsible group headings. Their children are
rendered as plain links, unless those children also have children, in which
case the second level becomes a nested collapsible subgroup.&lt;/p></description></item><item><title>Jumbotron with custom content</title><link>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-custom-content/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-custom-content/</guid><description>&lt;p>&lt;code>custom_jumbotron&lt;/code> accepts raw HTML, which is rendered inside the jumbotron
between the headline and the optional links row. It is best used as an
alternative to &lt;code>tagline&lt;/code> when richer formatting is required.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">headline&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Solstice Summit 2026&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">custom_jumbotron&lt;/span>: |&lt;span style="color:#444a73">
&lt;/span>&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#444a73"> &amp;lt;p class=&amp;#34;margin-top-20&amp;#34;&amp;gt;&amp;lt;strong&amp;gt;May 19, 2026&amp;lt;/strong&amp;gt; &amp;amp;mdash; 8AM–11AM PST&amp;lt;/p&amp;gt;
&lt;/span>&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#444a73"> &amp;lt;p&amp;gt;Virtual event · Free registration&amp;lt;/p&amp;gt;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Jumbotron with constrained width</title><link>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-custom-width/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-custom-width/</guid><description>&lt;p>&lt;code>jumbotron_class&lt;/code> is applied to the inner column that wraps the headline,
tagline, and links. Use Bootstrap-style grid classes to constrain the
content to a portion of the container.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">jumbotron_class&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;col-md-16 col-lg-14&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Page without a breadcrumb</title><link>https://webdev.eclipse.org/docs/hugo/examples/nav-breadcrumb-hidden/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/nav-breadcrumb-hidden/</guid><description>&lt;p>Setting &lt;code>hide_breadcrumb: true&lt;/code> removes the &lt;code>&amp;lt;nav aria-label=&amp;quot;Breadcrumb&amp;quot;&amp;gt;&lt;/code>
block from the page. The page above has no breadcrumb between the jumbotron
and the main content.&lt;/p>
&lt;p>The same parameter is available at the site level (in &lt;code>config.toml&lt;/code>) if you
want to suppress breadcrumbs globally.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">hide_breadcrumb&lt;/span>: &lt;span style="color:#ffc777">true&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Custom breadcrumb label</title><link>https://webdev.eclipse.org/docs/hugo/examples/nav-breadcrumb-title/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/nav-breadcrumb-title/</guid><description>&lt;p>By default the breadcrumb uses each page&amp;rsquo;s title. Set &lt;code>breadcrumb_title&lt;/code> to
display a different label for the current page only — typically a shorter or
friendlier version. Values longer than 32 characters are truncated.&lt;/p>
&lt;p>Look at the breadcrumb above: this page&amp;rsquo;s title is &amp;ldquo;Custom breadcrumb
label&amp;rdquo; but the breadcrumb shows &lt;strong>Friendly name&lt;/strong>.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">breadcrumb_title&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Friendly name&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Jumbotron with custom background</title><link>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-custom-background/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-custom-background/</guid><description>&lt;p>&lt;code>jumbotron_background_class&lt;/code> controls the CSS class applied to the
&lt;code>&amp;lt;section&amp;gt;&lt;/code> wrapping the jumbotron. The theme ships with multiple &lt;code>bg-hero-*&lt;/code>
variants; you can also point to a project-specific class for a fully custom
look. This page combines the theme&amp;rsquo;s &lt;code>bg&lt;/code> scaffold with a project-specific
&lt;code>bg-example&lt;/code> class defined in &lt;code>docs.css&lt;/code> to render a black-to-orange gradient.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">jumbotron_background_class&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;bg bg-example&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item><item><title>Fully configured jumbotron</title><link>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-full/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>webdev@eclipse-foundation.org (Christopher Guindon)</author><guid>https://webdev.eclipse.org/docs/hugo/examples/jumbotron-full/</guid><description>&lt;p>This page combines &lt;code>preheadline&lt;/code>, &lt;code>headline&lt;/code>, &lt;code>tagline&lt;/code>, &lt;code>links&lt;/code>,
&lt;code>jumbotron_class&lt;/code>, and &lt;code>jumbotron_background_class&lt;/code> to demonstrate how all
the jumbotron parameters interact.&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#c8d3f5;background-color:#222436;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-yaml" data-lang="yaml">&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">preheadline&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Now available&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">headline&lt;/span>: &lt;span style="color:#c3e88d">&amp;#39;Hugo Solstice Theme &amp;lt;span class=&amp;#34;orange&amp;#34;&amp;gt;3.0.0&amp;lt;/span&amp;gt;&amp;#39;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">tagline&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;The official Hugo theme powering Eclipse Foundation sites.&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">links&lt;/span>: [
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#c099ff">[href&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;/downloads/&amp;#34;&lt;/span>&lt;span style="color:#c099ff">, text&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Download&amp;#34;&lt;/span>&lt;span style="color:#c099ff">, class&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;btn btn-primary&amp;#34;&lt;/span>],
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span> &lt;span style="color:#c099ff">[href&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;/changelog/&amp;#34;&lt;/span>&lt;span style="color:#c099ff">, text&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;Release notes&amp;#34;&lt;/span>&lt;span style="color:#c099ff">, class&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;btn btn-default&amp;#34;&lt;/span>],
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>]
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">jumbotron_background_class&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;bg bg-hero-1&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;span style="display:flex;">&lt;span>&lt;span style="color:#c099ff">jumbotron_class&lt;/span>: &lt;span style="color:#c3e88d">&amp;#34;col-md-20 col-lg-18&amp;#34;&lt;/span>
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div></description></item></channel></rss>