Footer

There are several options to configure the footer from the config.toml

# config.toml

    [params.footer]
        show_zerostatic_link = true
        show_footer_logo = true
        description = "Hugo Shard is startup theme for the Hugo static site generator. It is a purpose built startup archetype with on trend design asthetics."
        show_menu_footer_primary = true
        footer_primary_heading = "Product"
        show_menu_footer_secondary = true
        footer_secondary_heading = "Company"
        show_menu_footer_tertiary = true
        footer_tertiary_heading = "Support"

There are 3 footer menus that can enabled or disabled using the config above.

You can edit these menus in the config.toml

# Footer Menu Primary
[[menu.footer_primary]]
	name = "Home"
	url = "/"
    weight = 1

[[menu.footer_primary]]
	name = "Product"
	url = "/product/"
    weight = 2

[[menu.footer_primary]]
	name = "Pricing"
	url = "/pricing/"
	weight = 3

# Footer Menu Secondary
[[menu.footer_secondary]]
    name = "Blog"
    url = "/posts/"
    weight = 1

[[menu.footer_secondary]]
    name = "About"
    url = "/about/"
    weight = 2

[[menu.footer_secondary]]
    name = "Page 2"
    url = "/culture/"
    weight = 3

[[menu.footer_secondary]]
    name = "Page 3"
    url = "/page3/"
    weight = 4

[[menu.footer_secondary]]
    name = "Page 4"
    url = "/page4/"
    weight = 5

# Footer Menu Third
[[menu.footer_tertiary]]
    name = "Contact"
    url = "/contact/"
    weight = 1

[[menu.footer_tertiary]]
    name = "Privacy Policy"
    url = "/privacy/"
    weight = 2

[[menu.footer_tertiary]]
    name = "Terms Of Service"
    url = "/terms-of-service/"
    weight = 3