Git Product home page Git Product logo

Comments (4)

Bp3289 avatar Bp3289 commented on August 24, 2024 3

Unfortunately the repo is private, however I can explain how I made it work.

First off, I had to edit my config.toml.

There is an "identifier" property you can throw in. Then for whatever you want inside the dropdown, you need to add the property called "parent", like so:

`[[menu.main]]
name = "Resources"
identifier = "resources"
weight = 3

[[menu.main]]
name = "Blog"
parent = "resources"
url = "/blog/"`

Then in the html there is an "HasChildren" and "{{range .Children}}" properties that will need to be added, like so:

<ul> {{ $currentPage := . }} {{ range .Site.Menus.main }} {{ if .HasChildren }} <div class="dropdown"> <button class="dropbtn">Resources <i class="fa fa-caret-down"></i> </button> <div class="dropdown-content"> {{ range .Children }} <li class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}"> <a href="{{ .URL }}">{{ .Name }}</a> </li> {{ end }} </div> </div>

That's how I was able to get it working. Cheers!

from hugo-hero-theme.

Bp3289 avatar Bp3289 commented on August 24, 2024

Ended up building one, so it is possible! Closing out issue

from hugo-hero-theme.

JugglerX avatar JugglerX commented on August 24, 2024

Im glad you got it done. If your repo is public can you share the link, this is quite a common request.

from hugo-hero-theme.

firebone-be avatar firebone-be commented on August 24, 2024

@Bp3289
I know this post is a bit old but I am also looking to add submenus.

I tried adjusting the layouts/partials/main-menu.html but I am messing up somewhere.

This is what I have:

<div id="main-menu" class="main-menu">
  <ul>
    {{ $currentPage := . }}
    {{ range .Site.Menus.main }}
      {{ if .HasChildren }}
        <div class="dropdown"> <button class="dropbtn">Resources <i class="fa fa-caret-down"></i> </button>
          <div class="dropdown-content"> {{ range .Children }} 
            <li class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}"> 
              <a href="{{ .URL }}">{{ .Name }}</a> 
            </li>
      {{ end }}
        </div>
      </div>
    </ul>
  </div>

But getting unexpected eof error...

from hugo-hero-theme.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.