I've added services static page and sub-pages. Made changes to the slider-menu code on lines 47 through 55 and in the code menu of home.htm layout. Once this is complete then I will change the slider banners which is the code on line 35 through 42 of home.htm layout.
<div id="slider-menu" class="slider-menu">
<ul>
{% for servicePage in servicesPages %}
<li><a href="{{ servicePage.url|app }}"><span>{{ servicesPage.title }}</span></a></li>
{% endfor %}
<li class="desc"><h2><span></span></h2></li>
</ul>
</div>
<div id="slider-text" class="slider-text">
{% for servicePage in servicesPages %}
<h2>{{ servicePage.viewBag.tagline }}</h2>
{% endfor %}
</div>
I've added services static page and sub-pages. Made changes to the slider-menu code on lines 47 through 55 and in the code menu of home.htm layout. Once this is complete then I will change the slider banners which is the code on line 35 through 42 of home.htm layout.