CodeHubOrg / javascript101

:earth_africa: Website for the javascript101 meetup Bristol
http://javascript101.co.uk
1 stars 10 forks source link

Add side menu #47

Open rinse0ut opened 7 years ago

rinse0ut commented 7 years ago

Add side menu for pages which have more than 3 headlines.

The side menu lists and links the headline

eg https://staging.javascript101.co.uk/getting-started#code-editors

STRAYKR commented 7 years ago

What do you have in mind for this Dave? Would it look like a static column on the left with anchor links to the H2 headings?

Pseudo code maybe...

  1. grab all H2 headings (somehow maintaining the order)
  2. if headingsH2.length > 2, display a full height column on the left
    1. in the column list H2 headings in correct order.
    2. the a tags should link to the relevant headings
rinse0ut commented 7 years ago

Yes that's correct.