rainlab / relax-theme

An example website that sells chairs with editable content.
9 stars 8 forks source link

How to change slider-menu from chairs to services? #6

Closed tekjava closed 7 years ago

tekjava commented 7 years ago

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>
tekjava commented 7 years ago

This issue has been resolved by changing my code from...

{{ servicesPage.title }}

To...

{{ servicePage.title }}