<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>myDocsy – Content and Customization</title>
    <link>/docs/adding-content/</link>
    <description>Recent content in Content and Customization on myDocsy</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    
	  <atom:link href="/docs/adding-content/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Docs: Adding Content</title>
      <link>/docs/adding-content/content/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/content/</guid>
      <description>
        
        
        &lt;p&gt;So you&amp;rsquo;ve got a new Hugo website with Docsy, now it&amp;rsquo;s time to add some content! This page tells you how to use the theme to add and structure your site content.&lt;/p&gt;
&lt;h2 id=&#34;content-root-directory&#34;&gt;Content root directory&lt;/h2&gt;
&lt;p&gt;You add content for your site under the &lt;strong&gt;content root directory&lt;/strong&gt; of your Hugo site project - either &lt;code&gt;content/&lt;/code&gt; or a &lt;a href=&#34;/docs/language/&#34;&gt;language-specific&lt;/a&gt; root like &lt;code&gt;content/en/&lt;/code&gt;. The main exception here is static files that you don&amp;rsquo;t want built into your site: you can find out more about where you add these below in &lt;a href=&#34;#adding-static-content&#34;&gt;Adding static content&lt;/a&gt;. The files in your content root directory are typically grouped in subdirectories corresponding to your site&amp;rsquo;s sections and templates, which we&amp;rsquo;ll look at in &lt;a href=&#34;#content-sections-and-templates&#34;&gt;Content sections and templates&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can find out more about Hugo directory structure in &lt;a href=&#34;https://gohugo.io/getting-started/directory-structure/#directory-structure-explained&#34;&gt;Directory Structure Explained&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;content-sections-and-templates&#34;&gt;Content sections and templates&lt;/h2&gt;
&lt;p&gt;Hugo builds your site pages using the content files you provide plus any templates provided by your site&amp;rsquo;s theme. These templates (or &lt;em&gt;&amp;ldquo;layouts&amp;rdquo;&lt;/em&gt; in Hugo terminology) include things like your page&amp;rsquo;s headers, footers, navigation, and links to stylesheets: essentially, everything except your page&amp;rsquo;s specific content. The templates in turn can be made up of &lt;em&gt;partials&lt;/em&gt;: little reusable snippets of HTML for page elements like headers, search boxes, and more.&lt;/p&gt;
&lt;p&gt;Because most technical documentation sites have different sections for different types of content, the Docsy theme comes with the &lt;a href=&#34;https://github.com/google/docsy/tree/master/layouts&#34;&gt;following templates&lt;/a&gt; for top-level site sections that you might need:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/google/docsy/tree/master/layouts/docs&#34;&gt;&lt;code&gt;docs&lt;/code&gt;&lt;/a&gt; is for pages in your site&amp;rsquo;s Documentation section.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/google/docsy/tree/master/layouts/blog&#34;&gt;&lt;code&gt;blog&lt;/code&gt;&lt;/a&gt; is for pages in your site&amp;rsquo;s Blog.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com/google/docsy/tree/master/layouts/community&#34;&gt;&lt;code&gt;community&lt;/code&gt;&lt;/a&gt; is for your site&amp;rsquo;s Community page.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It also provides a &lt;a href=&#34;https://github.com/google/docsy/tree/master/layouts/_default&#34;&gt;default &amp;ldquo;landing page&amp;rdquo; type of template&lt;/a&gt; with the site header and footer, but no left nav, that you can use for any other section. In this site and our example site it&amp;rsquo;s used for the site &lt;a href=&#34;/&#34;&gt;home page&lt;/a&gt; and the &lt;a href=&#34;/about/&#34;&gt;About&lt;/a&gt; page.&lt;/p&gt;
&lt;p&gt;Each top-level &lt;strong&gt;section&lt;/strong&gt; in your site corresponds to a &lt;strong&gt;directory&lt;/strong&gt; in your site content root. Hugo automatically applies the appropriate &lt;strong&gt;template&lt;/strong&gt; for that section, depending on which folder the content is in. For example, this page is in the &lt;code&gt;docs&lt;/code&gt; subdirectory of the site&amp;rsquo;s content root directory &lt;code&gt;content/en/&lt;/code&gt;, so Hugo automatically applies the &lt;code&gt;docs&lt;/code&gt; template. You can override this by explicitly specifying a template or content type for a particular page.&lt;/p&gt;
&lt;p&gt;If you&amp;rsquo;ve copied the example site, you already have appropriately named top-level section directories for using Docsy&amp;rsquo;s templates, each with an index page ( &lt;code&gt;_index.md&lt;/code&gt; or &lt;code&gt;index.html&lt;/code&gt;) page for users to land on. These top-level sections also appear in the example site&amp;rsquo;s &lt;a href=&#34;/docs/adding-content/navigation/#top-level-menu&#34;&gt;top-level menu&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;custom-sections&#34;&gt;Custom sections&lt;/h3&gt;
&lt;p&gt;If you&amp;rsquo;ve copied the example site and &lt;em&gt;don&amp;rsquo;t&lt;/em&gt; want to use one of the provided content sections, just delete the appropriate content subdirectory. Similarly, if you want to add a top-level section, just add a new subdirectory, though you&amp;rsquo;ll need to specify the layout or content type explicitly in the &lt;a href=&#34;#page-frontmatter&#34;&gt;frontmatter&lt;/a&gt; of each page if you want to use any existing Docsy template other than the default one. For example, if you create a new directory &lt;code&gt;content/en/amazing&lt;/code&gt; and want one or more pages in that custom section to use Docsy&amp;rsquo;s &lt;code&gt;docs&lt;/code&gt; template, you add &lt;code&gt;type: docs&lt;/code&gt; to the frontmatter of each page:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;My amazing new section&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;weight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;type&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;docs&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;description&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;A special section with a docs layout.&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Alternatively, create your own page template for your new section in your project&amp;rsquo;s &lt;code&gt;layouts&lt;/code&gt; directory based on one of the existing templates.&lt;/p&gt;
&lt;p&gt;You can find out much more about how Hugo page layouts work in &lt;a href=&#34;https://gohugo.io/templates/&#34;&gt;Hugo Templates&lt;/a&gt;. The rest of this page tells you about how to add content and use each of Docsy&amp;rsquo;s templates.&lt;/p&gt;
&lt;h3 id=&#34;alternative-site-structure&#34;&gt;Alternative site structure&lt;/h3&gt;
&lt;p&gt;As noted above, by default your site has a home page (using the &lt;code&gt;_default&lt;/code&gt; layout), a docs section under &lt;code&gt;/docs/&lt;/code&gt;, a blog section under &lt;code&gt;/blog/&lt;/code&gt; and a community section under &lt;code&gt;/community/&lt;/code&gt;.   &lt;a href=&#34;https://gohugo.io/content-management/types/&#34;&gt;The type&lt;/a&gt; of each section (which determines the layout it uses) matches its directory name.&lt;/p&gt;
&lt;p&gt;In some cases, you may want to have a different directory structure, but still make use of Docsy&amp;rsquo;s layouts. A common example is for a &amp;ldquo;docs site&amp;rdquo;, where most of the pages (including the home page) use the docs layout, or perhaps you&amp;rsquo;d rather have a &lt;code&gt;/news/&lt;/code&gt; directory treated with the blog layout.&lt;/p&gt;
&lt;p&gt;Since Hugo 0.76, this has become practical without copying layouts to your site, or having to specify &lt;code&gt;type: blog&lt;/code&gt; on every single page by making use of &lt;a href=&#34;https://gohugo.io/content-management/front-matter/#target-specific-pages&#34;&gt;target specific cascading front matter&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For example, for the &lt;code&gt;/news/&lt;/code&gt; section, you can specify the following front matter in the index page which will change the type of the section and everything below it to &amp;ldquo;blog&amp;rdquo;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Latest News&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;linkTitle&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;News&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;menu&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;main&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;weight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;30&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;cascade&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;- &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;type&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;blog&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;If you want to create a &amp;ldquo;docs&amp;rdquo; site, specifying something like the following in the top level &lt;code&gt;_index.md&lt;/code&gt; will set all top level sections to be treated as &amp;ldquo;docs&amp;rdquo;, except for &amp;ldquo;news&amp;rdquo;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;My Wonderful Site&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;cascade&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;- &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;type&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;blog&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;toc_root&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;_target&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;path&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;/news/**&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;- &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;type&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;docs&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;_target&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;path&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;/**&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Note the addition of &lt;code&gt;toc_root&lt;/code&gt; here.  Setting that to true for a section causes it to be treated as a separate part of the site, with its own left hand navigation menu.&lt;/p&gt;
&lt;p&gt;An example docs-based site that uses this technique can be found at the &lt;a href=&#34;https://github.com/gwatts/mostlydocs/&#34;&gt;mostly docs&lt;/a&gt; repo.&lt;/p&gt;
&lt;h2 id=&#34;page-frontmatter&#34;&gt;Page frontmatter&lt;/h2&gt;
&lt;p&gt;Each page file in a Hugo site has metadata frontmatter that tells Hugo about the page. You specify page frontmatter in TOML, YAML, or JSON (our example site and this site use YAML). Use the frontmatter to specify the page title, description, creation date, link title, template, menu weighting, and even any resources such as images used by the page. You can see a complete list of possible page frontmatter in &lt;a href=&#34;https://gohugo.io/content-management/front-matter/&#34;&gt;Front Matter&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For example, here&amp;rsquo;s the frontmatter for this page:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Adding Content&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;linkTitle&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Adding Content&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;weight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;description&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;Add different types of content to your Docsy site.&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The minimum frontmatter you need to provide is a title: everything else is up to you! (though if you leave out the page weight your &lt;a href=&#34;/docs/adding-content/navigation&#34;&gt;navigation&lt;/a&gt; may get a little disorganized).&lt;/p&gt;
&lt;h2 id=&#34;page-contents-and-markup&#34;&gt;Page contents and markup&lt;/h2&gt;
&lt;p&gt;By default you create pages in a Docsy site as simple &lt;a href=&#34;https://gohugo.io/content-management/formats/&#34;&gt;Markdown or HTML files&lt;/a&gt; with &lt;a href=&#34;#page-frontmatter&#34;&gt;page frontmatter&lt;/a&gt;, as described above. Versions of Hugo before 0.60 use &lt;a href=&#34;https://github.com/russross/blackfriday&#34;&gt;BlackFriday&lt;/a&gt; as its Markdown parser. From 0.60, Hugo uses &lt;a href=&#34;https://github.com/yuin/goldmark/&#34;&gt;Goldmark&lt;/a&gt; as its Markdown parser by default.&lt;/p&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Tip&lt;/h4&gt;

    &lt;p&gt;If you&amp;rsquo;ve been using earlier versions of Hugo, you may need to make some small changes to your site to work with the current Markdown parser. In particular, if you cloned an earlier version of our example site, add the following to your &lt;code&gt;config.toml&lt;/code&gt; to allow Goldmark to render raw HTML as well as Markdown:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[markup]
  [markup.goldmark]
    [markup.goldmark.renderer]
      unsafe = true
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Alternatively, if you want to continue using Blackfriday, you can follow the instructions in the &lt;a href=&#34;https://gohugo.io/getting-started/configuration-markup#blackfriday&#34;&gt;Hugo documentation&lt;/a&gt; to change the Markdown parser.&lt;/p&gt;


&lt;/div&gt;

&lt;p&gt;In addition to your marked-up text, you can also use Hugo and Docsy&amp;rsquo;s &lt;a href=&#34;/docs/adding-content/shortcodes&#34;&gt;shortcodes&lt;/a&gt;: reusable chunks of HTML that you can use to quickly build your pages. Find out more about shortcodes in &lt;a href=&#34;/docs/adding-content/shortcodes&#34;&gt;Docsy Shortcodes&lt;/a&gt;.&lt;/p&gt;


&lt;div class=&#34;alert alert-info&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Note&lt;/h4&gt;

    &lt;p&gt;Hugo also supports adding content using other markups using &lt;a href=&#34;https://gohugo.io/content-management/formats/#additional-formats-through-external-helpers&#34;&gt;external parsers as helpers&lt;/a&gt;. For example, you can add content in RST using &lt;code&gt;rst2html&lt;/code&gt; as an external parser (though be aware this does not support all flavors of RST, such as Sphinx RST). Similarly, you can use &lt;code&gt;asciidoctor&lt;/code&gt; to parse Asciidoc files, or &lt;code&gt;pandoc&lt;/code&gt; for other formats.&lt;/p&gt;
