zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

bottom_actions_template.eex (696B)


      1 <div class="bottom-actions">
      2   <div class="bottom-actions-item">
      3     <%= if refs.prev do %>
      4       <a href="<%= refs.prev.path %>" class="bottom-actions-button" rel="prev">
      5         <span class="subheader">
      6           ← Previous Page
      7         </span>
      8         <span class="title">
      9           <%= refs.prev.title %>
     10         </span>
     11       </a>
     12     <% end %>
     13   </div>
     14   <div class="bottom-actions-item">
     15     <%= if refs.next do %>
     16       <a href="<%= refs.next.path %>" class="bottom-actions-button" rel="next">
     17         <span class="subheader">
     18           Next Page →
     19         </span>
     20         <span class="title">
     21           <%= refs.next.title %>
     22         </span>
     23       </a>
     24     <% end %>
     25   </div>
     26 </div>