Giter Club home page Giter Club logo

Comments (3)

JohnAlbin avatar JohnAlbin commented on July 20, 2024

Hmm… given what I've learned about Handlebars over the weekend, that should work.

I'll have to take a look at #eachRoot and see what is going on.

from kss-node.

JohnAlbin avatar JohnAlbin commented on July 20, 2024

BTW, https://github.com/htanjo/kss-node-template has a multi-level navigation sidebar.

      <nav class="kss-nav">
        <ul class="kss-menu" data-kss-ref="{{rootNumber}}">
          <li class="kss-menu-item"><a href="./"><span class="kss-ref">0</span><span class="kss-name">Overview</span></a></li>
          {{#eachRoot}}
          <li class="kss-menu-item"><a href="section-{{reference}}.html"><span class="kss-ref">{{reference}}</span><span class="kss-name">{{header}}</span></a></li>
          {{/eachRoot}}
        </ul>
        {{#unless overview}}
        <ul class="kss-menu-child">
          {{#eachSection rootNumber}}
          {{#whenDepth 2}}
          <li class="kss-menu-item"><a href="#section-{{reference}}"><span class="kss-ref">{{reference}}</span><span class="kss-name">{{header}}</span></a></li>
          {{/whenDepth}}
          {{/eachSection}}
        </ul>
        {{/unless}}
      </nav>

But it uses a bit of JS to get the kss-menu-child positioned in the right place in the nav.

from kss-node.

JohnAlbin avatar JohnAlbin commented on July 20, 2024

The {{../reference}} variable works fine for me.

But creating a 2-level navigation is non-obvious. The code you want is:

    <nav><ul>
      <li><a href="index.html">0.0: Overview</a></li>
    {{#eachRoot}}
      <li><a href="section-{{reference}}.html">{{reference}}.0: {{header}}</a>
        <ul>
        {{#eachSection reference}}
          {{#ifDepth 2}}
            <li><a href="section-{{../../reference}}.html#{{reference}}">{{reference}}: {{header}}</a>
          {{/ifDepth}}
        {{/eachSection}}
        </ul>
      </li>
    {{/eachRoot}}
    </ul></nav>

In the code above I had to use a double back reference, {{../../reference}}, to jump out of the {{#ifDepth}} and the {{eachSection}} blocks.

I'm going to add this to the default template to make it easier for others to find.

from kss-node.

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.