&lt;p&gt;External parsers may not be suitable for use with all deployment options, as you&amp;rsquo;ll need to install the external parser and run Hugo yourself to generate your site (so, for example, you won&amp;rsquo;t be able to use &lt;a href=&#34;/docs/deployment/#deployment-with-netlify&#34;&gt;Netlify&amp;rsquo;s continuous deployment feature&lt;/a&gt;). In addition, adding an external parser may cause performance issues building larger sites.&lt;/p&gt;


&lt;/div&gt;

&lt;h3 id=&#34;working-with-links&#34;&gt;Working with links&lt;/h3&gt;
&lt;p&gt;Hugo lets you specify links using normal Markdown syntax, though remember that you need to specify links relative to your site&amp;rsquo;s root URL, and that relative URLs are left unchanged by Hugo in your site&amp;rsquo;s generated HTML.&lt;/p&gt;
&lt;p&gt;Alternatively you can use Hugo&amp;rsquo;s helper &lt;a href=&#34;https://gohugo.io/content-management/cross-references/&#34;&gt;&lt;code&gt;ref&lt;/code&gt; and &lt;code&gt;relref&lt;/code&gt; shortcodes&lt;/a&gt; for creating internal links that resolve to the correct URL. However, be aware this means your links will not appear as links at all if a user views your page outside your generated site, for example using the rendered Markdown feature in GitHub&amp;rsquo;s web UI.&lt;/p&gt;
&lt;p&gt;You can find (or add!) tips and gotchas for working with Hugo links in &lt;a href=&#34;/docs/best-practices/site-guidance&#34;&gt;Hugo Tips&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;content-style&#34;&gt;Content style&lt;/h3&gt;
&lt;p&gt;We don&amp;rsquo;t mandate any particular style for your page contents. However, if you&amp;rsquo;d like some guidance on how to write and format clear, concise technical documentation, we recommend the &lt;a href=&#34;https://developers.google.com/style/&#34;&gt;Google Developer Documentation Style Guide&lt;/a&gt;, particularly the &lt;a href=&#34;https://developers.google.com/style/highlights&#34;&gt;Style Guide Highlights&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;page-bundles&#34;&gt;Page bundles&lt;/h2&gt;
&lt;p&gt;You can create site pages as standalone files in their section or subsection directory, or as folders where the content is in the folder&amp;rsquo;s index page. Creating a folder for your page lets you &lt;a href=&#34;https://gohugo.io/content-management/page-bundles/&#34;&gt;bundle&lt;/a&gt; images and other resources together with the content.&lt;/p&gt;
&lt;p&gt;You can see examples of both approaches in this and our example site. For example, the source for this page is just a standalone file &lt;code&gt;/content/en/docs/adding-content.md&lt;/code&gt;. However the source for &lt;a href=&#34;/docs/adding-content/shortcodes/&#34;&gt;Docsy Shortcodes&lt;/a&gt; in this site lives in &lt;code&gt;/content/en/docs/adding-content/shortcodes/index.md&lt;/code&gt;, with the image resource used by the page in the same &lt;code&gt;/shortcodes/&lt;/code&gt; directory. In Hugo terminology, this is called a &lt;em&gt;leaf bundle&lt;/em&gt; because it&amp;rsquo;s a folder containing all the data for a single site page without any child pages (and uses &lt;code&gt;index.md&lt;/code&gt; without an underscore).&lt;/p&gt;
&lt;p&gt;You can find out much more about managing resources with Hugo bundles in &lt;a href=&#34;https://gohugo.io/content-management/page-bundles/&#34;&gt;Page Bundles&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;adding-docs-and-blog-posts&#34;&gt;Adding docs and blog posts&lt;/h2&gt;
&lt;p&gt;The template you&amp;rsquo;ll probably use most often is the &lt;a href=&#34;https://github.com/google/docsy/blob/master/layouts/docs/baseof.html&#34;&gt;&lt;code&gt;docs&lt;/code&gt; template&lt;/a&gt; (as used in this page) or the very similar &lt;a href=&#34;https://github.com/google/docsy/blob/master/layouts/blog/baseof.html&#34;&gt;&lt;code&gt;blog&lt;/code&gt; template&lt;/a&gt;. Both these templates include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;a left nav&lt;/li&gt;
&lt;li&gt;GitHub links (populated from your site config) for readers to edit the page or create issues&lt;/li&gt;
&lt;li&gt;a page menu&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;as well as the common header and footer used by all your site&amp;rsquo;s pages. Which template is applied depends on whether you&amp;rsquo;ve added the content to the &lt;code&gt;blog&lt;/code&gt; or &lt;code&gt;docs&lt;/code&gt; content directory. You can find out more about how the nav and page menu are created in &lt;a href=&#34;/docs/adding-content/navigation/&#34;&gt;Navigation and Search&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;organizing-your-documentation&#34;&gt;Organizing your documentation&lt;/h3&gt;
&lt;p&gt;While Docsy&amp;rsquo;s top-level sections let you create site sections for different types of content, you may also want to organize your docs content within your &lt;code&gt;docs&lt;/code&gt; section. For example, this site&amp;rsquo;s &lt;code&gt;docs&lt;/code&gt; section directory has multiple subdirectories for &lt;strong&gt;Getting Started&lt;/strong&gt;, &lt;strong&gt;Content and Customization&lt;/strong&gt;, and so on. Each subdirectory has an &lt;code&gt;_index.md&lt;/code&gt; (it could also be an &lt;code&gt;_index.html&lt;/code&gt;), which acts as a section index page and tells Hugo that the relevant directory is a subsection of your docs.&lt;/p&gt;
&lt;p&gt;Docsy&amp;rsquo;s &lt;code&gt;docs&lt;/code&gt; layout gives you a left nav pane with an autogenerated nested menu based on your &lt;code&gt;docs&lt;/code&gt; file structure. Each standalone page or subsection &lt;code&gt;_index.md&lt;/code&gt; or &lt;code&gt;_index.html&lt;/code&gt;  page in the &lt;code&gt;docs/&lt;/code&gt; directory gets a top level menu item, using the link name and &lt;code&gt;weight&lt;/code&gt; metadata from the page or index.&lt;/p&gt;
&lt;p&gt;To add docs to a subsection, just add your page files to the relevant subdirectory. Any pages that you add to a subsection in addition to the subsection index page will appear in a submenu (look to the left to see one in action!), again ordered by page &lt;code&gt;weight&lt;/code&gt;. Find out more about adding Docsy&amp;rsquo;s navigation metadata in &lt;a href=&#34;/docs/adding-content/navigation/&#34;&gt;Navigation and Search&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you&amp;rsquo;ve copied the example site, you&amp;rsquo;ll already have some suggested subdirectories in your &lt;code&gt;docs&lt;/code&gt; directory, with guidance for what types of content to put in them and some example Markdown pages. You can find out more about organizing your content with Docsy in &lt;a href=&#34;/docs/best-practices/organizing-content/&#34;&gt;Organizing Your Content&lt;/a&gt;.&lt;/p&gt;
&lt;h4 id=&#34;docs-section-landing-pages&#34;&gt;Docs section landing pages&lt;/h4&gt;
&lt;p&gt;By default a docs section landing page (the &lt;code&gt;_index.md&lt;/code&gt; or &lt;code&gt;_index.html&lt;/code&gt; in the section directory) uses a layout that adds a formatted list of links to the pages in the section, with their frontmatter descriptions. The &lt;a href=&#34;/docs/adding-content/&#34;&gt;Content and Customization&lt;/a&gt; landing page in this site is a good example.&lt;/p&gt;
&lt;p&gt;To display a simple bulleted list of links to the section&amp;rsquo;s pages instead, specify &lt;code&gt;simple_list: true&lt;/code&gt; in the landing page&amp;rsquo;s frontmatter:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
title: &amp;quot;Simple List Page&amp;quot;
simple_list: true
weight: 20
---
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;To display no links at all, specify &lt;code&gt;no_list: true&lt;/code&gt; in the landing page&amp;rsquo;s frontmatter:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
title: &amp;quot;No List Page&amp;quot;
no_list: true
weight: 20
---
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;organizing-your-blog-posts&#34;&gt;Organizing your blog posts&lt;/h3&gt;
&lt;p&gt;Docsy&amp;rsquo;s &lt;code&gt;blog&lt;/code&gt; layout also gives you a left nav menu (like the &lt;code&gt;docs&lt;/code&gt; layout), and a list-type index page for your blog that&amp;rsquo;s applied to &lt;code&gt;/blog/_index.md&lt;/code&gt; and automatically displays snippets of all your recent posts in reverse chronological order.&lt;/p&gt;
&lt;p&gt;To create different blog categories to organize your posts, create subfolders in &lt;code&gt;blog/&lt;/code&gt;. For instance, in our &lt;a href=&#34;https://github.com/google/docsy-example/tree/master/content/en/blog&#34;&gt;example site&lt;/a&gt; we have &lt;code&gt;news&lt;/code&gt; and &lt;code&gt;releases&lt;/code&gt;. Each category needs to have its own &lt;code&gt;_index.md&lt;/code&gt; or &lt;code&gt;_index.html&lt;/code&gt; landing page file specifying the category title for it to appear properly in the left nav and top-level blog landing page. Here&amp;rsquo;s the index page for &lt;code&gt;releases&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
title: &amp;quot;New Releases&amp;quot;
linkTitle: &amp;quot;Releases&amp;quot;
weight: 20
---
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;To add author and date information to blog posts, add them to the page frontmatter:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
date: 2018-10-06
title: &amp;quot;Easy documentation with Docsy&amp;quot;
linkTitle: &amp;quot;Announcing Docsy&amp;quot;
description: &amp;quot;The Docsy Hugo theme lets project maintainers and contributors focus on content, not on reinventing a website infrastructure from scratch&amp;quot;
author: Riona MacNamara
resources:
- src: &amp;quot;**.{png,jpg}&amp;quot;
  title: &amp;quot;Image #:counter&amp;quot;
  params:
    byline: &amp;quot;Photo: Riona MacNamara / CC-BY-CA&amp;quot;
---
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If you&amp;rsquo;ve copied the example site and you don&amp;rsquo;t want a blog section, or want to link to an external blog instead, just delete the &lt;code&gt;blog&lt;/code&gt; subdirectory.&lt;/p&gt;
&lt;h2 id=&#34;working-with-top-level-landing-pages&#34;&gt;Working with top-level landing pages.&lt;/h2&gt;
&lt;p&gt;Docsy&amp;rsquo;s &lt;a href=&#34;https://github.com/google/docsy/blob/master/layouts/docs/baseof.html&#34;&gt;default page template&lt;/a&gt; has no left nav and is useful for creating a home page for your site or other &amp;ldquo;landing&amp;rdquo; type pages.&lt;/p&gt;
&lt;h3 id=&#34;customizing-the-example-site-pages&#34;&gt;Customizing the example site pages&lt;/h3&gt;
&lt;p&gt;If you&amp;rsquo;ve copied the example site, you already have a simple site landing page in &lt;code&gt;content/en/_index.html&lt;/code&gt;. This is made up of Docsy&amp;rsquo;s provided Hugo shortcode &lt;a href=&#34;/docs/adding-content/shortcodes/#shortcode-blocks&#34;&gt;page blocks&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To customize the large landing image, which is in a &lt;a href=&#34;/docs/adding-content/shortcodes/#blockscover&#34;&gt;cover&lt;/a&gt; block, replace the &lt;code&gt;content/en/featured-background.jpg&lt;/code&gt; file in your project with your own image (it can be called whatever you like as long as it has &lt;code&gt;background&lt;/code&gt; in the file name). You can remove or add as many blocks as you like, as well as adding your own custom content.&lt;/p&gt;
&lt;p&gt;The example site also has an About page in &lt;code&gt;content/en/about/_index.html&lt;/code&gt; using the same Docsy template. Again, this is made up of &lt;a href=&#34;/docs/adding-content/shortcodes/#shortcode-blocks&#34;&gt;page blocks&lt;/a&gt;, including another background image in &lt;code&gt;content/en/about/featured-background.jpg&lt;/code&gt;. As with the site landing page, you can replace the image, remove or add blocks, or just add your own content.&lt;/p&gt;
&lt;h3 id=&#34;building-your-own-landing-pages&#34;&gt;Building your own landing pages&lt;/h3&gt;
&lt;p&gt;If you&amp;rsquo;ve just used the theme, you can still use all Docsy&amp;rsquo;s provided &lt;a href=&#34;/docs/adding-content/shortcodes/#shortcode-blocks&#34;&gt;page blocks&lt;/a&gt; (or any other content you want) to build your own landing pages in the same file locations.&lt;/p&gt;
&lt;h2 id=&#34;adding-a-community-page&#34;&gt;Adding a community page&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;community&lt;/code&gt; landing page template has boilerplate content that&amp;rsquo;s automatically filled in with the project name and community links specified in &lt;code&gt;config.toml&lt;/code&gt;, providing your users with quick links to resources that help them get involved in your project. The same links are also added by default to your site footer.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;links&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# End user relevant links. These will show up on left side of footer and in the community page if you have one.&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;links&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;user&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;name&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;User mailing list&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;url&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://example.org/mail&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fa fa-envelope&amp;#34;&lt;/span&gt;
        &lt;span style=&#34;color:#000&#34;&gt;desc&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Discussion and help from your fellow users&amp;#34;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;links&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;user&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;name&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Twitter&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;url&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://example.org/twitter&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fab fa-twitter&amp;#34;&lt;/span&gt;
        &lt;span style=&#34;color:#000&#34;&gt;desc&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Follow us on Twitter to get the latest news!&amp;#34;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;links&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;user&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;name&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Stack Overflow&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;url&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://example.org/stack&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fab fa-stack-overflow&amp;#34;&lt;/span&gt;
        &lt;span style=&#34;color:#000&#34;&gt;desc&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Practical questions and curated answers&amp;#34;&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# Developer relevant links. These will show up on right side of footer and in the community page if you have one.&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;links&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;developer&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;name&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;GitHub&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;url&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://github.com/google/docsy&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fab fa-github&amp;#34;&lt;/span&gt;
        &lt;span style=&#34;color:#000&#34;&gt;desc&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Development takes place here!&amp;#34;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;links&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;developer&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;name&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Slack&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;url&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://example.org/slack&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fab fa-slack&amp;#34;&lt;/span&gt;
        &lt;span style=&#34;color:#000&#34;&gt;desc&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Chat with other project developers&amp;#34;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;links&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;developer&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;name&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Developer mailing list&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;url&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://example.org/mail&amp;#34;&lt;/span&gt;
	&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fa fa-envelope&amp;#34;&lt;/span&gt;
        &lt;span style=&#34;color:#000&#34;&gt;desc&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Discuss development issues around the project&amp;#34;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;If you&amp;rsquo;re creating your own site and want to add a page using this template, add a &lt;code&gt;/community/_index.md&lt;/code&gt; file in your content root directory. If you&amp;rsquo;ve copied the example site and &lt;em&gt;don&amp;rsquo;t&lt;/em&gt; want a community page, just delete the &lt;code&gt;/content/en/community/&lt;/code&gt; directory in your project repo.&lt;/p&gt;
&lt;h2 id=&#34;adding-static-content&#34;&gt;Adding static content&lt;/h2&gt;
&lt;p&gt;You may want to serve some non-Hugo-built content along with your site: for example, if you have generated reference docs using Doxygen, Javadoc, or other doc generation tools.&lt;/p&gt;
&lt;p&gt;To add static content to be served &amp;ldquo;as-is&amp;rdquo;, just add the content as a folder and/or files in your site&amp;rsquo;s &lt;code&gt;static&lt;/code&gt; directory. When your site is deployed, content in this directory is served at the site root path. So, for example, if you have added content at &lt;code&gt;/static/reference/cpp/&lt;/code&gt;, users can access that content at &lt;code&gt;http://{server-url}/reference/cpp/&lt;/code&gt; and you can link to pages in this directory from other pages at &lt;code&gt;/reference/cpp/{file name}&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;You can also use this directory for other files used by your project, including image files. You can find out more about serving static files, including configuring multiple directories for static content, in &lt;a href=&#34;https://gohugo.io/content-management/static-files/&#34;&gt;Static Files&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;rss-feeds&#34;&gt;RSS feeds&lt;/h2&gt;
&lt;p&gt;Hugo will, by default, create an RSS feed for the home page and any section. For the main RSS feed you can control which sections to include by setting a site param in your &lt;code&gt;config.toml&lt;/code&gt;. This is the default configuration:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;rss_sections&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;blog&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;To disable all RSS feeds, add the following to your &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;disableKinds&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;RSS&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;sitemap&#34;&gt;Sitemap&lt;/h2&gt;
&lt;p&gt;Hugo creates a &lt;code&gt;sitemap.xml&lt;/code&gt; file for your generated site by default: for example, &lt;a href=&#34;/sitemap.xml&#34;&gt;here&amp;rsquo;s the sitemap&lt;/a&gt; for this site.&lt;/p&gt;
&lt;p&gt;You can configure the frequency with which your sitemap is updated, your sitemap filename, and the default page priority in your &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;sitemap&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;changefreq&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;monthly&amp;#34;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;filename&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;sitemap.xml&amp;#34;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;priority&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;0.5&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;To override any of these values for a given page, specify it in page frontmatter:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Adding Content&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;linkTitle&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Adding Content&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;weight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;description&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;Add different types of content to your Docsy site.&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;sitemap&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;priority&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;1.0&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;To learn more about configuring sitemaps, see &lt;a href=&#34;https://gohugo.io/templates/sitemap-template/&#34;&gt;Sitemap Template&lt;/a&gt;.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Look and Feel</title>
      <link>/docs/adding-content/lookandfeel/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/lookandfeel/</guid>
      <description>
        
        
        &lt;p&gt;By default, a site using Docsy has the theme&amp;rsquo;s default fonts, colors, and general look and feel. However, if you want your own color scheme (and you probably will!) you can very easily override the theme defaults with your own project-specific values - Hugo will look in your project files first when looking for information to build your site. Also because Docsy uses Bootstrap 4 and SCSS for styling, you can override just single values in its special SCSS project variables file, or do more serious customization by creating your own versions of entire SCSS files.&lt;/p&gt;
&lt;h2 id=&#34;color-palette-and-other-styles&#34;&gt;Color palette and other styles&lt;/h2&gt;
&lt;p&gt;To quickly change your site&amp;rsquo;s colors, add SCSS variable project overrides to &lt;code&gt;assets/scss/_variables_project.scss&lt;/code&gt;. A simple example changing the primary and secondary color to two shades of purple:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-scss&#34; data-lang=&#34;scss&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;$primary&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;#390040&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;$secondary&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;#A23B72&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;ul&gt;
&lt;li&gt;See &lt;code&gt;assets/scss/_variables.scss&lt;/code&gt; in the theme for color variables etc. that can be set to change the look and feel.&lt;/li&gt;
&lt;li&gt;Also see available variables in Bootstrap 4: &lt;a href=&#34;https://getbootstrap.com/docs/4.0/getting-started/theming/&#34;&gt;https://getbootstrap.com/docs/4.0/getting-started/theming/&lt;/a&gt; and &lt;a href=&#34;https://github.com/twbs/bootstrap/blob/v4-dev/scss/_variables.scss&#34;&gt;https://github.com/twbs/bootstrap/blob/v4-dev/scss/_variables.scss&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The theme has features such as rounded corners and gradient backgrounds enabled by default. These can also be toggled in your project variables file:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-scss&#34; data-lang=&#34;scss&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;$enable-gradients&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;true&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;$enable-rounded&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;true&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;$enable-shadows&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;true&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Tip&lt;/h4&gt;

    PostCSS (autoprefixing of CSS browser-prefixes) is not enabled when running in server mode (it is a little slow), so Chrome is the recommended choice for development.

&lt;/div&gt;

&lt;p&gt;Also note that any SCSS import will try the project before the theme, so you can &amp;ndash; as one example &amp;ndash; create your own &lt;code&gt;_assets/scss/_content.scss&lt;/code&gt; and get full control over how your Markdown content is styled.&lt;/p&gt;
&lt;h2 id=&#34;fonts&#34;&gt;Fonts&lt;/h2&gt;
&lt;p&gt;The theme uses &lt;a href=&#34;https://fonts.google.com/specimen/Open+Sans&#34;&gt;Open Sans&lt;/a&gt; as its primary font. To disable Google Fonts and use a system font, set this SCSS variable in &lt;code&gt;assets/scss/_variables_project.scss&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-scss&#34; data-lang=&#34;scss&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;$td-enable-google-fonts&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;false&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;To configure another Google Font:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-scss&#34; data-lang=&#34;scss&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;$google_font_name&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Open Sans&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;$google_font_family&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Open+Sans:300,300i,400,400i,700,700i&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Note that if you decide to go with a font with different weights (in the built-in configuration this is &lt;code&gt;300&lt;/code&gt; (light), &lt;code&gt;400&lt;/code&gt; (medium) and &lt;code&gt;700&lt;/code&gt; (bold)), you also need to adjust the weight related variables, i.e. variables starting with &lt;code&gt;$font-weight-&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&#34;css-utilities&#34;&gt;CSS utilities&lt;/h2&gt;
&lt;p&gt;For documentation of available CSS utility classes, see the &lt;a href=&#34;https://getbootstrap.com/&#34;&gt;Bootstrap Documentation&lt;/a&gt;. This theme adds very little on its own in this area. However, we have added some color state CSS classes that can be useful in a dynamic context:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;.-bg-&amp;lt;color&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;.-text-&amp;lt;color&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can use these classes, for example, to style your text in an appropriate color when you don&amp;rsquo;t know if the &lt;code&gt;primary&lt;/code&gt; color is dark or light, to ensure proper color contrast. They are also useful when you receive the color code as a &lt;a href=&#34;/docs/adding-content/shortcodes/&#34;&gt;shortcode&lt;/a&gt; parameter.&lt;/p&gt;
&lt;p&gt;The value of &lt;code&gt;&amp;lt;color&amp;gt;&lt;/code&gt; can be any of the color names, &lt;code&gt;primary&lt;/code&gt;, &lt;code&gt;white&lt;/code&gt;, &lt;code&gt;dark&lt;/code&gt;, &lt;code&gt;warning&lt;/code&gt;, &lt;code&gt;light&lt;/code&gt;, &lt;code&gt;success&lt;/code&gt;, &lt;code&gt;300&lt;/code&gt;, &lt;code&gt;blue&lt;/code&gt;, &lt;code&gt;orange&lt;/code&gt; etc.&lt;/p&gt;
&lt;p&gt;When you use &lt;code&gt;.-bg-&amp;lt;color&amp;gt;&lt;/code&gt;, the text colors will be adjusted to get proper contrast:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;-bg-primary p-3 display-4&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Background: Primary&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;-bg-200 p-3 display-4&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Background: Gray 200&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&#34;-bg-primary p-3 display-4 w-75&#34;&gt;Background: Primary&lt;/div&gt;
&lt;div class=&#34;-bg-200 p-3 display-4 mb-5 w-50 w-75&#34;&gt;Background: Gray 200&lt;/div&gt;
&lt;p&gt;&lt;code&gt;.-text-&amp;lt;color&amp;gt;&lt;/code&gt; sets the text color only:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;-text-blue pt-3 display-4&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Text: Blue&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class=&#34;-text-blue pt-3 display-4&#34;&gt;Text: Blue&lt;/div&gt;
&lt;h2 id=&#34;code-highlighting-with-chroma&#34;&gt;Code highlighting with Chroma&lt;/h2&gt;
&lt;p&gt;With Hugo version 0.60 and higher, you can choose from a range of code block highlight and colour styles using &lt;a href=&#34;https://github.com/alecthomas/chroma&#34;&gt;Chroma&lt;/a&gt; that are applied to your fenced code blocks by default. If you copied a recent &lt;code&gt;config.toml&lt;/code&gt; your site uses Tango (like this site), otherwise the Hugo default is Monokai. You can switch to any of the &lt;a href=&#34;https://xyproto.github.io/splash/docs/all.html&#34;&gt;available Chroma styles&lt;/a&gt; (including our Docsy default Tango) using your &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;markup&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;markup&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;goldmark&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;markup&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;goldmark&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;renderer&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
      &lt;span style=&#34;color:#000&#34;&gt;unsafe&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;markup&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;highlight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
      &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# See a complete list of available styles at https://xyproto.github.io/splash/docs/all.html&lt;/span&gt;
      &lt;span style=&#34;color:#000&#34;&gt;style&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;tango&amp;#34;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;By default code highlighting styles are not applied to code blocks without a specified language, instead you get Docsy&amp;rsquo;s default style of grey with black text. If you would like the code highlighting style to apply to all code blocks, even without a language, uncomment or add the following line under &lt;code&gt;[markup.highlight]&lt;/code&gt; in your &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# Uncomment if you want your chosen highlight style used for code blocks without a specified language&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;guessSyntax&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;true&amp;#34;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You can find out more about code highlighting in Hugo with Chroma in &lt;a href=&#34;https://gohugo.io/content-management/syntax-highlighting/&#34;&gt;Syntax Highlighting&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;code-highlighting-with-prism&#34;&gt;Code highlighting with Prism&lt;/h2&gt;
&lt;p&gt;Optionally, you can enable Prism syntax highlighting in your &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# Enable syntax highlighting and copy buttons on code blocks with Prism&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;prism_syntax_highlighting&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;When this option is enabled your site uses &lt;a href=&#34;https://prismjs.com/index.html&#34;&gt;Prism&lt;/a&gt; instead of Chroma for code block highlighting.&lt;/p&gt;
&lt;p&gt;Prism is a popular open source syntax highlighter which supports over 200 &lt;a href=&#34;https://prismjs.com/index.html#supported-languages&#34;&gt;languages&lt;/a&gt; and various &lt;a href=&#34;https://prismjs.com/index.html#plugins&#34;&gt;plugins&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Docsy includes JavaScript and CSS files for a basic Prism configuration, which supports:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Code blocks styled with the Prism &lt;code&gt;Default&lt;/code&gt; theme&lt;/li&gt;
&lt;li&gt;Copy to clipboard buttons on code blocks&lt;/li&gt;
&lt;li&gt;Syntax highlighting for a number of common languages, as specified in the following Prism download link:&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code class=&#34;language-none&#34; data-lang=&#34;none&#34;&gt;    https://prismjs.com/download.html#themes=prism&amp;amp;languages=markup+css+clike+javascript+bash+c+csharp+cpp+go+java+markdown+python+scss+sql+toml+yaml&amp;amp;plugins=toolbar+copy-to-clipboard    
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;code-blocks-with-no-language&#34;&gt;Code blocks with no language&lt;/h3&gt;
&lt;p&gt;By default Prism code highlighting styles are not applied to code blocks without a specified language, instead you get Docsy&amp;rsquo;s default style of grey with black text. To apply Prism styling to code blocks with no language or a language not supported by Prism, specify &lt;code&gt;none&lt;/code&gt; as the language after your triple backticks.&lt;/p&gt;
&lt;h3 id=&#34;extending-prism-for-additional-languages-or-plugins&#34;&gt;Extending Prism for additional languages or plugins&lt;/h3&gt;
&lt;p&gt;If the included Prism configuration is not sufficient for your requirements, and you want to use additional languages or plugins you can replace the included files with your own.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Download your own Prism JS and CSS files from &lt;a href=&#34;https://prismjs.com/download.html&#34;&gt;https://prismjs.com/download.html&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Replace the included Prism JS and CSS with the files you downloaded:
&lt;ul&gt;
&lt;li&gt;Copy the Javascript file to &lt;code&gt;static/js/prism.js&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Copy the CSS file to &lt;code&gt;static/css/prism.css&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&#34;latex-support-with-katex&#34;&gt;\(\LaTeX\) support with \(\KaTeX\)&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://www.latex-project.org/&#34;&gt;\(\LaTeX\)&lt;/a&gt; is a high-quality typesetting system for the production of technical and scientific documentation. Due to its excellent math typesetting capabilities, \(\TeX\) became the de facto standard for the communication and publication of scientific documents, especially if these documents contain a lot of mathematical formulae. Designed and mostly written by Donald Knuth, the initial version was released in 1978. Dating back that far, \(\LaTeX\) has &lt;code&gt;pdf&lt;/code&gt; as its primary output target and is not particularly well suited for producing HTML output for the Web. Fortunately, with &lt;a href=&#34;https://katex.org/&#34;&gt;\(\KaTeX\)&lt;/a&gt; there exists a fast and easy-to-use JavaScript library for \(\TeX\) math rendering on the web, which was integrated into the Docsy theme.&lt;/p&gt;
&lt;p&gt;With \(\KaTeX\) support enabled in Docsy, you can include complex mathematical formulae into your web page, either inline or centred on its own line. Since \(\KaTeX\) relies on server side rendering, it produces the same output regardless of your browser or your environment. Formulae can be shown either inline or in display mode:&lt;/p&gt;
&lt;h3 id=&#34;inline-formulae&#34;&gt;Inline formulae&lt;/h3&gt;
&lt;p&gt;The following code sample produces a text line with three inline formulae:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-tex&#34; data-lang=&#34;tex&#34;&gt;When &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;(a &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\ne&lt;/span&gt; 0&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;), there are two solutions to &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;(ax2 + bx + c= 0&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;) and they are &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;(x = &lt;span style=&#34;color:#204a87&#34;&gt;{&lt;/span&gt;-b &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\pm&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\sqrt&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt;{&lt;/span&gt;b&lt;span style=&#34;color:#204a87&#34;&gt;^&lt;/span&gt;2-4ac&lt;span style=&#34;color:#204a87&#34;&gt;}&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\over&lt;/span&gt; 2a&lt;span style=&#34;color:#204a87&#34;&gt;}&lt;/span&gt;.&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;)
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;When \(a \ne 0\), there are two solutions to \(ax2 + bx + c= 0\) and they are \(x = {-b \pm \sqrt{b^2-4ac} \over 2a}.\)&lt;/p&gt;
&lt;h3 id=&#34;formulae-in-display-mode&#34;&gt;Formulae in display mode&lt;/h3&gt;
&lt;p&gt;The following code sample produces an introductory text line followed by a formula numbered as &lt;code&gt;(1)&lt;/code&gt; residing on her own line:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-tex&#34; data-lang=&#34;tex&#34;&gt;The probability of getting &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;(k&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;) heads when flipping &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;(n&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;\\&lt;/span&gt;) coins is:
&lt;span style=&#34;color:#4e9a06&#34;&gt;$$&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;\tag&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;*&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt;{&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;)&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt;} P&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt;E&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;)&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt; {n &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;\choose&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt; k} p^k &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt;p&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;)&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt;^{n&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color:#204a87&#34;&gt;k}&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;$$&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The probability of getting \(k\) heads when flipping \(n\) coins is:
$$\tag*{(1)}  P(E) = {n \choose k} p^k (1-p)^{n-k}$$&lt;/p&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Tip&lt;/h4&gt;

    This &lt;a href=&#34;https://en.wikibooks.org/wiki/LaTeX/Mathematics&#34;&gt;wiki page&lt;/a&gt; provides in-depth information about typesetting mathematical formulae using the \(\LaTeX\) typesetting system.

&lt;/div&gt;

&lt;h3 id=&#34;enabling-and-configuring-latex-support&#34;&gt;Enabling and configuring \(\LaTeX\) support&lt;/h3&gt;
&lt;p&gt;To enable/disable \(\KaTeX\) support inside the Docsy theme, update &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;katex&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;enable&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Additionally, you can customize various \(\KaTeX\) options inside &lt;code&gt;config.toml&lt;/code&gt;, if needed:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;katex&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# enable/disable KaTeX support&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;enable&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# Element(s) scanned by auto render extension. Default: document.body&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;html_dom_element&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;document.body&amp;#34;&lt;/span&gt;

&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;katex&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;options&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# If true (the default), KaTeX will throw a ParseError when it encounters an&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# unsupported command or invalid LaTeX. If false, KaTeX will render unsupported&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# commands as text, and render invalid LaTeX as its source code with hover text&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# giving the error, in the color given by errorColor.&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;throwOnError&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;false&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;errorColor&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;#CD5C5C&amp;#34;&lt;/span&gt;

&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# This is a list of delimiters to look for math, processed in the same order as&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# the list. Each delimiter has three properties:&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;#   left:    A string which starts the math expression (i.e. the left delimiter).&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;#   right:   A string which ends the math expression (i.e. the right delimiter).&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;#   display: Whether math in the expression should be rendered in display mode.&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;katex&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;options&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;delimiters&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;left&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;$$&amp;#34;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;right&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;$$&amp;#34;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;display&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;katex&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;options&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;delimiters&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;left&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;$&amp;#34;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;right&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;$&amp;#34;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;display&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;false&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;katex&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;options&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;delimiters&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;left&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;\\(&amp;#34;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;right&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;\\)&amp;#34;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;display&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;false&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;katex&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;options&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;delimiters&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]]&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;left&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;\\[&amp;#34;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;right&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#39;\\]&amp;#39;&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;display&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For a complete list of options and their detailed description, have a look at the documentation of \({\KaTeX}&amp;rsquo;s\) &lt;a href=&#34;https://katex.org/docs/autorender.html#api&#34;&gt;Rendering API options&lt;/a&gt; and of \({\KaTeX}&amp;rsquo;s\) &lt;a href=&#34;https://katex.org/docs/options.html&#34;&gt;configuration options&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;display-of-chemical-equations-and-physical-units&#34;&gt;Display of Chemical Equations and Physical Units&lt;/h3&gt;
&lt;p&gt;&lt;a href=&#34;https://www.ctan.org/pkg/mhchem&#34;&gt;mhchem&lt;/a&gt; is a \(\LaTeX\) package for typesetting chemical molecular formulae and equations. Fortunately, \(\KaTeX\) provides the &lt;code&gt;mhchem&lt;/code&gt; &lt;a href=&#34;https://github.com/KaTeX/KaTeX/tree/master/contrib/mhchem&#34;&gt;extension&lt;/a&gt; that makes the &lt;code&gt;mhchem&lt;/code&gt; package accessible when authoring content for the web. Since this extension was integrated into the Docsy theme, you can write beautiful chemical equations easily once &lt;code&gt;mhchem&lt;/code&gt; support is enabled inside your &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;katex&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;enable&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;

&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;katex&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;mhchem&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;enable&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;With &lt;code&gt;mhchem&lt;/code&gt; extension enabled, you can easily include chemical equations into your page. The equations can be shown either inline or can reside on its own line. The following code sample produces a text line including a chemical equation:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-mhchem&#34; data-lang=&#34;mhchem&#34;&gt;*Precipitation of barium sulfate:* \\(\ce{SO4^2- + Ba^2+ -&amp;gt; BaSO4 v}\\)
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;em&gt;Precipitation of barium sulfate:&lt;/em&gt; \(\ce{SO4^2- + Ba^2+ -&amp;gt; BaSO4 v}\)&lt;/p&gt;
&lt;p&gt;More complex equations, like the one shown in the code sample below, should be displayed on their own line:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-mhchem&#34; data-lang=&#34;mhchem&#34;&gt;$$\tag*{(2)} \ce{Zn^2+  &amp;lt;=&amp;gt;[+ 2OH-][+ 2H+]  $\underset{\text{amphoteric hydroxide}}{\ce{Zn(OH)2 v}}$  &amp;lt;=&amp;gt;[+ 2OH-][+ 2H+]  $\underset{\text{tetrahydroxozincate}}{\ce{[Zn(OH)4]^2-}}$}$$
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;$$\tag*{(2)} \ce{Zn^2+  &amp;lt;=&amp;gt;[+ 2OH-][+ 2H+]  $\underset{\text{amphoteric hydroxide}}{\ce{Zn(OH)2 v}}$  &amp;lt;=&amp;gt;[+ 2OH-][+ 2H+]  $\underset{\text{tetrahydroxozincate}}{\ce{[Zn(OH)4]^2-}}$}$$&lt;/p&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Tip&lt;/h4&gt;

    The &lt;a href=&#34;https://mhchem.github.io/MathJax-mhchem/&#34;&gt;manual&lt;/a&gt; for mchem’s input syntax provides in-depth information about typesetting chemical formulae and physical units using the &lt;code&gt;mhchem&lt;/code&gt; tool.

&lt;/div&gt;

&lt;p&gt;Use of &lt;code&gt;mhchem&lt;/code&gt; is not limited to the authoring of chemical equations, using the included &lt;code&gt;\pu&lt;/code&gt; command, pretty looking physical units can be written with ease, too. The following code sample produces two text lines with four numbers plus their corresponding physical units:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-mhchem&#34; data-lang=&#34;mhchem&#34;&gt;* Scientific number notation: \\(\pu{1.2e3 kJ}\\) or \\(\pu{1.2E3 kJ}\\) \\
* Divisions: \\(\pu{123 kJ/mol}\\) or \\(\pu{123 kJ//mol}\\)
&lt;/code&gt;&lt;/pre&gt;&lt;ul&gt;
&lt;li&gt;Scientific number notation: \(\pu{1.2e3 kJ}\) or \(\pu{1.2E3 kJ}\)&lt;/li&gt;
&lt;li&gt;Divisions: \(\pu{123 kJ/mol}\) or \(\pu{123 kJ//mol}\)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For a complete list of options when authoring physical units, have a look at the &lt;a href=&#34;https://mhchem.github.io/MathJax-mhchem/#pu&#34;&gt;section&lt;/a&gt; on physical units in the &lt;code&gt;mhchem&lt;/code&gt; documentation.&lt;/p&gt;
&lt;h2 id=&#34;diagrams-with-mermaid&#34;&gt;Diagrams with Mermaid&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://mermaid-js.github.io&#34;&gt;Mermaid&lt;/a&gt; is a Javascript library for rendering simple text definitions to useful diagrams in the browser.  It can generate a variety of different diagram types, including flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, user journey diagrams, Gantt charts and pie charts.&lt;/p&gt;
&lt;p&gt;With Mermaid support enabled in Docsy, you can include the text definition of a Mermaid diagram inside a code block, and it will automatically be rendered by the browser as soon as the page loads.&lt;/p&gt;
&lt;p&gt;The great advantage of this is anyone who can edit the page can now edit the diagram - no more hunting for the original tools and version to make a new edit.&lt;/p&gt;
&lt;p&gt;For example, the following defines a simple flowchart:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```mermaid
graph LR
  Start --&amp;gt; Need{&amp;quot;Do I need diagrams&amp;quot;}
  Need -- No --&amp;gt; Off[&amp;quot;Set params.mermaid.enable = false&amp;quot;]
  Need -- Yes --&amp;gt; HaveFun[&amp;quot;Great!  Enjoy!&amp;quot;]
```
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Automatically renders to:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-mermaid&#34; data-lang=&#34;mermaid&#34;&gt;graph LR
  Start --&amp;gt; Need{&amp;quot;Do I need diagrams&amp;quot;}
  Need -- No --&amp;gt; Off[&amp;quot;Set params.mermaid.enable = false&amp;quot;]
  Need -- Yes --&amp;gt; HaveFun[&amp;quot;Great!  Enjoy!&amp;quot;]

&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;To enable/disable Mermaid, update &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;mermaid&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;enable&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You also need to disable the &lt;code&gt;guessSyntax&lt;/code&gt; from markup highlighting in &lt;code&gt;config.toml&lt;/code&gt;  for Mermaid to work:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;markup&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;markup&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;highlight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
      &lt;span style=&#34;color:#000&#34;&gt;guessSyntax&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;false&amp;#34;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You can also update settings for Mermaid, such as themes, padding, etc:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;mermaid&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;enable&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;theme&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;neutral&amp;#34;&lt;/span&gt;

&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;mermaid&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;flowchart&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;diagramPadding&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;6&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;See the &lt;a href=&#34;https://mermaid-js.github.io/mermaid/#/Setup?id=mermaidapi-configuration-defaults&#34;&gt;Mermaid documentation&lt;/a&gt; for a list of defaults that can be overridden.&lt;/p&gt;
&lt;p&gt;Settings can also be overridden on a per-diagram basis by making use of the &lt;code&gt;%%init%%&lt;/code&gt; header at the start of the diagram definition.  See the &lt;a href=&#34;https://mermaid-js.github.io/mermaid/#/theming?id=themes-at-the-local-or-current-level&#34;&gt;Mermaid theming documentation&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;uml-diagrams-with-plantuml&#34;&gt;UML Diagrams with PlantUML&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://plantuml.com/en/&#34;&gt;PlantUML&lt;/a&gt; is an alternative to Mermaid that lets you quickly create UML diagrams, including sequence diagrams, use case diagrams, and state diagrams. Unlike Mermaid diagrams, which are entirely rendered in the browser, PlantUML uses a PlantUML server to create diagrams. You can use the provided default demo server (not recommended for production use), or run a server yourself. PlantUML offers a wider range of image types than Mermaid, so may be a better choice for some use cases.&lt;/p&gt;
&lt;p&gt;Diagrams are defined using a simple and intuitive language. (&lt;a href=&#34;https://plantuml.com/en/guide&#34;&gt;see PlantUML Language Reference Guide&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;The following example shows a use case diagram:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;```plantuml
participant participant as Foo
actor       actor       as Foo1
boundary    boundary    as Foo2
control     control     as Foo3
entity      entity      as Foo4
database    database    as Foo5
collections collections as Foo6
queue       queue       as Foo7
Foo -&amp;gt; Foo1 : To actor 
Foo -&amp;gt; Foo2 : To boundary
Foo -&amp;gt; Foo3 : To control
Foo -&amp;gt; Foo4 : To entity
Foo -&amp;gt; Foo5 : To database
Foo -&amp;gt; Foo6 : To collections
Foo -&amp;gt; Foo7: To queue
```
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Automatically renders to:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&#34;language-plantuml&#34; data-lang=&#34;plantuml&#34;&gt;participant participant as Foo
actor       actor       as Foo1
boundary    boundary    as Foo2
control     control     as Foo3
entity      entity      as Foo4
database    database    as Foo5
collections collections as Foo6
queue       queue       as Foo7
Foo -&amp;gt; Foo1 : To actor 
Foo -&amp;gt; Foo2 : To boundary
Foo -&amp;gt; Foo3 : To control
Foo -&amp;gt; Foo4 : To entity
Foo -&amp;gt; Foo5 : To database
Foo -&amp;gt; Foo6 : To collections
Foo -&amp;gt; Foo7: To queue
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;To enable/disable PlantUML, update &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[params.plantuml]
enable = true
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Other optional settings are:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[params.plantuml]
enable = true
theme = &amp;quot;default&amp;quot;

#Set url to plantuml server 
#default is http://www.plantuml.com/plantuml/svg/
svg_image_url = &amp;quot;https://www.plantuml.com/plantuml/svg/&amp;quot;

&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;customizing-templates&#34;&gt;Customizing templates&lt;/h2&gt;
&lt;h3 id=&#34;add-code-to-head-or-before-body-end&#34;&gt;Add code to head or before body end&lt;/h3&gt;
&lt;p&gt;If you need to add some code (CSS import, cookie consent, or similar) to the &lt;code&gt;head&lt;/code&gt; section on every page, add the &lt;code&gt;head-end.html&lt;/code&gt; partial to your project:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;layouts/partials/hooks/head-end.html
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;And add the code you need in that file. Your partial code is automatically included just before the end of the theme partial &lt;a href=&#34;https://github.com/google/docsy/blob/master/layouts/partials/head.html&#34;&gt;&lt;code&gt;head.html&lt;/code&gt;&lt;/a&gt;. The theme version of &lt;a href=&#34;https://github.com/google/docsy/blob/master/layouts/partials/hooks/head-end.html&#34;&gt;&lt;code&gt;head-end.html&lt;/code&gt;&lt;/a&gt; is empty.&lt;/p&gt;
&lt;p&gt;Similarly, if you want to add some code right before the &lt;code&gt;body&lt;/code&gt; end, create your own version of the following file:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;layouts/partials/hooks/body-end.html
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Any code in this file is included automatically at the end of the theme partial &lt;a href=&#34;https://github.com/google/docsy/blob/master/layouts/partials/head.html&#34;&gt;&lt;code&gt;scripts.html&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Both &lt;code&gt;head.html&lt;/code&gt; and &lt;code&gt;scripts.html&lt;/code&gt; are then used to build Docsy&amp;rsquo;s &lt;a href=&#34;https://github.com/google/docsy/blob/master/layouts/_default/baseof.html&#34;&gt;base page layout&lt;/a&gt;, which is used by all the other page templates:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;&amp;lt;!doctype html&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;html&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;lang&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;{{ .Site.Language.Lang }}&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;no-js&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;head&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    {{ partial &amp;#34;head.html&amp;#34; . }}
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;head&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;body&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;td-{{ .Kind }}&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
      {{ partial &amp;#34;navbar.html&amp;#34; . }}
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;container-fluid td-default td-outer&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
      &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;main&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;role&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;main&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;td-main&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
        {{ block &amp;#34;main&amp;#34; . }}{{ end }}
      &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;main&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
      {{ partial &amp;#34;footer.html&amp;#34; . }}
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    {{ partialCached &amp;#34;scripts.html&amp;#34; . }}
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;body&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;html&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
      </description>
    </item>
    
    <item>
      <title>Docs: Navigation and Search</title>
      <link>/docs/adding-content/navigation/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/navigation/</guid>
      <description>
        
        
        &lt;h2 id=&#34;top-level-menu&#34;&gt;Top-level menu&lt;/h2&gt;
&lt;p&gt;The top level menu (the one that appears in the top navigation bar for the entire site) uses your site&amp;rsquo;s &lt;a href=&#34;https://gohugo.io/content-management/menus/&#34;&gt;&lt;code&gt;main&lt;/code&gt; menu&lt;/a&gt;. All Hugo sites have a &lt;code&gt;main&lt;/code&gt; menu array of menu entries, accessible via the &lt;code&gt;.Site.Menus&lt;/code&gt; site variable and populatable via page front matter or your site&amp;rsquo;s &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;To add a page or section to this menu, add it to the site&amp;rsquo;s &lt;code&gt;main&lt;/code&gt; menu in either &lt;code&gt;config.toml&lt;/code&gt; or in the destination page&amp;rsquo;s front matter (in &lt;code&gt;_index.md&lt;/code&gt; or &lt;code&gt;_index.html&lt;/code&gt; for a section, as that&amp;rsquo;s the section landing page). For example, here&amp;rsquo;s how we added the Documentation section landing page to the main menu in this site:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Welcome to Docsy&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;linkTitle&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Documentation&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;menu&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;main&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;weight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;20&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;pre&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;&amp;lt;i class=&amp;#39;fas fa-book&amp;#39;&amp;gt;&amp;lt;/i&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The menu is ordered from left to right by page &lt;code&gt;weight&lt;/code&gt;. So, for example, a section index or page with &lt;code&gt;weight: 30&lt;/code&gt; would appear after the Documentation section in the menu, while one with &lt;code&gt;weight: 10&lt;/code&gt; would appear before it.&lt;/p&gt;
&lt;p&gt;If you want to add a link to an external site to this menu, add it in &lt;code&gt;config.toml&lt;/code&gt;, specifying the &lt;code&gt;weight&lt;/code&gt;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;menu.main]]&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;name = &amp;#34;GitHub&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;weight = 50&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;url = &amp;#34;https://github.com/google/docsy/&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;adding-icons-to-the-top-level-menu&#34;&gt;Adding icons to the top-level menu&lt;/h3&gt;
&lt;p&gt;As described in the &lt;a href=&#34;https://gohugo.io/content-management/menus/#add-non-content-entries-to-a-menu&#34;&gt;Hugo docs&lt;/a&gt;, you can add icons to the top-level menu by using the pre and/or post parameter for main menu items defined in your site&amp;rsquo;s &lt;code&gt;config.toml&lt;/code&gt; or via page front matter. For example, the following configuration adds the GitHub icon to the GitHub menu item, and a &lt;strong&gt;New!&lt;/strong&gt; alert to indicate that this is a new addition to the menu.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;menu.main]]&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;name = &amp;#34;GitHub&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;weight = 50&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;url = &amp;#34;https://github.com/google/docsy/&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;pre = &amp;#34;&amp;lt;i class=&amp;#39;fab fa-github&amp;#39;&amp;gt;&amp;lt;/i&amp;gt;&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;post = &amp;#34;&amp;lt;span class=&amp;#39;alert&amp;#39;&amp;gt;New!&amp;lt;/span&amp;gt;&amp;#34; &lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You can find a complete list of icons to use in the &lt;a href=&#34;https://fontawesome.com/icons?d=gallery&amp;amp;p=2&#34;&gt;FontAwesome documentation&lt;/a&gt;. Docsy includes the free FontAwesome icons by default.&lt;/p&gt;
&lt;h3 id=&#34;adding-a-version-drop-down&#34;&gt;Adding a version drop-down&lt;/h3&gt;
&lt;p&gt;If you add some &lt;code&gt;[params.versions]&lt;/code&gt; in &lt;code&gt;config.toml&lt;/code&gt;, the Docsy theme adds a
version selector drop down to the top-level menu.&lt;/p&gt;
&lt;p&gt;You can find out more in the guide to
&lt;a href=&#34;/docs/adding-content/versioning/&#34;&gt;versioning your docs&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;adding-a-language-drop-down&#34;&gt;Adding a language drop-down&lt;/h3&gt;
&lt;p&gt;If you configure more than one language in &lt;code&gt;config.toml&lt;/code&gt;, the Docsy theme adds a language selector drop down to the top-level menu. Selecting a language takes the user to the translated version of the current page, or the home page for the given language.&lt;/p&gt;
&lt;p&gt;You can find out more in &lt;a href=&#34;/docs/language/&#34;&gt;Multi-language support&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;section-menu&#34;&gt;Section menu&lt;/h2&gt;
&lt;p&gt;The section menu, as shown in the left side of the &lt;code&gt;docs&lt;/code&gt; section, is automatically built from the &lt;code&gt;content&lt;/code&gt; tree. Like the top-level menu, it is ordered by page or section index &lt;code&gt;weight&lt;/code&gt; (or by page creation &lt;code&gt;date&lt;/code&gt; if &lt;code&gt;weight&lt;/code&gt; is not set), with the page or index&amp;rsquo;s &lt;code&gt;Title&lt;/code&gt;, or &lt;code&gt;linkTitle&lt;/code&gt; if different, as its link title in the menu. If a section subfolder has pages other than &lt;code&gt;_index.md&lt;/code&gt; or &lt;code&gt;_index.html&lt;/code&gt;, those pages will appear as a submenu, again ordered by &lt;code&gt;weight&lt;/code&gt;. For example, here&amp;rsquo;s the metadata for this page showing its &lt;code&gt;weight&lt;/code&gt; and &lt;code&gt;title&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Navigation and Search&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;linkTitle&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Navigation and Search&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;date&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;2017-01-05&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;weight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;3&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;description&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;Customize site navigation and search for your Docsy site.&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;To hide a page or section from the menu, set &lt;code&gt;toc_hide: true&lt;/code&gt; in front matter.&lt;/p&gt;
&lt;h3 id=&#34;section-menu-options&#34;&gt;Section menu options&lt;/h3&gt;
&lt;p&gt;By default, the section menu shows the current section fully expanded all the way down. This may make the left nav too long and difficult to scan for bigger sites. Try setting site parameter &lt;code&gt;ui.sidebar_menu_compact = true&lt;/code&gt; in &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;With the compact menu (&lt;code&gt;.ui.sidebar_menu_compact = true&lt;/code&gt;), only the current page&amp;rsquo;s ancestors, siblings and direct descendants are shown. You can use the optional parameter &lt;code&gt;.ui.ul_show&lt;/code&gt; to set a desired menu depth to always be visible. For example, with &lt;code&gt;.ui.ul_show = 1&lt;/code&gt; the first menu level is always displayed.&lt;/p&gt;
&lt;p&gt;As well as the completely expanded and compact menu options, you can also create a foldable menu by setting the site parameter &lt;code&gt;ui.sidebar_menu_foldable = true&lt;/code&gt; in &lt;code&gt;config.toml&lt;/code&gt;. The foldable menu lets users expand and collapse menu sections by toggling arrow icons beside the section parents in the menu.&lt;/p&gt;
&lt;p&gt;On large sites (default: &amp;gt; 2000 pages) the section menu is not generated for each page, but cached for the whole section. The HTML classes for marking the active menu item (and menu path) are then set using JS. You can adjust the limit for activating the cached section menu with the optional parameter &lt;code&gt;.ui.sidebar_cache_limit&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&#34;add-icons-to-the-section-menu&#34;&gt;Add icons to the section menu&lt;/h3&gt;
&lt;p&gt;You can add icons to the section menu in the sidebar by setting the &lt;code&gt;icon&lt;/code&gt; parameter in the page front matter (e.g. &lt;code&gt;icon: fas fa-tools&lt;/code&gt;).&lt;/p&gt;
&lt;p&gt;You can find a complete list of icons to use in the &lt;a href=&#34;https://fontawesome.com/icons?d=gallery&amp;amp;p=2&#34;&gt;FontAwesome documentation&lt;/a&gt;. Docsy includes the free FontAwesome icons by default.&lt;/p&gt;
&lt;p&gt;Out of the box, if you want to use icons, you should define icons for all items on the same menu level in order to ensure an appropriate look. If the icons are used in a different way, individual CSS adjustments are likely necessary.&lt;/p&gt;
&lt;h3 id=&#34;add-manual-links-to-the-section-menu&#34;&gt;Add manual links to the section menu&lt;/h3&gt;
&lt;p&gt;By default the section menu is entirely generated from your section&amp;rsquo;s pages. If you want to add a manual link to this menu, such as a link to an external site or a page in a different section of your site, you can do this by creating a &lt;em&gt;placeholder page file&lt;/em&gt; in the doc hierarchy with the appropriate weight and some special parameters in its metadata (frontmatter) to specify the link details.&lt;/p&gt;
&lt;p&gt;To create a placeholder page, create a page file as usual in the directory where you want the link to show up in the menu, and add a &lt;code&gt;manualLink&lt;/code&gt; parameter to its metadata. If a page has &lt;code&gt;manualLink&lt;/code&gt; in its metadata, Docsy generates a link for it in the section menu for this page and in the section index (the list of the child pages of a section on a landing page - see &lt;a href=&#34;/docs/adding-content/content/#docs-section-landing-pages&#34;&gt;description in the Docsy docs&lt;/a&gt;), but the link destination is replaced by the value of &lt;code&gt;manualLink&lt;/code&gt;. The link text is the &lt;code&gt;title&lt;/code&gt; (or &lt;code&gt;linkTitle&lt;/code&gt; if set) of your placeholder page. You can optionally also set the &lt;code&gt;title&lt;/code&gt; attribute of the link with the parameter &lt;code&gt;manualLinkTitle&lt;/code&gt; and a link target with &lt;code&gt;manualLinkTarget&lt;/code&gt; - for example if you want an external link to open in a new tab you can set the link target to &lt;code&gt;_blank&lt;/code&gt;. Docsy automatically adds &lt;code&gt;rel=noopener&lt;/code&gt; to links that open new tabs as a security best practice.&lt;/p&gt;
&lt;p&gt;You can also use &lt;code&gt;manualLink&lt;/code&gt; to add an additional cross reference to another existing page of your site. For internal links you can choose to use the parameter &lt;code&gt;manualLinkRelref&lt;/code&gt; instead of &lt;code&gt;manualLink&lt;/code&gt; to use the built-in Hugo function &lt;a href=&#34;https://gohugo.io/functions/relref/&#34; title=&#34;External link to official Hugo Docs&#34;&gt;relref&lt;/a&gt;. If &lt;code&gt;relref&lt;/code&gt; can&amp;rsquo;t find a unique page in your site, Hugo throws a error message.&lt;/p&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Note&lt;/h4&gt;

    Although all generated menu and landing page links based on your placeholder file are set according to the parameters &lt;code&gt;manualLink&lt;/code&gt; or &lt;code&gt;manualLinkRelref&lt;/code&gt;, Hugo still generates a regular HTML site page for the file, albeit one with no generated links to it. To avoid confusion if users accidentally land on a generated placeholder page, we recommend specifying the URL for the external link in the normal content and / or page description of the page.

&lt;/div&gt;

&lt;h2 id=&#34;breadcrumb-navigation&#34;&gt;Breadcrumb navigation&lt;/h2&gt;
&lt;p&gt;Breadcrumb navigation is enabled by default. To disable breadcrumb navigation, set site param &lt;code&gt;ui.breadcrumb_disable = true&lt;/code&gt; in &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&#34;site-search-options&#34;&gt;Site search options&lt;/h2&gt;
&lt;p&gt;Docsy offers multiple options that let your readers search your site content, so you can pick one that suits your needs. You can choose from:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#configure-search-with-a-google-custom-search-engine&#34;&gt;Google Custom Search Engine&lt;/a&gt; (GCSE), the default option, which uses Google&amp;rsquo;s index of your public site to generate a search results page.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#configure-algolia-docsearch&#34;&gt;Algolia DocSearch&lt;/a&gt;, which uses Algolia&amp;rsquo;s indexing and search mechanism, and provides an organized dropdown of search results when your readers use the search box. Algolia DocSearch is free for public documentation sites.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#configure-local-search-with-lunr&#34;&gt;Local search with Lunr&lt;/a&gt;, which uses Javascript to index and search your site without the need to connect to external services. This option doesn&amp;rsquo;t require your site to be public.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you enable any of these search options in your &lt;code&gt;config.toml&lt;/code&gt;, a search box displays in the right of your top navigation bar. By default a search box also displays at the top of the section menu in the left navigation pane, which you can disable if you prefer, or if you&amp;rsquo;re using a search option that only works with the top search box.&lt;/p&gt;
&lt;p&gt;Be aware that if you accidentally enable more than one search option in your &lt;code&gt;config.toml&lt;/code&gt; you may get unexpected results (for example, if you have added the &lt;code&gt;.js&lt;/code&gt; for Algolia DocSearch, you&amp;rsquo;ll get Algolia results if you enable GCSE search but forget to disable Algolia search).&lt;/p&gt;
&lt;h3 id=&#34;disabling-the-sidebar-search-box&#34;&gt;Disabling the sidebar search box&lt;/h3&gt;
&lt;p&gt;By default, the search box appears in both the top navigation bar and at the top of the sidebar left navigation pane. If you don&amp;rsquo;t want the sidebar search box, set &lt;code&gt;sidebar_search_disable&lt;/code&gt; to &lt;code&gt;true&lt;/code&gt; in &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sidebar_search_disable = true
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;configure-search-with-a-google-custom-search-engine&#34;&gt;Configure search with a Google Custom Search Engine&lt;/h2&gt;
&lt;p&gt;By default Docsy uses a &lt;a href=&#34;https://cse.google.com/cse/all&#34;&gt;Google Custom Search Engine&lt;/a&gt; (GCSE) to search your site. To enable this feature, you&amp;rsquo;ll first need to make sure that you have built a public production version of your site, as otherwise your site won&amp;rsquo;t be crawled and indexed.&lt;/p&gt;
&lt;h3 id=&#34;setting-up-site-search&#34;&gt;Setting up site search&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Deploy your site and ensure that it&amp;rsquo;s built with &lt;code&gt;HUGO_ENV=&amp;quot;production&amp;quot;&lt;/code&gt;, as Google will only crawl and index Docsy sites built with this setting (you probably don&amp;rsquo;t want your not-ready-for-prime-time site to be searchable!). You can specify this variable as a command line flag to Hugo:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ env HUGO_ENV=&amp;quot;production&amp;quot; hugo
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Alternatively, if you&amp;rsquo;re using Netlify, you can specify it as a Netlify &lt;a href=&#34;https://www.netlify.com/docs/continuous-deployment/#build-environment-variables&#34;&gt;deployment setting&lt;/a&gt; in &lt;code&gt;netlify.toml&lt;/code&gt; or the Netlify UI, along with the Hugo version. It may take a day or so before your site has actual search results available.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Create a Google Custom Search Engine for your deployed site by clicking &lt;strong&gt;New search engine&lt;/strong&gt; on the &lt;a href=&#34;https://cse.google.com/cse/all&#34;&gt;Custom Search page&lt;/a&gt; and following the instructions. Make a note of the ID for your new search engine.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add any further configuration you want to your search engine using the &lt;strong&gt;Edit search engine&lt;/strong&gt; options. In particular you may want to do the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Select &lt;strong&gt;Look and feel&lt;/strong&gt;. Change from the default &lt;strong&gt;Overlay&lt;/strong&gt; layout to &lt;strong&gt;Results only&lt;/strong&gt;, as this option means your search results are embedded in your search page rather than appearing in a separate box. Click &lt;strong&gt;Save&lt;/strong&gt; to save your changes.&lt;/li&gt;
&lt;li&gt;Edit the default result link behavior so that search results from your site don&amp;rsquo;t open in a new tab. To do this, select &lt;strong&gt;Search Features&lt;/strong&gt; - &lt;strong&gt;Advanced&lt;/strong&gt; - &lt;strong&gt;Websearch Settings&lt;/strong&gt;. In the &lt;strong&gt;Link Target&lt;/strong&gt; field, type &amp;ldquo;_parent&amp;rdquo;. Click &lt;strong&gt;Save&lt;/strong&gt; to save your changes.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Tip&lt;/h4&gt;

    Your site search results should show up within a couple of days. If it takes longer than that, you can manually request that your site is indexed by &lt;a href=&#34;https://support.google.com/webmasters/answer/183668?hl=en&#34;&gt;submitting a sitemap through the Google Search Console&lt;/a&gt;.

&lt;/div&gt;

&lt;h3 id=&#34;adding-the-search-page&#34;&gt;Adding the search page&lt;/h3&gt;
&lt;p&gt;Once you have your search engine set up, you can add the feature to your site:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Ensure you have a Markdown file in &lt;code&gt;content/en/search.md&lt;/code&gt; (and one per other languages if needed) to display your search results. It only needs a title and &lt;code&gt;layout: search&lt;/code&gt;, as in the following example:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
title: Search Results
layout: search
---
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add your Google Custom Search Engine ID to the site params in &lt;code&gt;config.toml&lt;/code&gt;. You can add different values per language if needed.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# Google Custom Search Engine ID. Remove or comment out to disable search.
gcs_engine_id = &amp;quot;011737558837375720776:fsdu1nryfng&amp;quot;
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&#34;disabling-gcse-search&#34;&gt;Disabling GCSE search&lt;/h3&gt;
&lt;p&gt;If you don&amp;rsquo;t specify a Google Custom Search Engine ID for your project and haven&amp;rsquo;t enabled any other search options, the search box won&amp;rsquo;t appear in your site. If you&amp;rsquo;re using the default &lt;code&gt;config.toml&lt;/code&gt; from the example site and want to disable search, just comment out or remove the relevant line.&lt;/p&gt;
&lt;h2 id=&#34;configure-algolia-docsearch&#34;&gt;Configure Algolia DocSearch&lt;/h2&gt;
&lt;p&gt;As an alternative to GCSE, you can use &lt;a href=&#34;https://community.algolia.com/docsearch/&#34;&gt;Algolia DocSearch&lt;/a&gt; with this theme. Algolia DocSearch is free for public documentation sites.&lt;/p&gt;
&lt;h3 id=&#34;sign-up-for-algolia-docsearch&#34;&gt;Sign up for Algolia DocSearch&lt;/h3&gt;
&lt;p&gt;Complete the form at &lt;a href=&#34;https://community.algolia.com/docsearch/#join-docsearch-program&#34;&gt;https://community.algolia.com/docsearch/#join-docsearch-program&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you are accepted to the program, you will receive the JavaScript code to add to your documentation site from Algolia by email.&lt;/p&gt;
&lt;h3 id=&#34;adding-algolia-docsearch&#34;&gt;Adding Algolia DocSearch&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Enable Algolia DocSearch in &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# Enable Algolia DocSearch
algolia_docsearch = true
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remove or comment out any GCSE ID in &lt;code&gt;config.toml&lt;/code&gt; and ensure local search is set to &lt;code&gt;false&lt;/code&gt; as you can only have one type of search enabled. See &lt;a href=&#34;#disabling-gcse-search&#34;&gt;Disabling GCSE search&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Disable the sidebar search in &lt;code&gt;config.toml&lt;/code&gt; as this is not currently supported for Algolia DocSearch. See &lt;a href=&#34;#disabling-the-sidebar-search-box&#34;&gt;Disabling the sidebar search box&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add the JavaScript code provided to you by Algolia to the head and body of every page on your site. See &lt;a href=&#34;/docs/adding-content/lookandfeel/#add-code-to-head-or-before-body-end&#34;&gt;Add code to head or before body end&lt;/a&gt; for details.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Update the &lt;code&gt;inputSelector&lt;/code&gt; field in the body end Javascript with the appropriate CSS selector (e.g. &lt;code&gt;.td-search-input&lt;/code&gt; to use the default CSS from this theme).&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;When you&amp;rsquo;ve completed these steps the Algolia search should be enabled on your site. Search results are displayed as a drop-down under the search box, so you don&amp;rsquo;t need to add any search results page.&lt;/p&gt;
&lt;h2 id=&#34;configure-local-search-with-lunr&#34;&gt;Configure local search with Lunr&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://lunrjs.com/&#34;&gt;Lunr&lt;/a&gt; is a Javascript-based search option that lets you index your site and make it searchable without the need for external, server-side search services. This is a good option particularly for smaller or non-public sites.&lt;/p&gt;
&lt;p&gt;To add Lunr search to your Docsy site:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Enable local search in &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# Enable local search
offlineSearch = true
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Remove or comment out any GCSE ID in &lt;code&gt;config.toml&lt;/code&gt; and ensure Algolia DocSearch is set to &lt;code&gt;false&lt;/code&gt;, as you can only have one type of search enabled. See &lt;a href=&#34;#disabling-gcse-search&#34;&gt;Disabling GCSE search&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Once you&amp;rsquo;ve completed these steps, local search is enabled for your site and results appear in a drop down when you use the search box.&lt;/p&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Tip&lt;/h4&gt;

    If you&amp;rsquo;re &lt;a href=&#34;/docs/deployment/#serving-your-site-locally&#34;&gt;testing this locally&lt;/a&gt; using Hugo’s local server functionality, you need to build your &lt;code&gt;offline-search-index.xxx.json&lt;/code&gt; file first by running &lt;code&gt;hugo&lt;/code&gt;. If you have the Hugo server running while you build &lt;code&gt;offline-search-index.xxx.json&lt;/code&gt;, you may need to stop the server and restart it in order to see your search results.

&lt;/div&gt;

&lt;h3 id=&#34;changing-the-summary-length-of-the-local-search-results&#34;&gt;Changing the summary length of the local search results&lt;/h3&gt;
&lt;p&gt;You can customize the summary length by setting &lt;code&gt;offlineSearchSummaryLength&lt;/code&gt; in &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#Enable offline search with Lunr.js
offlineSearch = true
offlineSearchSummaryLength = 200
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;changing-the-maximum-result-count-of-the-local-search&#34;&gt;Changing the maximum result count of the local search&lt;/h3&gt;
&lt;p&gt;You can customize the maximum result count by setting &lt;code&gt;offlineSearchMaxResults&lt;/code&gt; in &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#Enable offline search with Lunr.js
offlineSearch = true
offlineSearchMaxResults = 25
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;changing-the-width-of-the-local-search-results-popover&#34;&gt;Changing the width of the local search results popover&lt;/h3&gt;
&lt;p&gt;The width of the search results popover will automatically widen according to the content.&lt;/p&gt;
&lt;p&gt;If you want to limit the width, add the following scss into &lt;code&gt;assets/scss/_variables_project.scss&lt;/code&gt;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-scss&#34; data-lang=&#34;scss&#34;&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;body&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;{&lt;/span&gt;
    &lt;span style=&#34;color:#000&#34;&gt;.popover.offline-search-result&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;{&lt;/span&gt;
        &lt;span style=&#34;color:#c4a000&#34;&gt;max-width&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;460&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;px&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;excluding-pages-from-local-search-results&#34;&gt;Excluding pages from local search results&lt;/h3&gt;
&lt;p&gt;To exclude pages from local search results, add &lt;code&gt;exclude_search: true&lt;/code&gt; to the the frontmatter of each page:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Index&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;weight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;10&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;exclude_search&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
      </description>
    </item>
    
    <item>
      <title>Docs: Doc Versioning</title>
      <link>/docs/adding-content/versioning/</link>
      <pubDate>Sun, 02 Feb 2020 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/versioning/</guid>
      <description>
        
        
        &lt;p&gt;Depending on your project&amp;rsquo;s releases and versioning, you may want to let your
users access previous versions of your documentation. How you deploy the
previous versions is up to you. This page describes the Docsy features that you
can use to provide navigation between the various versions of your docs and
to display an information banner on the archived sites.&lt;/p&gt;
&lt;h2 id=&#34;adding-a-version-drop-down-menu&#34;&gt;Adding a version drop-down menu&lt;/h2&gt;
&lt;p&gt;If you add some &lt;code&gt;[params.versions]&lt;/code&gt; in &lt;code&gt;config.toml&lt;/code&gt;, the Docsy theme adds a
version selector drop down to the top-level menu. You specify a URL and a name
for each version you would like to add to the menu, as in the following example:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# Add your release versions here
[[params.versions]]
  version = &amp;quot;master&amp;quot;
  url = &amp;quot;https://master.kubeflow.org&amp;quot;

[[params.versions]]
  version = &amp;quot;v0.2&amp;quot;
  url = &amp;quot;https://v0-2.kubeflow.org&amp;quot;

[[params.versions]]
  version = &amp;quot;v0.3&amp;quot;
  url = &amp;quot;https://v0-3.kubeflow.org&amp;quot;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Remember to add your current version so that users can navigate back!&lt;/p&gt;
&lt;p&gt;The default title for the version drop-down menu is &lt;strong&gt;Releases&lt;/strong&gt;. To change the
title, change the &lt;code&gt;version_menu&lt;/code&gt; parameter in &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;version_menu = &amp;quot;Releases&amp;quot;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;You can read more about Docsy menus in the guide to
&lt;a href=&#34;/docs/adding-content/navigation/&#34;&gt;navigation and search&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;displaying-a-banner-on-archived-doc-sites&#34;&gt;Displaying a banner on archived doc sites&lt;/h2&gt;
&lt;p&gt;If you create archived snapshots for older versions of your docs, you can add a
note at the top of every page in the archived docs to let readers know that
they’re seeing an unmaintained snapshot and give them a link to the latest
version.&lt;/p&gt;
&lt;p&gt;For example, see the archived docs for
&lt;a href=&#34;https://v0-6.kubeflow.org/docs/&#34;&gt;Kubeflow v0.6&lt;/a&gt;:&lt;/p&gt;
&lt;figure&gt;
  &lt;img src=&#34;/images/version-banner.png&#34;
       alt=&#34;A text box explaining that this is an unmaintained snapshot of the docs.&#34;
       class=&#34;mt-3 mb-3 border border-info rounded&#34; /&gt;
  &lt;figcaption&gt;Figure 1. The banner on the archived docs for Kubeflow v0.6
  &lt;/figcaption&gt;
&lt;/figure&gt;
&lt;p&gt;To add the banner to your doc site, make the following changes in your
&lt;code&gt;config.toml&lt;/code&gt; file:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Set the &lt;code&gt;archived_version&lt;/code&gt; parameter to &lt;code&gt;true&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;archived_version = true
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Set the &lt;code&gt;version&lt;/code&gt; parameter to the version of the archived doc set. For
example, if the archived docs are for version 0.1:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;version = &amp;quot;0.1&amp;quot;
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Make sure that &lt;code&gt;url_latest_version&lt;/code&gt; contains the URL of the website that you
want to point readers to. In most cases, this should be the URL of the latest
version of your docs:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;url_latest_version = &amp;quot;https://your-latest-doc-site.com&amp;quot;
&lt;/code&gt;&lt;/pre&gt;&lt;/li&gt;
&lt;/ol&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Docsy Shortcodes</title>
      <link>/docs/adding-content/shortcodes/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/shortcodes/</guid>
      <description>
        
        
        &lt;p&gt;Rather than writing all your site pages from scratch, Hugo lets you define and use &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/&#34;&gt;shortcodes&lt;/a&gt;. These are reusable snippets of content that you can include in your pages, often using HTML to create effects that are difficult or impossible to do in simple Markdown. Shortcodes can also have parameters that let you, for example, add your own text to a fancy shortcode text box. As well as Hugo&amp;rsquo;s &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/&#34;&gt;built-in shortcodes&lt;/a&gt;, Docsy provides some shortcodes of its own to help you build your pages.&lt;/p&gt;
&lt;h2 id=&#34;shortcode-blocks&#34;&gt;Shortcode blocks&lt;/h2&gt;
&lt;p&gt;The theme comes with a set of custom  &lt;strong&gt;Page Block&lt;/strong&gt; shortcodes that can be used to compose landing pages, about pages, and similar.&lt;/p&gt;
&lt;p&gt;These blocks share some common parameters:&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;height&lt;/dt&gt;
&lt;dd&gt;A pre-defined height of the block container. One of &lt;code&gt;min&lt;/code&gt;, &lt;code&gt;med&lt;/code&gt;, &lt;code&gt;max&lt;/code&gt;, &lt;code&gt;full&lt;/code&gt;, or &lt;code&gt;auto&lt;/code&gt;. Setting it to &lt;code&gt;full&lt;/code&gt; will fill the Viewport Height, which can be useful for landing pages.&lt;/dd&gt;
&lt;dt&gt;color&lt;/dt&gt;
&lt;dd&gt;The block will be assigned a color from the theme palette if not provided, but you can set your own if needed. You can use all of Bootstrap&amp;rsquo;s color names, theme color names or a grayscale shade. Some examples would be &lt;code&gt;primary&lt;/code&gt;, &lt;code&gt;white&lt;/code&gt;, &lt;code&gt;dark&lt;/code&gt;, &lt;code&gt;warning&lt;/code&gt;, &lt;code&gt;light&lt;/code&gt;, &lt;code&gt;success&lt;/code&gt;, &lt;code&gt;300&lt;/code&gt;, &lt;code&gt;blue&lt;/code&gt;, &lt;code&gt;orange&lt;/code&gt;. This will become the &lt;strong&gt;background color&lt;/strong&gt; of the block, but text colors will adapt to get proper contrast.&lt;/dd&gt;
&lt;/dl&gt;
&lt;h3 id=&#34;blockscover&#34;&gt;blocks/cover&lt;/h3&gt;
&lt;p&gt;The &lt;strong&gt;blocks/cover&lt;/strong&gt; shortcode creates a landing page type of block that fills the top of the page.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;{{&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;cover&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Welcome!&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;image_anchor&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;center&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;height&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;full&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;color&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;primary&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;}}
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;mx-auto&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
	&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;btn btn-lg btn-primary mr-3 mb-4&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;{{&amp;lt; relref &amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;docs&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;}}&amp;#34;&amp;gt;
		Learn More &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;i&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fas fa-arrow-alt-circle-right ml-2&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;i&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
	&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
	&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;btn btn-lg btn-secondary mr-3 mb-4&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://example.org&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
		Download &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;i&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fab fa-github ml-2 &amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;i&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
	&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
	&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;p&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;lead mt-5&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;This program is now available in &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;#&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;AppStore!&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;p&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
	&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;mx-auto mt-5&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
		{{&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;link-down&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;color&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;info&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;}}
	&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
{{&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt; /blocks/cover &amp;gt;}}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Note that the relevant shortcode parameters above will have sensible defaults, but is included here for completeness.&lt;/p&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Hugo Tip&lt;/h4&gt;

    &lt;blockquote&gt;
&lt;p&gt;Using the bracket styled shortcode delimiter, &lt;code&gt;&amp;gt;}}&lt;/code&gt;, tells Hugo that the inner content is HTML/plain text and needs no further processing. Changing the delimiter to &lt;code&gt;%}}&lt;/code&gt; means Hugo will treat the content as Markdown. You can use both styles in your pages.&lt;/p&gt;
&lt;/blockquote&gt;


&lt;/div&gt;

&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;title&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;The main display title for the block.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;image_anchor&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;height&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;See above.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;color&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;See above.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;byline&lt;/td&gt;
&lt;td&gt;Byline text on featured image.&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;To set the background image, place an image with the word &amp;ldquo;background&amp;rdquo; in the name in the page&amp;rsquo;s &lt;a href=&#34;/docs/adding-content/content/#page-bundles&#34;&gt;Page Bundle&lt;/a&gt;. For example, in our the example site the background image in the home page&amp;rsquo;s cover block is &lt;a href=&#34;https://github.com/google/docsy-example/tree/master/content/en&#34;&gt;&lt;code&gt;featured-background.jpg&lt;/code&gt;&lt;/a&gt;, in the same directory.&lt;/p&gt;


&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Tip&lt;/h4&gt;

    If you also include the word &lt;strong&gt;featured&lt;/strong&gt; in the image name, e.g. &lt;code&gt;my-featured-background.jpg&lt;/code&gt;, it will also be used as the Twitter Card image when shared.

&lt;/div&gt;

&lt;p&gt;For available icons, see &lt;a href=&#34;https://fontawesome.com/icons?d=gallery&amp;amp;m=free&#34;&gt;Font Awesome&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;blockslead&#34;&gt;blocks/lead&lt;/h3&gt;
&lt;p&gt;The &lt;strong&gt;blocks/lead&lt;/strong&gt; block shortcode is a simple lead/title block with centred text and an arrow down pointing to the next section.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;lead&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;color&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;dark&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
TechOS is the OS of the future. 

Runs on **bare metal** in the **cloud**!
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;lead&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;height&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;See above.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;color&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;See above.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;blockssection&#34;&gt;blocks/section&lt;/h3&gt;
&lt;p&gt;The &lt;strong&gt;blocks/section&lt;/strong&gt; shortcode is meant as a general-purpose content container. It comes in two &amp;ldquo;flavors&amp;rdquo;, one for general content and one with styling more suitable for wrapping a horizontal row of feature sections.&lt;/p&gt;
&lt;p&gt;The example below shows a section wrapping 3 feature sections.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;section&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;color&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;dark&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;feature&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fa-lightbulb&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Fastest OS **on the planet**!&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
The new **TechOS** operating system is an open source project. It is a new project, but with grand ambitions.
Please follow this space for updates!
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;feature&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;feature&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fab fa-github&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Contributions welcome!&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;url&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://github.com/gohugoio/hugo&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
We do a [Pull Request](https://github.com/gohugoio/hugo/pulls) contributions workflow on **GitHub**. New users are always welcome!
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;feature&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;feature&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fab fa-twitter&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Follow us on Twitter!&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;url&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://twitter.com/GoHugoIO&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
For announcement of latest features etc.
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;feature&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;section&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;height&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;See above.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;color&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;See above.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;type&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;Specify &amp;ldquo;section&amp;rdquo; if you want a general container,  omit this parameter if you want this section to contain a horizontal row of features.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;blocksfeature&#34;&gt;blocks/feature&lt;/h3&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;feature&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;icon&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fab fa-github&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Contributions welcome!&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;url&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://github.com/gohugoio/hugo&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
We do a [Pull Request](https://github.com/gohugoio/hugo/pulls) contributions workflow on **GitHub**. New users are always welcome!
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;feature&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;title&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;The title to use.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;url&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;The URL to link to.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;icon&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;The icon class to use.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;blockslink-down&#34;&gt;blocks/link-down&lt;/h3&gt;
&lt;p&gt;The &lt;strong&gt;blocks/link-down&lt;/strong&gt; shortcode creates a navigation link down to the next section. It&amp;rsquo;s meant to be used in combination with the other blocks shortcodes.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;mx-auto mt-5&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
	&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;link&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;down&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;color&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;info&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;color&lt;/td&gt;
&lt;td&gt;info&lt;/td&gt;
&lt;td&gt;See above.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;shortcode-helpers&#34;&gt;Shortcode helpers&lt;/h2&gt;
&lt;h3 id=&#34;alert&#34;&gt;alert&lt;/h3&gt;
&lt;p&gt;The &lt;strong&gt;alert&lt;/strong&gt; shortcode creates an alert block that can be used to display notices or warnings.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;alert&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Warning&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;color&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;warning&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
This is a warning.
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;alert&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Renders to:&lt;/p&gt;


&lt;div class=&#34;alert alert-warning&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Warning&lt;/h4&gt;

    This is a warning.

&lt;/div&gt;

&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;color&lt;/td&gt;
&lt;td&gt;primary&lt;/td&gt;
&lt;td&gt;One of the theme colors, eg &lt;code&gt;primary&lt;/code&gt;, &lt;code&gt;info&lt;/code&gt;, &lt;code&gt;warning&lt;/code&gt; etc.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;pageinfo&#34;&gt;pageinfo&lt;/h3&gt;
&lt;p&gt;The &lt;strong&gt;pageinfo&lt;/strong&gt; shortcode creates a text box that you can use to add banner information for a page: for example, letting users know that the page contains placeholder content, that the content is deprecated, or that it documents a beta feature.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;pageinfo&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;color&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;primary&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
This is placeholder content.
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;pageinfo&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;%&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Renders to:&lt;/p&gt;


&lt;div class=&#34;pageinfo pageinfo-primary&#34;&gt;
&lt;p&gt;This is placeholder content&lt;/p&gt;

&lt;/div&gt;

&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;color&lt;/td&gt;
&lt;td&gt;primary&lt;/td&gt;
&lt;td&gt;One of the theme colors, eg &lt;code&gt;primary&lt;/code&gt;, &lt;code&gt;info&lt;/code&gt;, &lt;code&gt;warning&lt;/code&gt; etc.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;imgproc&#34;&gt;imgproc&lt;/h3&gt;
&lt;p&gt;The &lt;strong&gt;imgproc&lt;/strong&gt; shortcode finds an image in the current &lt;a href=&#34;/docs/adding-content/content/#page-bundles&#34;&gt;Page Bundle&lt;/a&gt; and scales it given a set of processing instructions.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;imgproc&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;spruce&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;Fill&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;400x450&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
Norway Spruce Picea abies shoot with foliage buds.
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;imgproc&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;






&lt;div class=&#34;card rounded p-2 td-post-card mb-4 mt-4&#34; style=&#34;max-width: 410px&#34;&gt;
	&lt;img class=&#34;card-img-top&#34; src=&#34;/docs/adding-content/shortcodes/spruce_hu0fa7d855ef6295d2886abf8df96c5044_124081_400x450_fill_q75_catmullrom_smart1.jpg&#34; width=&#34;400&#34; height=&#34;450&#34;&gt;
	
	&lt;div class=&#34;card-body px-0 pt-2 pb-0&#34;&gt;
		&lt;p class=&#34;card-text&#34;&gt;
Norway Spruce Picea abies shoot with foliage buds.
&lt;small class=&#34;text-muted&#34;&gt;&lt;br/&gt;Photo: Bjørn Erik Pedersen / CC-BY-SA&lt;/small&gt;&lt;/p&gt;
	&lt;/div&gt;
	
&lt;/div&gt;
&lt;p&gt;The example above has also a byline with photo attribution added. When using illustrations with a free license from &lt;a href=&#34;https://commons.wikimedia.org/&#34;&gt;WikiMedia&lt;/a&gt; and similar, you will in most situations need a way to attribute the author or licensor. You can add metadata to your page resources in the page front matter. The &lt;code&gt;byline&lt;/code&gt; param is used by convention in this theme:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;resources&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;- &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;src&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;**spruce*.jpg&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;    &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;byline&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Photo: Bjørn Erik Pedersen / CC-BY-SA&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th style=&#34;text-align:right&#34;&gt;Parameter&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:right&#34;&gt;1&lt;/td&gt;
&lt;td&gt;The image filename or enough of it to identify it (we do Glob matching)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:right&#34;&gt;2&lt;/td&gt;
&lt;td&gt;Command. One of &lt;code&gt;Fit&lt;/code&gt;, &lt;code&gt;Resize&lt;/code&gt; or &lt;code&gt;Fill&lt;/code&gt;. See &lt;a href=&#34;https://gohugo.io/content-management/image-processing/#image-processing-methods&#34;&gt;Image Processing Methods&lt;/a&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style=&#34;text-align:right&#34;&gt;3&lt;/td&gt;
&lt;td&gt;Processing options, e.g. &lt;code&gt;400x450&lt;/code&gt;. See &lt;a href=&#34;https://gohugo.io/content-management/image-processing/#image-processing-methods&#34;&gt;Image Processing Options&lt;/a&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h3 id=&#34;swaggerui&#34;&gt;swaggerui&lt;/h3&gt;
&lt;p&gt;The &lt;code&gt;swaggerui&lt;/code&gt; shortcode can be placed anywhere inside a page with the &lt;a href=&#34;https://github.com/google/docsy/tree/master/layouts/swagger&#34;&gt;&lt;code&gt;swagger&lt;/code&gt; layout&lt;/a&gt;; it renders &lt;a href=&#34;https://swagger.io/tools/swagger-ui/&#34;&gt;Swagger UI&lt;/a&gt; using any OpenAPI YAML or JSON file as source. This can be hosted anywhere you like, for example in your site&amp;rsquo;s root &lt;a href=&#34;/docs/adding-content/content/#adding-static-content&#34;&gt;&lt;code&gt;/static&lt;/code&gt; folder&lt;/a&gt;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Pet Store API&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;type&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;swagger&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;weight&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#0000cf;font-weight:bold&#34;&gt;1&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;description&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;Reference for the Pet Store API&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;{{&lt;span style=&#34;color:#000&#34;&gt;&amp;lt; swaggerui src=&amp;#34;/openapi/petstore.yaml&amp;#34; &amp;gt;}}&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You can customize Swagger UI&amp;rsquo;s look and feel by overriding Swagger&amp;rsquo;s CSS or by editing and compiling a &lt;a href=&#34;https://github.com/swagger-api/swagger-ui&#34;&gt;Swagger UI dist&lt;/a&gt; yourself and replace &lt;code&gt;themes/docsy/static/css/swagger-ui.css&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&#34;iframe&#34;&gt;iframe&lt;/h3&gt;
&lt;p&gt;With this shortcode you can embed external content into a Docsy page as an inline frame (&lt;code&gt;iframe&lt;/code&gt;) - see: &lt;a href=&#34;https://www.w3schools.com/tags/tag_iframe.asp&#34;&gt;https://www.w3schools.com/tags/tag_iframe.asp&lt;/a&gt;&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Default&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;src&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;URL of external content&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;width&lt;/td&gt;
&lt;td&gt;100%&lt;/td&gt;
&lt;td&gt;Width of iframe&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;tryautoheight&lt;/td&gt;
&lt;td&gt;true&lt;/td&gt;
&lt;td&gt;If true the shortcode tries to calculate the needed height for the embedded content using JavaScript, as described here: &lt;a href=&#34;https://stackoverflow.com/a/14618068&#34;&gt;https://stackoverflow.com/a/14618068&lt;/a&gt;. This is only possible if the embedded content is &lt;a href=&#34;https://stackoverflow.com/questions/22086722/resize-cross-domain-iframe-height&#34;&gt;on the same domain&lt;/a&gt;. Note that even if the embedded content is on the same domain, it depends on the structure of the content if the height can be calculated correctly.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;style&lt;/td&gt;
&lt;td&gt;min-height:98vh; border:none;&lt;/td&gt;
&lt;td&gt;CSS styles for the iframe. &lt;code&gt;min-height:98vh;&lt;/code&gt; is a backup if &lt;code&gt;tryautoheight&lt;/code&gt; doesn&amp;rsquo;t work. &lt;code&gt;border:none;&lt;/code&gt; removes the border from the iframe - this is useful if you want the embedded content to look more like internal content from your page.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;sandbox&lt;/td&gt;
&lt;td&gt;false&lt;/td&gt;
&lt;td&gt;You can switch the sandbox completely on by setting &lt;code&gt;sandbox = true&lt;/code&gt; or allow specific functionality with the common values for the iframe parameter &lt;code&gt;sandbox&lt;/code&gt; defined in the &lt;a href=&#34;https://www.w3schools.com/tags/att_iframe_sandbox.asp&#34;&gt;HTML standard&lt;/a&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;name&lt;/td&gt;
&lt;td&gt;iframe-name&lt;/td&gt;
&lt;td&gt;Specify the &lt;a href=&#34;https://www.w3schools.com/tags/att_iframe_name.asp&#34;&gt;name of the iframe&lt;/a&gt;.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;id&lt;/td&gt;
&lt;td&gt;iframe-id&lt;/td&gt;
&lt;td&gt;Sets the ID of the iframe.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;class&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;Optional parameter to set the classes of the iframe.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;sub&lt;/td&gt;
&lt;td&gt;Your browser cannot display embedded frames. You can access the embedded page via the following link:&lt;/td&gt;
&lt;td&gt;The text displayed (in addition to the embedded URL) if the user&amp;rsquo;s browser can&amp;rsquo;t display embedded frames.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;


&lt;div class=&#34;alert alert-warning&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Warning&lt;/h4&gt;

    &lt;p&gt;You can only embed external content from a server when its &lt;code&gt;X-Frame-Options&lt;/code&gt; is not set or if it specifically allows embedding for your site. See &lt;a href=&#34;https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options&#34;&gt;https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options&lt;/a&gt; for details.&lt;/p&gt;
&lt;p&gt;There are several tools you can use to check if a website can be embedded via iframe - e.g.: &lt;a href=&#34;https://gf.dev/x-frame-options-test&#34;&gt;https://gf.dev/x-frame-options-test&lt;/a&gt;. Be aware that when this test says &amp;ldquo;Couldn’t find the X-Frame-Options header
in the response headers.&amp;rdquo; you &lt;strong&gt;CAN&lt;/strong&gt; embed it, but when the test says &amp;ldquo;Great! X-Frame-Options header was found in the HTTP response headers as highlighted below.&amp;rdquo;, you &lt;strong&gt;CANNOT&lt;/strong&gt; - unless it has been explicitly enabled for your site.&lt;/p&gt;


&lt;/div&gt;

&lt;h2 id=&#34;tabbed-panes&#34;&gt;Tabbed panes&lt;/h2&gt;
&lt;p&gt;Sometimes it&amp;rsquo;s very useful to have tabbed panes when authoring content. One common use-case is to show multiple syntax highlighted code blocks that showcase the same problem, and how to solve it in different programming languages. As an example, the table below shows the language-specific variants of the famous &lt;code&gt;Hello world!&lt;/code&gt; program one usually writes first when learning a new programming language from scratch:&lt;/p&gt;

  





















































































































































&lt;ul class=&#34;nav nav-tabs&#34; id=&#34;tabs-6&#34; role=&#34;tablist&#34;&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link active&#34;
        id=&#34;tabs-6-0-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-0&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-0&#34; aria-selected=&#34;true&#34;&gt;
        C
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-6-1-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-1&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-1&#34; aria-selected=&#34;false&#34;&gt;
        C&amp;#43;&amp;#43;
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-6-2-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-2&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-2&#34; aria-selected=&#34;false&#34;&gt;
        Go
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-6-3-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-3&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-3&#34; aria-selected=&#34;false&#34;&gt;
        Java
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-6-4-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-4&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-4&#34; aria-selected=&#34;false&#34;&gt;
        Kotlin
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-6-5-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-5&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-5&#34; aria-selected=&#34;false&#34;&gt;
        Lua
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-6-6-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-6&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-6&#34; aria-selected=&#34;false&#34;&gt;
        PHP
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-6-7-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-7&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-7&#34; aria-selected=&#34;false&#34;&gt;
        Python
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-6-8-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-8&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-8&#34; aria-selected=&#34;false&#34;&gt;
        Ruby
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-6-9-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-6-9&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-6-9&#34; aria-selected=&#34;false&#34;&gt;
        Scala
      &lt;/a&gt;
    &lt;/li&gt;&lt;/ul&gt;


&lt;div class=&#34;tab-content&#34; id=&#34;tabs-6-content&#34;&gt;
        
          
        
    &lt;div class=&#34;tab-pane fade show active&#34;
        id=&#34;tabs-6-0&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-0-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-C&#34; data-lang=&#34;C&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;#include&lt;/span&gt; &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;&amp;lt;stdio.h&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;#include&lt;/span&gt; &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;&amp;lt;stdlib.h&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;&lt;/span&gt;
&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;int&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;main&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;void&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;)&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;{&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;puts&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello World!&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;);&lt;/span&gt;
  &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;EXIT_SUCCESS&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
        
          
        
    &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-6-1&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-1-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-C++&#34; data-lang=&#34;C++&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;#include&lt;/span&gt; &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;&amp;lt;iostream&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;&lt;/span&gt;
&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;int&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;main&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;()&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;{&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;std&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;cout&lt;/span&gt; &lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello World!&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;std&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;endl&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
        
          
        
    &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-6-2&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-2-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-Go&#34; data-lang=&#34;Go&#34;&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;package&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;main&lt;/span&gt;
&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;import&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;fmt&amp;#34;&lt;/span&gt;
&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;func&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;main&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;()&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;{&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;fmt&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;Printf&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello World!\n&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;)&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
        
          
        
    &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-6-3&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-3-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-Java&#34; data-lang=&#34;Java&#34;&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;class&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;HelloWorld&lt;/span&gt; &lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;{&lt;/span&gt;
  &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;static&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;public&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;void&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;main&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;(&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;String&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;args&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;[]&lt;/span&gt; &lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;)&lt;/span&gt; &lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;{&lt;/span&gt;
    &lt;span style=&#34;color:#000&#34;&gt;System&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;out&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;println&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;(&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello World!&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;);&lt;/span&gt;
  &lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;}&lt;/span&gt;
&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
        
          
        
    &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-6-4&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-4-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-Kotlin&#34; data-lang=&#34;Kotlin&#34;&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;fun&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;main&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;args&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;Array&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;String&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;)&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;{&lt;/span&gt;
    &lt;span style=&#34;color:#000&#34;&gt;println&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello, world!&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;)&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
        
          
        
    &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-6-5&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-5-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-Lua&#34; data-lang=&#34;Lua&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;print&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello world&amp;#34;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
        
          
        
    &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-6-6&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-6-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-PHP&#34; data-lang=&#34;PHP&#34;&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;&amp;lt;?&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;php&lt;/span&gt;
&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;echo&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#39;Hello World!&amp;#39;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;?&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
        
          
        
    &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-6-7&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-7-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-Python&#34; data-lang=&#34;Python&#34;&gt;&lt;span style=&#34;color:#204a87&#34;&gt;print&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello World!&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
        
          
        
    &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-6-8&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-8-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-Ruby&#34; data-lang=&#34;Ruby&#34;&gt;&lt;span style=&#34;color:#204a87&#34;&gt;puts&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello World!&amp;#34;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
        
          
        
    &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-6-9&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-6-9-tab&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-Scala&#34; data-lang=&#34;Scala&#34;&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;object&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;HelloWorld&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;extends&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;App&lt;/span&gt; &lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;{&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;println&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello world!&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;)&lt;/span&gt;
&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
  
&lt;/div&gt;

&lt;p&gt;The Docsy template provides two shortcodes &lt;code&gt;tabpane&lt;/code&gt; and &lt;code&gt;tab&lt;/code&gt; that let you easily create tabbed panes. To see how to use them, have a look at the following code block, which renders to a pane with three tabs:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;tabpane&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;tab&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;English&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
    Welcome!
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;tab&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;tab&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;German&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
    Herzlich willkommen!
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;tab&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;tab&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Swahili&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
    Karibu sana!
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;tab&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;tabpane&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This code translates to the tabbed pane below, showing a &lt;code&gt;Welcome!&lt;/code&gt; greeting in English, German or Swahili:&lt;/p&gt;
















































&lt;ul class=&#34;nav nav-tabs&#34; id=&#34;tabs-7&#34; role=&#34;tablist&#34;&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link active&#34;
        id=&#34;tabs-7-0-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-7-0&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-7-0&#34; aria-selected=&#34;true&#34;&gt;
        English
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-7-1-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-7-1&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-7-1&#34; aria-selected=&#34;false&#34;&gt;
        German
      &lt;/a&gt;
    &lt;/li&gt;&lt;li class=&#34;nav-item&#34;&gt;
      &lt;a class=&#34;nav-link&#34;
        id=&#34;tabs-7-2-tab&#34; data-toggle=&#34;tab&#34; href=&#34;#tabs-7-2&#34; role=&#34;tab&#34;
        aria-controls=&#34;tabs-7-2&#34; aria-selected=&#34;false&#34;&gt;
        Swahili
      &lt;/a&gt;
    &lt;/li&gt;&lt;/ul&gt;


&lt;div class=&#34;tab-content&#34; id=&#34;tabs-7-content&#34;&gt;&lt;div class=&#34;tab-pane fade show active&#34;
        id=&#34;tabs-7-0&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-7-0-tab&#34;&gt;&lt;pre&gt;&lt;code class=&#34;language-en&#34; data-lang=&#34;en&#34;&gt;Welcome!&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
  &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-7-1&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-7-1-tab&#34;&gt;&lt;pre&gt;&lt;code class=&#34;language-de&#34; data-lang=&#34;de&#34;&gt;Herzlich willkommen!&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
  &lt;div class=&#34;tab-pane fade&#34;
        id=&#34;tabs-7-2&#34; role=&#34;tabpanel&#34; aria-labelled-by=&#34;tabs-7-2-tab&#34;&gt;&lt;pre&gt;&lt;code class=&#34;language-en&#34; data-lang=&#34;en&#34;&gt;Karibu sana!&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
  
&lt;/div&gt;

&lt;h3 id=&#34;shortcode-details&#34;&gt;Shortcode details&lt;/h3&gt;
&lt;p&gt;Tabbed panes are implemented using two shortcodes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The &lt;code&gt;tabpane&lt;/code&gt; shortcode, which is the container element for the tabs. This shortcode can optionally held the named parameters &lt;code&gt;lang&lt;/code&gt; and/or &lt;code&gt;highlight&lt;/code&gt;. The values of these optional parameters are passed on as second &lt;code&gt;LANG&lt;/code&gt; and third &lt;code&gt;OPTIONS&lt;/code&gt; arguments to Hugo&amp;rsquo;s built-in &lt;a href=&#34;https://gohugo.io/functions/highlight/&#34;&gt;&lt;code&gt;highlight&lt;/code&gt;&lt;/a&gt; function which is used to render the code blocks of the individual tabs. In case the header text of the tab equals the &lt;code&gt;language&lt;/code&gt; used in the tab&amp;rsquo;s code block (as in the first tabbed pane example above), you may specify &lt;code&gt;langEqualsHeader=true&lt;/code&gt; in the surrounding &lt;code&gt;tabpane&lt;/code&gt; shortcode. Then, the header text of the individual tab is automatically set as &lt;code&gt;language&lt;/code&gt; parameter of the respective tab.&lt;/li&gt;
&lt;li&gt;The various &lt;code&gt;tab&lt;/code&gt; shortcodes which actually represent the tabs you would like to show. We recommend specifying the named parameter &lt;code&gt;header&lt;/code&gt; for each text in order to set the header text of each tab. If needed, you can additionally specify the named parameters &lt;code&gt;lang&lt;/code&gt; and &lt;code&gt;highlight&lt;/code&gt; for each tab. This allows you to overwrite the settings given in the parent &lt;code&gt;tabpane&lt;/code&gt; shortcode. If the language is neither specified in the &lt;code&gt;tabpane&lt;/code&gt; nor in the &lt;code&gt;tab&lt;/code&gt;shortcode, it defaults to Hugo&amp;rsquo;s site variable &lt;code&gt;.Site.Language.Lang&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;card-panes&#34;&gt;Card panes&lt;/h2&gt;
&lt;p&gt;When authoring content, it&amp;rsquo;s sometimes very useful to put similar text blocks or code fragments on card like elements, which can be optionally presented side by side. Let&amp;rsquo;s showcase this feature with the following sample card group which shows the first four Presidents of the United States:&lt;/p&gt;
&lt;div class=&#34;card-deck mb-4&#34;&gt;
&lt;div class=&#34;card mb-4&#34;&gt;
  
    &lt;div class=&#34;card-header&#34;&gt;
      
        &lt;strong&gt;George Washington&lt;/strong&gt;
      
    &lt;/div&gt;
  
  &lt;div class=&#34;card-body&#34;&gt;
    
      &lt;h5 class=&#34;card-title&#34;&gt;
        
          *1732     †1799
        
      &lt;/h5&gt;
    
    
      &lt;h6 class=&#34;card-title mb-2 text-muted&#34;&gt;
        
          &lt;strong&gt;President:&lt;/strong&gt; 1789 – 1797
        
      &lt;/h6&gt;
    
    
      &lt;p class=&#34;card-text&#34;&gt;
        
          &lt;img src=&#34;https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Gilbert_Stuart_Williamstown_Portrait_of_George_Washington.jpg/633px-Gilbert_Stuart_Williamstown_Portrait_of_George_Washington.jpg&#34; alt=&#34;PortraitGeorgeWashington&#34; title=&#34;Portrait George Washington&#34;&gt;
        
      &lt;/p&gt;
    
  &lt;/div&gt;
  
    &lt;div class=&#34;card-footer&#34;&gt;
      
        &lt;img src=&#34;https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/George_Washington_signature.svg/320px-George_Washington_signature.svg.png&#34; alt=&#34;SignatureGeorgeWashington&#34; title=&#34;Signature George Washington&#34;&gt;
      
    &lt;/div&gt;
  
&lt;/div&gt;

&lt;div class=&#34;card mb-4&#34;&gt;
  
    &lt;div class=&#34;card-header&#34;&gt;
      
        &lt;strong&gt;John Adams&lt;/strong&gt;
      
    &lt;/div&gt;
  
  &lt;div class=&#34;card-body&#34;&gt;
    
      &lt;h5 class=&#34;card-title&#34;&gt;
        
          * 1735     † 1826
        
      &lt;/h5&gt;
    
    
      &lt;h6 class=&#34;card-title mb-2 text-muted&#34;&gt;
        
          &lt;strong&gt;President:&lt;/strong&gt; 1797 – 1801
        
      &lt;/h6&gt;
    
    
      &lt;p class=&#34;card-text&#34;&gt;
        
          &lt;img src=&#34;https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Gilbert_Stuart%2C_John_Adams%2C_c._1800-1815%2C_NGA_42933.jpg/633px-Gilbert_Stuart%2C_John_Adams%2C_c._1800-1815%2C_NGA_42933.jpg&#34; alt=&#34;PortraitJohnAdams&#34; title=&#34;Portrait John Adams&#34;&gt;
        
      &lt;/p&gt;
    
  &lt;/div&gt;
  
    &lt;div class=&#34;card-footer&#34;&gt;
      
        &lt;img src=&#34;https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/John_Adams_Sig_2.svg/320px-John_Adams_Sig_2.svg.png&#34; alt=&#34;SignatureJohnAdams&#34; title=&#34;Signature John Adams&#34;&gt;
      
    &lt;/div&gt;
  
&lt;/div&gt;

&lt;div class=&#34;card mb-4&#34;&gt;
  
    &lt;div class=&#34;card-header&#34;&gt;
      
        &lt;strong&gt;Thomas Jefferson&lt;/strong&gt;
      
    &lt;/div&gt;
  
  &lt;div class=&#34;card-body&#34;&gt;
    
      &lt;h5 class=&#34;card-title&#34;&gt;
        
          * 1743     † 1826
        
      &lt;/h5&gt;
    
    
      &lt;h6 class=&#34;card-title mb-2 text-muted&#34;&gt;
        
          &lt;strong&gt;President:&lt;/strong&gt; 1801 – 1809
        
      &lt;/h6&gt;
    
    
      &lt;p class=&#34;card-text&#34;&gt;
        
          &lt;img src=&#34;https://upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Official_Presidential_portrait_of_Thomas_Jefferson_%28by_Rembrandt_Peale%2C_1800%29%28cropped%29.jpg/390px-Official_Presidential_portrait_of_Thomas_Jefferson_%28by_Rembrandt_Peale%2C_1800%29%28cropped%29.jpg&#34; alt=&#34;PortraitThomasJefferson&#34; title=&#34;Portrait Thomas Jefferson&#34;&gt;
        
      &lt;/p&gt;
    
  &lt;/div&gt;
  
    &lt;div class=&#34;card-footer&#34;&gt;
      
        &lt;img src=&#34;https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/Thomas_Jefferson_Signature.svg/320px-Thomas_Jefferson_Signature.svg.png&#34; alt=&#34;SignatureThomasJefferson&#34; title=&#34;Signature Thomas Jefferson&#34;&gt;
      
    &lt;/div&gt;
  
&lt;/div&gt;

&lt;div class=&#34;card mb-4&#34;&gt;
  
    &lt;div class=&#34;card-header&#34;&gt;
      
        &lt;strong&gt;James Madison&lt;/strong&gt;
      
    &lt;/div&gt;
  
  &lt;div class=&#34;card-body&#34;&gt;
    
      &lt;h5 class=&#34;card-title&#34;&gt;
        
          * 1751     † 1836
        
      &lt;/h5&gt;
    
    
      &lt;h6 class=&#34;card-title mb-2 text-muted&#34;&gt;
        
          &lt;strong&gt;President:&lt;/strong&gt; 1809 – 1817
        
      &lt;/h6&gt;
    
    
      &lt;p class=&#34;card-text&#34;&gt;
        
          &lt;img src=&#34;https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/James_Madison%28cropped%29%28c%29.jpg/393px-James_Madison%28cropped%29%28c%29.jpg&#34; alt=&#34;PortraitJamesMadison&#34; title=&#34;Portrait James Madison&#34;&gt;
        
      &lt;/p&gt;
    
  &lt;/div&gt;
  
    &lt;div class=&#34;card-footer&#34;&gt;
      
        &lt;img src=&#34;https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/James_Madison_sig.svg/320px-James_Madison_sig.svg.png&#34; alt=&#34;SignatureJamesMadison&#34; title=&#34;Signature James Madison&#34;&gt;
      
    &lt;/div&gt;
  
&lt;/div&gt;

&lt;/div&gt;
&lt;p&gt;Docsy supports creating such card panes via different shortcodes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The &lt;code&gt;cardpane&lt;/code&gt; shortcode which is the container element for the various cards to be presented.&lt;/li&gt;
&lt;li&gt;The &lt;code&gt;card&lt;/code&gt; shortcodes, with each shortcode representing an individual card. While cards are often presented inside a card group, a single card may stand on its own, too. A &lt;code&gt;card&lt;/code&gt; shortcode can held text, images or any other arbitrary kind of markdown or HTML markup as content. If your content is programming code, you are advised to make use of the &lt;code&gt;card-code&lt;/code&gt; shortcode, a special kind of card with code-highlighting and other optional features like line numbers, highlighting of certain lines, ….&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;shortcode-card-for-text-images-&#34;&gt;Shortcode &lt;code&gt;card&lt;/code&gt; (for text, images, …)&lt;/h3&gt;
&lt;p&gt;As stated above, a card is coded using one of the shortcode &lt;code&gt;card&lt;/code&gt; or &lt;code&gt;card-code&lt;/code&gt;.
If your content is any kind of text other than programming code, use the universal &lt;code&gt;card&lt;/code&gt;shortcode. The following code sample demonstrates how to code a card element:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;**Imagine**&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Artist and songwriter: John Lennon&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;subtitle&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Co-writer: Yoko Ono&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;          &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;footer&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;![SignatureJohnLennon](https://server.tld/…/signature.png \&amp;#34;Signature John Lennon\&amp;#34;)&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
Imagine there&amp;#39;s no heaven, It&amp;#39;s easy if you try&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;br&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&amp;gt;&lt;/span&gt;
No hell below us, above us only sky&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;br&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;/&amp;gt;&lt;/span&gt;
Imagine all the people living for today…

…
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This code translates to the left card shown below, showing the lyrics of John Lennon&amp;rsquo;s famous song &lt;code&gt;Imagine&lt;/code&gt;. A second explanatory card element to the right indicates and explains the individual components of a card:&lt;/p&gt;
&lt;div class=&#34;card-deck mb-4&#34;&gt;
&lt;div class=&#34;card mb-4&#34;&gt;
  
    &lt;div class=&#34;card-header&#34;&gt;
      
        &lt;strong&gt;Imagine&lt;/strong&gt;
      
    &lt;/div&gt;
  
  &lt;div class=&#34;card-body&#34;&gt;
    
      &lt;h5 class=&#34;card-title&#34;&gt;
        
          Artist and songwriter: John Lennon
        
      &lt;/h5&gt;
    
    
      &lt;h6 class=&#34;card-title mb-2 text-muted&#34;&gt;
        
          Co-writer: Yoko Ono
        
      &lt;/h6&gt;
    
    
      &lt;p class=&#34;card-text&#34;&gt;
        
          &lt;p&gt;Imagine there&amp;rsquo;s no heaven, It&amp;rsquo;s easy if you try&lt;br/&gt;
No hell below us, above us only sky&lt;br/&gt;
Imagine all the people living for today…&lt;/p&gt;
&lt;p&gt;Imagine there&amp;rsquo;s no countries, it isn&amp;rsquo;t hard to do&lt;br/&gt;
Nothing to kill or die for, and no religion too&lt;br/&gt;
Imagine all the people living life in peace…&lt;/p&gt;
&lt;p&gt;Imagine no possessions, I wonder if you can&lt;br/&gt;
No need for greed or hunger - a brotherhood of man&lt;br/&gt;
Imagine all the people sharing all the world…&lt;/p&gt;
&lt;p&gt;You may say I&amp;rsquo;m a dreamer, but I&amp;rsquo;m not the only one&lt;br/&gt;
I hope someday you&amp;rsquo;ll join us and the world will live as one&lt;/p&gt;

        
      &lt;/p&gt;
    
  &lt;/div&gt;
  
    &lt;div class=&#34;card-footer&#34;&gt;
      
        &lt;img src=&#34;https://upload.wikimedia.org/wikipedia/commons/thumb/5/51/Firma_de_John_Lennon.svg/320px-Firma_de_John_Lennon.svg.png&#34; alt=&#34;SignatureJohnLennon&#34; title=&#34;Signature John Lennon&#34;&gt;
      
    &lt;/div&gt;
  
&lt;/div&gt;

&lt;div class=&#34;card mb-4&#34;&gt;
  
    &lt;div class=&#34;card-header&#34;&gt;
      
        &lt;strong&gt;Header&lt;/strong&gt;: specified via named parameter &lt;code&gt;Header&lt;/code&gt;
      
    &lt;/div&gt;
  
  &lt;div class=&#34;card-body&#34;&gt;
    
      &lt;h5 class=&#34;card-title&#34;&gt;
        
          &lt;strong&gt;Card title&lt;/strong&gt;: specified via named parameter &lt;code&gt;title&lt;/code&gt;
        
      &lt;/h5&gt;
    
    
      &lt;h6 class=&#34;card-title mb-2 text-muted&#34;&gt;
        
          &lt;strong&gt;Card subtitle&lt;/strong&gt;: specified via named parameter &lt;code&gt;subtitle&lt;/code&gt;
        
      &lt;/h6&gt;
    
    
      &lt;p class=&#34;card-text&#34;&gt;
        
          &lt;strong&gt;Content&lt;/strong&gt;: inner content of the shortcode, this may be formatted text, images, videos, … . If the extension of your page file equals &lt;code&gt;.md&lt;/code&gt;, markdown format is expected, otherwise, your content will be treated as plain HTML.
        
      &lt;/p&gt;
    
  &lt;/div&gt;
  
    &lt;div class=&#34;card-footer&#34;&gt;
      
        &lt;strong&gt;Footer&lt;/strong&gt;: specified via named parameter &lt;code&gt;footer&lt;/code&gt;
      
    &lt;/div&gt;
  
&lt;/div&gt;

&lt;/div&gt;
&lt;p&gt;While the main content of the card is taken from the inner markup of the &lt;code&gt;card&lt;/code&gt; shortcode, the optional elements &lt;code&gt;footer&lt;/code&gt;, &lt;code&gt;header&lt;/code&gt;, &lt;code&gt;title&lt;/code&gt;, and &lt;code&gt;subtitle&lt;/code&gt; are all specified as named parameters of the shortcode.&lt;/p&gt;
&lt;h3 id=&#34;shortcode-card-code-for-programming-code&#34;&gt;Shortcode &lt;code&gt;card-code&lt;/code&gt; (for programming code)&lt;/h3&gt;
&lt;p&gt;In case you want to display programming code on your card, a special shortcode &lt;code&gt;card-code&lt;/code&gt; is provided for this purpose. The following sample demonstrates how to code a card element with the famous &lt;code&gt;Hello world!&lt;/code&gt;application coded in C:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;code&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;**C**&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;lang&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;C&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
#include &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;stdio.h&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
#include &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;stdlib.h&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;

int main(void)
{
  puts(&amp;#34;Hello World!&amp;#34;);
  return EXIT_SUCCESS;
}
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;-&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;code&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This code translates to the card shown below:&lt;/p&gt;
&lt;div class=&#34;card&#34;&gt;
  
  
    
  
  
  &lt;div class=&#34;card-header bg-white&#34;&gt;&lt;strong&gt;C&lt;/strong&gt;&lt;/div&gt;
  
  &lt;div class=&#34;card-body code p-l0 m-0&#34;&gt;
      &lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-C&#34; data-lang=&#34;C&#34;&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;#include&lt;/span&gt; &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;&amp;lt;stdio.h&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;#include&lt;/span&gt; &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;&amp;lt;stdlib.h&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;&lt;/span&gt;
&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;int&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;main&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;void&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;)&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;{&lt;/span&gt;
  &lt;span style=&#34;color:#000&#34;&gt;puts&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Hello World!&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;);&lt;/span&gt;
  &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;return&lt;/span&gt; &lt;span style=&#34;color:#000&#34;&gt;EXIT_SUCCESS&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;p&gt;&lt;br/&gt;The &lt;code&gt;card-code&lt;/code&gt; shortcode can optionally held the named parameters &lt;code&gt;lang&lt;/code&gt; and/or &lt;code&gt;highlight&lt;/code&gt;. The values of these optional parameters are passed on as second &lt;code&gt;LANG&lt;/code&gt; and third &lt;code&gt;OPTIONS&lt;/code&gt; arguments to Hugo&amp;rsquo;s built-in &lt;a href=&#34;https://gohugo.io/functions/highlight/&#34;&gt;&lt;code&gt;highlight&lt;/code&gt;&lt;/a&gt; function which is used to render the code block presented on the card.&lt;/p&gt;
&lt;h3 id=&#34;card-groups&#34;&gt;Card groups&lt;/h3&gt;
&lt;p&gt;Displaying two ore more cards side by side can be easily achieved by putting them between the opening and closing elements of a &lt;code&gt;cardpane&lt;/code&gt; shortcode.
The general markup of a card group resembles closely the markup of a tabbed pane:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;cardpane&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Header card 1&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
    Content card 1
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Header card 2&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
    Content card 2
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;header&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Header card 3&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
    Content card 3
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;card&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;cardpane&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Contrary to tabs, cards are presented side by side, however. This is especially useful it you want to compare different programming techniques (traditional vs. modern) on two cards, like demonstrated in the example above:&lt;/p&gt;
&lt;div class=&#34;card-deck mb-4&#34;&gt;
&lt;div class=&#34;card&#34;&gt;
  
  
  
  &lt;div class=&#34;card-header bg-white&#34;&gt;&lt;strong&gt;Java 5&lt;/strong&gt;&lt;/div&gt;
  
  &lt;div class=&#34;card-body code p-l0 m-0&#34;&gt;
      &lt;pre&gt;&lt;code&gt;
File[] hiddenFiles = new File(&amp;#34;directory_name&amp;#34;)
  .listFiles(new FileFilter() {
    public boolean accept(File file) {
      return file.isHidden();
    }
  });
&lt;/code&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;div class=&#34;card&#34;&gt;
  
  
  
  &lt;div class=&#34;card-header bg-white&#34;&gt;&lt;strong&gt;Java 8, Lambda expression&lt;/strong&gt;&lt;/div&gt;
  
  &lt;div class=&#34;card-body code p-l0 m-0&#34;&gt;
      &lt;pre&gt;&lt;code&gt;
File[] hiddenFiles = new File(&amp;#34;directory_name&amp;#34;)
  .listFiles(File::isHidden);
&lt;/code&gt;&lt;/pre&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;/div&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Logos and Images</title>
      <link>/docs/adding-content/iconsimages/</link>
      <pubDate>Thu, 05 Jan 2017 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/iconsimages/</guid>
      <description>
        
        
        &lt;h2 id=&#34;add-your-logo&#34;&gt;Add your logo&lt;/h2&gt;
&lt;p&gt;Add your project logo as &lt;code&gt;assets/icons/logo.svg&lt;/code&gt; in your project. This overrides the default Docsy logo in the theme. If you don&amp;rsquo;t want a project logo, set &lt;code&gt;navbar_logo&lt;/code&gt; to &lt;code&gt;false&lt;/code&gt; (or delete the variable) in your &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;navbar_logo = false
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;If you decide at a later stage that you&amp;rsquo;d like to add a logo to your navbar, you can set the parameter to &lt;code&gt;true&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;navbar_logo = true
&lt;/code&gt;&lt;/pre&gt;

&lt;div class=&#34;alert alert-primary&#34; role=&#34;alert&#34;&gt;
&lt;h4 class=&#34;alert-heading&#34;&gt;Tip&lt;/h4&gt;

    &lt;p&gt;Your logo is included in the default Docsy navbar as an inline SVG with the following CSS styling (from &lt;a href=&#34;https://github.com/google/docsy/blob/master/assets/scss/_nav.scss&#34;&gt;&lt;code&gt;_nav.scss&lt;/code&gt;&lt;/a&gt;):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;svg {
    display: inline-block;
    margin: 0 10px;
    height: 30px;
}
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;To ensure your logo displays correctly, you may want to resize it, ensure it doesn&amp;rsquo;t have height and width attributes so that its size is fully responsive, or override the default styling with your own CSS.&lt;/p&gt;


&lt;/div&gt;

&lt;h2 id=&#34;add-your-favicons&#34;&gt;Add your favicons&lt;/h2&gt;
&lt;p&gt;The easiest way to do this is to create a set of favicons via &lt;a href=&#34;http://cthedot.de/icongen&#34;&gt;http://cthedot.de/icongen&lt;/a&gt; (which lets you create a huge range of icon sizes and options from a single image) and/or &lt;a href=&#34;https://favicon.io&#34;&gt;https://favicon.io&lt;/a&gt;, and put them in your site project&amp;rsquo;s &lt;code&gt;static/favicons&lt;/code&gt; directory. This will override the default favicons from the theme.&lt;/p&gt;
&lt;p&gt;Note that &lt;a href=&#34;https://favicon.io&#34;&gt;https://favicon.io&lt;/a&gt;  doesn&amp;rsquo;t create as wide a range of sizes as Icongen but &lt;em&gt;does&lt;/em&gt; let you quickly create favicons from text: if you want to create text favicons you can use this site to generate them, then use Icongen to create more sizes (if necessary) from your generated &lt;code&gt;.png&lt;/code&gt; file.&lt;/p&gt;
&lt;p&gt;If you have special favicon requirements, you can create your own &lt;code&gt;layouts/partials/favicons.html&lt;/code&gt; with your links.&lt;/p&gt;
&lt;h2 id=&#34;add-images&#34;&gt;Add images&lt;/h2&gt;
&lt;h3 id=&#34;landing-pages&#34;&gt;Landing pages&lt;/h3&gt;
&lt;p&gt;Docsy&amp;rsquo;s &lt;a href=&#34;/docs/adding-content/shortcodes/#blocks-cover&#34;&gt;&lt;code&gt;blocks/cover&lt;/code&gt; shortcode&lt;/a&gt; make it easy to add large cover images to your landing pages. The shortcode looks for an image with the word &amp;ldquo;background&amp;rdquo; in the name inside the landing page&amp;rsquo;s &lt;a href=&#34;https://gohugo.io/content-management/page-bundles/&#34;&gt;Page Bundle&lt;/a&gt; - so, for example, if you&amp;rsquo;ve copied the example site, the landing page image in &lt;code&gt;content/en/_index.html&lt;/code&gt; is &lt;code&gt;content/en/featured-background.jpg&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;You specify the preferred display height of a cover block container (and hence its image) using the block&amp;rsquo;s &lt;code&gt;height&lt;/code&gt; parameter.  For a full viewport height, use &lt;code&gt;full&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;{{&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;cover&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Welcome to the Docsy Example Project!&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;image_anchor&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;top&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;height&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;full&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;color&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;orange&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;}}
...
{{&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt; /blocks/cover &amp;gt;}}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For a shorter image, as in the example site&amp;rsquo;s About page, use one of &lt;code&gt;min&lt;/code&gt;, &lt;code&gt;med&lt;/code&gt;, &lt;code&gt;max&lt;/code&gt; or &lt;code&gt;auto&lt;/code&gt; (the actual height of the image):&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;{{&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;blocks&lt;/span&gt;&lt;span style=&#34;color:#a40000&#34;&gt;/&lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;cover&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;About the Docsy Example&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;image_anchor&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;bottom&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;height&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;min&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;}}
...
{{&lt;span style=&#34;color:#a40000&#34;&gt;&amp;lt;&lt;/span&gt; /blocks/cover &amp;gt;}}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;other-pages&#34;&gt;Other pages&lt;/h3&gt;
&lt;p&gt;To add inline images to other pages, use the &lt;a href=&#34;/docs/adding-content/shortcodes/#imgproc&#34;&gt;&lt;code&gt;imgproc&lt;/code&gt; shortcode&lt;/a&gt;. Alternatively, if you prefer, just use regular Markdown or HTML images and add your image files to your project&amp;rsquo;s &lt;code&gt;static&lt;/code&gt; directory. You can find out more about using this directory in &lt;a href=&#34;/docs/adding-content/content/#adding-static-content&#34;&gt;Adding static content&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;images-used-on-this-site&#34;&gt;Images used on this site&lt;/h2&gt;
&lt;p&gt;Images used as background images in this site are in the &lt;a href=&#34;https://commons.wikimedia.org/wiki/User:Bep/gallery#Wed_Aug_01_16:16:51_CEST_2018&#34;&gt;public domain&lt;/a&gt; and can be used freely. The porridge image in the example site is by &lt;a href=&#34;https://pixabay.com/users/iha31-560629/?utm_source=link-attribution&amp;amp;utm_medium=referral&amp;amp;utm_campaign=image&amp;amp;utm_content=531209&#34;&gt;iha31&lt;/a&gt; from &lt;a href=&#34;https://pixabay.com/?utm_source=link-attribution&amp;amp;utm_medium=referral&amp;amp;utm_campaign=image&amp;amp;utm_content=531209&#34;&gt;Pixabay&lt;/a&gt;.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Print Support</title>
      <link>/docs/adding-content/print/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/print/</guid>
      <description>
        
        
        &lt;p&gt;Individual documentation pages print well from most browsers as the layouts have been styled to omit navigational chrome from the printed output.&lt;/p&gt;
&lt;p&gt;On some sites, it can be useful to enable a &amp;ldquo;print entire section&amp;rdquo; feature (as seen in this user guide).  Selecting this option renders the entire current top-level section (such as Content and Customization for this page) with all of its child pages and sections in a format suited to printing, complete with a table of contents for the section.&lt;/p&gt;
&lt;p&gt;To enable this feature, add the &amp;ldquo;print&amp;rdquo; output format in your site&amp;rsquo;s &lt;code&gt;config.toml&lt;/code&gt; file for the &amp;ldquo;section&amp;rdquo; type:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;outputs&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;section&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;HTML&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;RSS&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;print&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The site should then show a &amp;ldquo;Print entire section&amp;rdquo; link in the right hand navigation.&lt;/p&gt;
&lt;h2 id=&#34;further-customization&#34;&gt;Further Customization&lt;/h2&gt;
&lt;h3 id=&#34;disabling-the-toc&#34;&gt;Disabling the ToC&lt;/h3&gt;
&lt;p&gt;To disable showing the the table of contents in the printable view, set the &lt;code&gt;disable_toc&lt;/code&gt; param to &lt;code&gt;true&lt;/code&gt;, either in the page front matter, or in &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;print&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;disable_toc&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;layout-hooks&#34;&gt;Layout hooks&lt;/h2&gt;
&lt;p&gt;A number of layout partials and hooks are defined that can be used to customize the printed format.  These can be found in &lt;code&gt;layouts/partials/print&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Hooks can be defined on a per-type basis.  For example, you may want to customize the layouts of heading for &amp;ldquo;blog&amp;rdquo; pages vs &amp;ldquo;docs&amp;rdquo;. This can be achieved by creating &lt;code&gt;layouts/partials/print/page-heading-&amp;lt;type&amp;gt;.html&lt;/code&gt; - eg. &lt;code&gt;page-heading-blog.html&lt;/code&gt;.  It defaults to using the page title and description as a heading.&lt;/p&gt;
&lt;p&gt;Similarly, the formatting for each page can be customized by creating &lt;code&gt;layouts/partials/print/content-&amp;lt;type&amp;gt;.html&lt;/code&gt;.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Analytics and User Feedback</title>
      <link>/docs/adding-content/feedback/</link>
      <pubDate>Wed, 05 Jun 2019 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/feedback/</guid>
      <description>
        
        
        &lt;h2 id=&#34;adding-analytics&#34;&gt;Adding Analytics&lt;/h2&gt;
&lt;p&gt;The Docsy theme contains built-in support for &lt;a href=&#34;https://analytics.google.com/analytics/web/&#34;&gt;Google Analytics&lt;/a&gt; via Hugo&amp;rsquo;s &lt;a href=&#34;https://gohugo.io/templates/internal/#google-analytics&#34;&gt;internal template&lt;/a&gt;, which is included in the theme. Once you set Analytics up as described below, usage information for your site (such as page views) is sent to your Google Analytics account.&lt;/p&gt;
&lt;h3 id=&#34;setup&#34;&gt;Setup&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Ensure you have &lt;a href=&#34;https://support.google.com/analytics/answer/1042508&#34;&gt;set up a Google Analytics property&lt;/a&gt; for your site: this gives you an Analytics ID to add to your config, which Docsy in turn adds to all your site&amp;rsquo;s pages.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Open &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Enable Google Analytics by setting the Tracking ID property to your site&amp;rsquo;s Analytics ID.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt; [services.googleAnalytics]
 id = &amp;quot;UA-00000000-0&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Save and close &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ensure that your site is built with &lt;code&gt;HUGO_ENV=&amp;quot;production&amp;quot;&lt;/code&gt;, as Docsy only adds Analytics tracking to production-ready sites. You can specify this variable as a command line flag to Hugo:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ env HUGO_ENV=&amp;quot;production&amp;quot; hugo
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Alternatively, if you&amp;rsquo;re using Netlify, you can specify it as a Netlify &lt;a href=&#34;https://www.netlify.com/docs/continuous-deployment/#build-environment-variables&#34;&gt;deployment setting&lt;/a&gt; in &lt;code&gt;netlify.toml&lt;/code&gt; or the Netlify UI, along with the Hugo version.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h2 id=&#34;user-feedback&#34;&gt;User Feedback&lt;/h2&gt;
&lt;p&gt;By default Docsy puts a &amp;ldquo;was this page helpful?&amp;rdquo; feedback widget at the bottom of every
documentation page, as shown in Figure 1.&lt;/p&gt;
&lt;figure&gt;
  &lt;img src=&#34;/images/feedback.png&#34;
       alt=&#34;The user is presented with the text &#39;Was this page helpful?&#39; followed
            by &#39;Yes&#39; and &#39;No&#39; buttons.&#34;/&gt;
  &lt;figcaption&gt;Figure 1. The feedback widget, outlined in red&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;p&gt;After clicking &lt;strong&gt;Yes&lt;/strong&gt; the user should see a response like Figure 2. You can configure the
response text in &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;figure&gt;
  &lt;img src=&#34;/images/yes.png&#34;
       alt=&#34;After clicking &#39;Yes&#39; the widget responds with &#39;Glad to hear it!
            Please tell us how we can improve.&#39; and the second sentence is a link which,
            when clicked, opens GitHub and lets the user create an issue on the
            documentation repository.&#34;/&gt;
  &lt;figcaption&gt;
    Figure 2. An example &lt;b&gt;Yes&lt;/b&gt; response
  &lt;/figcaption&gt;
&lt;/figure&gt;
&lt;h3 id=&#34;how-is-this-data-useful&#34;&gt;How is this data useful?&lt;/h3&gt;
&lt;p&gt;When you have a lot of documentation, and not enough time to update it all, you can use the
&amp;ldquo;was this page helpful?&amp;rdquo; feedback data to help you decide which pages to prioritize. In general,
start with the pages with a lot of pageviews and low ratings. &amp;ldquo;Low ratings&amp;rdquo; in this context
means the pages where users are clicking &lt;strong&gt;No&lt;/strong&gt; &amp;mdash; the page wasn&amp;rsquo;t helpful &amp;mdash; more often than
&lt;strong&gt;Yes&lt;/strong&gt; &amp;mdash; the page was helpful. You can also study your highly-rated pages to develop hypotheses
around why your users find them helpful.&lt;/p&gt;
&lt;p&gt;In general, you can develop more certainty around what patterns your users find helpful or
unhelpful if you introduce isolated changes in your documentation whenever possible. For example,
suppose that you find a tutorial that no longer matches the product. You update the instructions,
check back in a month, and the score has improved. You now have a correlation between up-to-date
instructions and higher ratings. Or, suppose you study your highly-rated pages and discover that
they all start with code samples. You find 10 other pages with their code samples at the bottom,
move the samples to the top, and discover that each page&amp;rsquo;s score has improved. Since
this was the only change you introduced on each page, it&amp;rsquo;s more reasonable to believe that
your users find code samples at the top of pages helpful. The scientific method, applied to
technical writing, in other words!&lt;/p&gt;
&lt;h3 id=&#34;setup-1&#34;&gt;Setup&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Open &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ensure that Google Analytics is enabled, as described &lt;a href=&#34;#setup&#34;&gt;above&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Set the response text that users see after clicking &lt;strong&gt;Yes&lt;/strong&gt; or &lt;strong&gt;No&lt;/strong&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt; [params.ui.feedback]
 enable = true
 yes = &#39;Glad to hear it! Please &amp;lt;a href=&amp;quot;https://github.com/USERNAME/REPOSITORY/issues/new&amp;quot;&amp;gt;tell us how we can improve&amp;lt;/a&amp;gt;.&#39;
 no = &#39;Sorry to hear that. Please &amp;lt;a href=&amp;quot;https://github.com/USERNAME/REPOSITORY/issues/new&amp;quot;&amp;gt;tell us how we can improve&amp;lt;/a&amp;gt;.&#39;
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Save and close &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&#34;access-the-feedback-data&#34;&gt;Access the feedback data&lt;/h3&gt;
&lt;p&gt;This section assumes basic familiarity with Google Analytics. For example, you should know how
to check pageviews over a certain time range and navigate between accounts if you have access to
multiple documentation sites.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Open Google Analytics.&lt;/li&gt;
&lt;li&gt;Open &lt;strong&gt;Behavior&lt;/strong&gt; &amp;gt; &lt;strong&gt;Events&lt;/strong&gt; &amp;gt; &lt;strong&gt;Overview&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;In the &lt;strong&gt;Event Category&lt;/strong&gt; table click the &lt;strong&gt;Helpful&lt;/strong&gt; row. Click &lt;strong&gt;view full report&lt;/strong&gt; if
you don&amp;rsquo;t see the &lt;strong&gt;Helpful&lt;/strong&gt; row.&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Event Label&lt;/strong&gt;. You now have a page-by-page breakdown of ratings.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Here&amp;rsquo;s what the 4 columns represent:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Total Events&lt;/strong&gt; is the total number of times that users clicked &lt;em&gt;either&lt;/em&gt; &lt;strong&gt;Yes&lt;/strong&gt; or &lt;strong&gt;No&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Unique Events&lt;/strong&gt; provides a rough indication of how frequently users are rating your pages per
session. For example, suppose your &lt;strong&gt;Total Events&lt;/strong&gt; is 5000, and &lt;strong&gt;Unique Events&lt;/strong&gt; is 2500.
This means that you have 2500 users who are rating 2 pages per session.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Event Value&lt;/strong&gt; isn&amp;rsquo;t that useful.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Avg. Value&lt;/strong&gt; is the aggregated rating for that page. The value is always between 0
and 1. When users click &lt;strong&gt;No&lt;/strong&gt; a value of 0 is sent to Google Analytics. When users click
&lt;strong&gt;Yes&lt;/strong&gt; a value of 1 is sent. You can think of it as a percentage. If a page has an
&lt;strong&gt;Avg. Value&lt;/strong&gt; of 0.67, it means that 67% of users clicked &lt;strong&gt;Yes&lt;/strong&gt; and 33% clicked &lt;strong&gt;No&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The underlying Google Analytics infrastructure that stores the &amp;ldquo;was this page helpful?&amp;rdquo; data is
called &lt;a href=&#34;https://developers.google.com/analytics/devguides/collection/analyticsjs/events&#34;&gt;Events&lt;/a&gt;. See &lt;a href=&#34;https://github.com/google/docsy/pull/1/files&#34;&gt;docsy pull request #1&lt;/a&gt; to see exactly
what happens when a user clicks &lt;strong&gt;Yes&lt;/strong&gt; or &lt;strong&gt;No&lt;/strong&gt;. It&amp;rsquo;s just a &lt;code&gt;click&lt;/code&gt; event listener that
fires the Google Analytics JavaScript function for logging an Event, disables the &lt;strong&gt;Yes&lt;/strong&gt; and
&lt;strong&gt;No&lt;/strong&gt; buttons, and shows the response text.&lt;/p&gt;
&lt;h3 id=&#34;disable-feedback-on-a-single-page&#34;&gt;Disable feedback on a single page&lt;/h3&gt;
&lt;p&gt;Add &lt;code&gt;hide_feedback: true&lt;/code&gt; to the page&amp;rsquo;s front matter.&lt;/p&gt;
&lt;h3 id=&#34;disable-feedback-on-all-pages&#34;&gt;Disable feedback on all pages&lt;/h3&gt;
&lt;p&gt;Set &lt;code&gt;params.ui.feedback.enable&lt;/code&gt; to &lt;code&gt;false&lt;/code&gt; in &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;[params.ui.feedback]
enable = false
&lt;/code&gt;&lt;/pre&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Repository Links</title>
      <link>/docs/adding-content/repository-links/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/repository-links/</guid>
      <description>
        
        
        &lt;p&gt;The Docsy &lt;a href=&#34;/docs/adding-content/content/#adding-docs-and-blog-posts&#34;&gt;docs and blog layouts&lt;/a&gt; include links for readers to edit the page or create issues for your docs or project via your site&amp;rsquo;s source repository. The current generated links for each docs or blog page are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Edit this page&lt;/strong&gt;: Brings the user to an editable version of the page content in their fork (if available) of your docs repo. If the user doesn&amp;rsquo;t have a current fork of your docs repo, they are invited to create one before making their edit. The user can then create a pull request for your docs.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Create child page&lt;/strong&gt;: Brings the user to a create new file form in their fork of your docs repo.  The new file will be located as a child of the page they clicked the link on.  The form will be pre-populated with a template the user can edit to create their page.  You can change this by adding &lt;code&gt;assets/stubs/new-page-template.md&lt;/code&gt; to your own project.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Create documentation issue&lt;/strong&gt;: Brings the user to a new issue form in your docs repo with the name of the current page as the issue&amp;rsquo;s title.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Create project issue&lt;/strong&gt; (optional): Brings the user to a new issue form in your project repo. This can be useful if you have separate project and docs repos and your users want to file issues against the project feature being discussed rather than your docs.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This page shows you how to configure these links using your &lt;code&gt;config.toml&lt;/code&gt; file.&lt;/p&gt;
&lt;p&gt;Currently Docsy supports only GitHub repository links &amp;ldquo;out of the box&amp;rdquo;. If you are using another repository such as Bitbucket and would like generated repository links, feel free to &lt;a href=&#34;/docs/contribution-guidelines/&#34;&gt;add a feature request or update our theme&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;link-configuration&#34;&gt;Link configuration&lt;/h2&gt;
&lt;p&gt;There are four variables you can configure in &lt;code&gt;config.toml&lt;/code&gt; to set up links, as well as one in your page metadata.&lt;/p&gt;
&lt;h3 id=&#34;github_repo&#34;&gt;&lt;code&gt;github_repo&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;The URL for your site&amp;rsquo;s source repository. This is used to generate the &lt;strong&gt;Edit this page&lt;/strong&gt;, &lt;strong&gt;Create child page&lt;/strong&gt;, and &lt;strong&gt;Create documentation issue&lt;/strong&gt; links.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;github_repo&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://github.com/google/docsy&amp;#34;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;github_subdir-optional&#34;&gt;&lt;code&gt;github_subdir&lt;/code&gt; (optional)&lt;/h3&gt;
&lt;p&gt;Specify a value here if your content directory is not in your repo&amp;rsquo;s root directory. For example, this site is in the &lt;code&gt;userguide&lt;/code&gt; subdirectory of its repo. Setting this value means that your edit links will go to the right page.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;github_subdir&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;userguide&amp;#34;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;github_project_repo-optional&#34;&gt;&lt;code&gt;github_project_repo&lt;/code&gt; (optional)&lt;/h3&gt;
&lt;p&gt;Specify a value here if you have a separate project repo and you&amp;rsquo;d like your users to be able to create issues against your project from the relevant docs. The &lt;strong&gt;Create project issue&lt;/strong&gt; link appears only if this is set.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;github_project_repo&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://github.com/google/docsy&amp;#34;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;github_branch-optional&#34;&gt;&lt;code&gt;github_branch&lt;/code&gt; (optional)&lt;/h3&gt;
&lt;p&gt;Specify a value here if you have would like to reference a different branch for the other github settings like &lt;strong&gt;Edit this page&lt;/strong&gt; or &lt;strong&gt;Create project issue&lt;/strong&gt;.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;github_branch&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;release&amp;#34;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;github_url-optional&#34;&gt;&lt;code&gt;github_url&lt;/code&gt; (optional)&lt;/h3&gt;
&lt;p&gt;Specify a value for this &lt;strong&gt;in your page metadata&lt;/strong&gt; to set a specific edit URL for this page, as in the following example:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;title&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Example Page&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;linkTitle&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Example Page&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;date&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;2017-01-05&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;github_url&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;https://github.com/MyUsername/myrepo/edit/main/README.md&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;description&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;An example page.&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;---&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This can be useful if you have page source files in multiple Git repositories, or require a non-GitHub URL.  Pages using this value have &lt;strong&gt;Edit this page&lt;/strong&gt; links only.&lt;/p&gt;

      </description>
    </item>
    
    <item>
      <title>Docs: Taxonomy Support</title>
      <link>/docs/adding-content/taxonomy/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/docs/adding-content/taxonomy/</guid>
      <description>
        
        
        &lt;p&gt;Docsy supports Hugo&amp;rsquo;s Taxonomies (see: &lt;a href=&#34;https://gohugo.io/content-management/taxonomies/&#34;&gt;https://gohugo.io/content-management/taxonomies/&lt;/a&gt;) in its docs and blog section. You can see the default layout and can test the behavior of the generated links on this page.&lt;/p&gt;
&lt;h2 id=&#34;terminology&#34;&gt;Terminology&lt;/h2&gt;
&lt;p&gt;To understand the usage of taxonomies you should understand the following terminology:&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;Taxonomy&lt;/dt&gt;
&lt;dd&gt;a categorization that can be used to classify content - e.g.: Tags, Categories, Projects, People&lt;/dd&gt;
&lt;dt&gt;Term&lt;/dt&gt;
&lt;dd&gt;a key within the taxonomy - e.g. within projects: Project A, Project B&lt;/dd&gt;
&lt;dt&gt;Value&lt;/dt&gt;
&lt;dd&gt;a piece of content assigned to a term - e.g. a page of your site, that belongs to a specific project&lt;/dd&gt;
&lt;/dl&gt;
&lt;p&gt;A example taxonomy for a movie website you can find in the official Hugo docs: &lt;a href=&#34;https://gohugo.io/content-management/taxonomies/#example-taxonomy-movie-website&#34;&gt;https://gohugo.io/content-management/taxonomies/#example-taxonomy-movie-website&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;parameters&#34;&gt;Parameters&lt;/h2&gt;
&lt;p&gt;There are various parameter to control the functionality of taxonomies in the &lt;code&gt;config.toml&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;By default taxonomies for &lt;code&gt;tags&lt;/code&gt; and &lt;code&gt;categories&lt;/code&gt; are enabled in Hugo (see: &lt;a href=&#34;https://gohugo.io/content-management/taxonomies/#default-taxonomies)&#34;&gt;https://gohugo.io/content-management/taxonomies/#default-taxonomies)&lt;/a&gt;. In Docsy taxonomies are &lt;strong&gt;disabled&lt;/strong&gt; by default in the &lt;code&gt;config.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000&#34;&gt;disableKinds&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomyTerm&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;If you want to enable taxonomies in Docsy you have to delete (or comment out) this line in your projects &lt;code&gt;config.toml&lt;/code&gt;. Then the taxonomy pages for &lt;code&gt;tags&lt;/code&gt; and &lt;code&gt;categories&lt;/code&gt; will be generated by Hugo. If you want to use other taxonomies you have to define them in your &lt;code&gt;config.toml&lt;/code&gt;. If you want to use beside your own taxonomies also the default taxonomies &lt;code&gt;tags&lt;/code&gt; and &lt;code&gt;categories&lt;/code&gt;, you also have to define them beside your own taxonomies. You need to provide both the plural and singular labels for each taxonomy.&lt;/p&gt;
&lt;p&gt;With the following example you define a additional taxonomy &lt;code&gt;projects&lt;/code&gt; beside the default taxonomies &lt;code&gt;tags&lt;/code&gt; and &lt;code&gt;categories&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;taxonomies&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;tag&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;tags&amp;#34;&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;category&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;categories&amp;#34;&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;project&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;projects&amp;#34;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;You can use the following parameters in your projects &lt;code&gt;config.toml&lt;/code&gt; to control the output of the assigned taxonomy terms for each article resp. page of your docs and/or blog section in Docsy or a &amp;ldquo;tag cloud&amp;rdquo; in Docsy&amp;rsquo;s right sidebar:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;params&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;taxonomy&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;taxonomyCloud&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;projects&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;tags&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt; &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# set taxonomyCloud = [] to hide taxonomy clouds&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;taxonomyCloudTitle&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Our Projects&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;Tag Cloud&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt; &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# if used, must have same lang as taxonomyCloud&lt;/span&gt;
&lt;span style=&#34;color:#000&#34;&gt;taxonomyPageHeader&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;[&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;tags&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;,&lt;/span&gt; &lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;categories&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;]&lt;/span&gt; &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;# set taxonomyPageHeader = [] to hide taxonomies on the page headers&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The settings above would only show a taxonomy cloud for &lt;code&gt;projects&lt;/code&gt; and &lt;code&gt;tags&lt;/code&gt; (with the headlines &amp;ldquo;Our Projects&amp;rdquo; and &amp;ldquo;Tag Cloud&amp;rdquo;) in Docsy&amp;rsquo;s right sidebar and the assigned terms for the taxonomies &lt;code&gt;tags&lt;/code&gt; and &lt;code&gt;categories&lt;/code&gt; for each page.&lt;/p&gt;
&lt;p&gt;To disable any taxonomy cloud you have to set the Parameter &lt;code&gt;taxonomyCloud = []&lt;/code&gt; resp. if you doesn&amp;rsquo;t want to show the assigned terms you have to set &lt;code&gt;taxonomyPageHeader = []&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;As default the plural label of a taxonomy is used as it cloud title. You can overwrite the default cloud title with &lt;code&gt;taxonomyCloudTitle&lt;/code&gt;. But if you do so, you have to define a manual title for each enabled taxonomy cloud (&lt;code&gt;taxonomyCloud&lt;/code&gt; and &lt;code&gt;taxonomyCloudTitle&lt;/code&gt; must have the same length!).&lt;/p&gt;
&lt;p&gt;If you doesn&amp;rsquo;t set the parameters &lt;code&gt;taxonomyCloud&lt;/code&gt; resp. &lt;code&gt;taxonomyPageHeader&lt;/code&gt; the taxonomy clouds resp. assigned terms for all defined taxonomies will be generated.&lt;/p&gt;
&lt;h2 id=&#34;partials&#34;&gt;Partials&lt;/h2&gt;
&lt;p&gt;The by default used partials for displaying taxonomies are so defined, that you should be able to use them also easily in your own layouts.&lt;/p&gt;
&lt;h3 id=&#34;taxonomy_terms_article&#34;&gt;taxonomy_terms_article&lt;/h3&gt;
&lt;p&gt;The partial &lt;code&gt;taxonomy_terms_article&lt;/code&gt; shows all assigned terms of an given taxonomy (partial parameter &lt;code&gt;taxo&lt;/code&gt;) of an article respectively page (partial parameter &lt;code&gt;context&lt;/code&gt;, most of the time the current page or context &lt;code&gt;.&lt;/code&gt;).&lt;/p&gt;
&lt;p&gt;Example usage in &lt;code&gt;layouts/docs/list.html&lt;/code&gt; for the header of each page in the docs section:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$context&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:=&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;range&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$taxo&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;,&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$taxo_map&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:=&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;.Site.Taxonomies&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;partial&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy_terms_article.html&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;dict&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;context&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$context&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxo&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$taxo&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;)&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;end&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This will gave you for each in the current page (resp. context) defined taxonomy a list with all assigned terms:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy taxonomy-terms-article taxo-categories&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;h5&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-title&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Categories:&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;h5&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;ul&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-terms&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-term&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;//localhost:1313/categories/taxonomies/&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;data-taxonomy-term&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomies&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-label&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Taxonomies&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;ul&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy taxonomy-terms-article taxo-tags&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;h5&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-title&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Tags:&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;h5&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;ul&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-terms&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-term&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;//localhost:1313/tags/tagging/&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;data-taxonomy-term&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;tagging&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-label&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Tagging&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-term&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;//localhost:1313/tags/structuring-content/&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;data-taxonomy-term&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;structuring-content&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-label&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Structuring Content&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-term&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;//localhost:1313/tags/labelling/&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;data-taxonomy-term&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;labelling&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-label&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Labelling&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;ul&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;taxonomy_terms_cloud&#34;&gt;taxonomy_terms_cloud&lt;/h3&gt;
&lt;p&gt;The partial &lt;code&gt;taxonomy_terms_cloud&lt;/code&gt; shows all used terms of an given taxonomy (partial parameter &lt;code&gt;taxo&lt;/code&gt;) for your site (partial parameter &lt;code&gt;context&lt;/code&gt;, most of the time the current page or context &lt;code&gt;.&lt;/code&gt;) and with the parameter &lt;code&gt;title&lt;/code&gt; as headline.&lt;/p&gt;
&lt;p&gt;Example usage in partial &lt;code&gt;taxonomy_terms_clouds&lt;/code&gt; for showing all defined taxonomies and its terms:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-go-html-template&#34; data-lang=&#34;go-html-template&#34;&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$context&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:=&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;.&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;range&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$taxo&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;,&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$taxo_map&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;:=&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#c4a000&#34;&gt;.Site.Taxonomies&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
  &lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;partial&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy_terms_cloud.html&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;dict&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;context&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$context&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxo&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$taxo&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;title&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;(&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;humanize&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;$taxo&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;)&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;)&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;{{&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;end&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8;text-decoration:underline&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#8f5902;font-style:italic&#34;&gt;}}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;As an example this will gave you for following HTML markup for the taxonomy &lt;code&gt;categories&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy taxonomy-terms-cloud taxo-categories&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;h5&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-title&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;Cloud of Categories&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;h5&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;ul&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-terms&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-term&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;//localhost:1313/categories/category-1/&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;data-taxonomy-term&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;category-1&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-label&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;category 1&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-count&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;3&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-term&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;//localhost:1313/categories/category-2/&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;data-taxonomy-term&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;category-2&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-label&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;category 2&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-count&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;1&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-term&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;//localhost:1313/categories/category-3/&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;data-taxonomy-term&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;category-3&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-label&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;category 3&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-count&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;2&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
    &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-term&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;href&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;//localhost:1313/categories/category-4/&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;data-taxonomy-term&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;category-4&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-label&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;category 4&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt; &lt;span style=&#34;color:#c4a000&#34;&gt;class&lt;/span&gt;&lt;span style=&#34;color:#ce5c00;font-weight:bold&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#4e9a06&#34;&gt;&amp;#34;taxonomy-count&amp;#34;&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;6&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;span&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;a&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;li&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
  &lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;ul&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;div&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&#34;taxonomy_terms_clouds&#34;&gt;taxonomy_terms_clouds&lt;/h3&gt;
&lt;p&gt;The partial &lt;code&gt;taxonomy_terms_clouds&lt;/code&gt; is a wrapper for the partial &lt;code&gt;taxonomy_terms_cloud&lt;/code&gt; with the only parameter &lt;code&gt;context&lt;/code&gt; (most of the time the current page or context &lt;code&gt;.&lt;/code&gt;) and checks the taxonomy parameters of you projects &lt;code&gt;config.toml&lt;/code&gt; to loop threw all listed taxonomies in the parameter &lt;code&gt;taxonomyCloud&lt;/code&gt; resp. all defined taxonomies of your page, if &lt;code&gt;taxonomyCloud&lt;/code&gt; isn&amp;rsquo;t set.&lt;/p&gt;
&lt;h2 id=&#34;multi-language-support-for-taxonomies&#34;&gt;Multi language support for taxonomies&lt;/h2&gt;
&lt;p&gt;The taxonomy terms associated content gets only counted and linked WITHIN the language! The control parameters for the taxonomy support can also get assigned language specific.&lt;/p&gt;

      </description>
    </item>
    
  </channel>
</rss>
