I own a website at https://shadowdragonp.github.io/ using a somewhat well-known template called "Squadfree."
On the navigation bar, there are your typical buttons, such as "home", "about", "contact", etc. However, there is also a drop-down menu (not hyperlinked) called "Portals" that takes you to various sub-directories. Although the navigation bar changes depending on the sub-directory, the "portals" menu will always be the same on every page.
The "portals" menu will include more items on the list as time goes on. I do not want to edit all of the pages when I add an item to the portal menu, so I am looking for a way to possibly reuse code for the HTML. All suggestions are welcome!
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Portals <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="portals/music.html">Music</a></li>
<li><a href="portals/games.html">Games</a></li>
<li><a href="portals/software.html">Software</a></li>
<li><a href="portals/images.html">Image Gallery</a></li>
</ul>
</li>