forum-footer.hbs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <div class="container">
  2. <div class="footer-content">
  3. {{#if hasContent}}
  4. <ul class="list-inline footer-nav">
  5. {{#if settings.forum_footnote}}
  6. <li class="site-footnote">
  7. {{settings.forum_footnote}}
  8. </li>
  9. {{/if}}
  10. {{#if showTermsLink}}
  11. <li>
  12. {{#if settings.terms_of_service_link }}
  13. <a href="{{unbound settings.terms_of_service_link}}">{{gettext "Terms of service" }}</a>
  14. {{else}}
  15. {{#link-to 'terms-of-service'}}{{gettext "Terms of service" }}{{/link-to}}
  16. {{/if}}
  17. </li>
  18. {{/if}}
  19. {{#if showPrivacyLink}}
  20. <li>
  21. {{#if settings.privacy_policy_link }}
  22. <a href="{{unbound settings.privacy_policy_link}}">{{gettext "Privacy policy" }}</a>
  23. {{else}}
  24. {{#link-to 'privacy-policy'}}{{gettext "Privacy policy" }}{{/link-to}}
  25. {{/if}}
  26. </li>
  27. {{/if}}
  28. </ul>
  29. {{/if}}
  30. <a href="http://misago-project.org" class="misago-branding">
  31. powered by <strong>misago</strong>
  32. </a>
  33. </div>
  34. </div>