Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.84 KB | None | 0 0
  1. <div class="footer-box">
  2.   <% if (_.contains(version.get('feature_groups'), 'mirantis')) { %>
  3.     <a href="http://www.mirantis.com" target="_blank" class="footer-logo"></a>
  4.     <div class="footer-copyright pull-left" data-i18n="common.copyright"></div>
  5.   <% } %>
  6.   <% if (version.get('release')) { %>
  7.     <div class="footer-version pull-right">Version: <%- version.get('release') %></div>
  8.   <% } %>
  9.   <div class="footer-lang pull-right">
  10.     <div class="dropdown dropup">
  11.       <button class="dropdown-toggle current-locale btn btn-link" data-toggle="dropdown"><%- currentLocale.name %></button>
  12.       <ul class="dropdown-menu locales">
  13.         <% _.each(locales, function(locale) { %>
  14.           <li>
  15.             <a data-locale="<%- locale.locale %>"><%- locale.name %></a>
  16.           </li>
  17.         <% }) %>
  18.       </ul>
  19.     </div>
  20.   </div>
  21. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement