You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
пре 11 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <footer class="web-footer">
  2. <section class="footer-links">
  3. <div class="container">
  4. <div class="row">
  5. <div class="col-xs-9 web-footer-menu">
  6. <ul class="list-inline">
  7. {% for item in footer_items %}
  8. <li><a href="{{ item.url }}" {{ item.target }}
  9. data-label="{{ item.label }}">{{ item.label }}</a></li>
  10. {% endfor %}
  11. </ul>
  12. </div>
  13. <div id="website-login" class="col-xs-3 text-right">
  14. <a href="login">Login</a></div>
  15. </div>
  16. <div class="row">
  17. <div class="col-sm-8">
  18. {% if copyright %}<div class="web-footer-copyright">&copy; {{ copyright }}</div>{% endif %}
  19. {% if footer_address %}{{ footer_address }}{% endif %}
  20. </div>
  21. <div class="col-sm-4 text-right">
  22. {% if facebook_share or google_plus_one or twitter_share or linked_in_share %}
  23. <div class="social-icons">
  24. <span>{{ share_text or "Share this page on: "}}</span>
  25. {% if google_plus_one %}
  26. <a href="https://plus.google.com/share?url={{ url }}"
  27. target="_blank"><i class="icon-google-plus"></i></a>
  28. {% endif %}
  29. {% if twitter_share %}
  30. <a href="https://twitter.com/intent/tweet?url={{ url }}&text={{ encoded_title }}"
  31. target="_blank" ><i class="icon-twitter"></i></a>
  32. {% endif %}
  33. {% if facebook_share %}
  34. <a href="https://www.facebook.com/sharer.php?u={{ url }}&t={{ encoded_title }}&via={{ twitter_share_via }}"
  35. target="_blank"><i class="icon-facebook"></i></a>
  36. {% endif %}
  37. {% if linked_in_share %}
  38. <a href="http://www.linkedin.com/shareArticle?mini=true&url={{ url }}&title={{ encoded_title }}"
  39. target="_blank"><i class="icon-linkedin"></i></a>
  40. {% endif %}
  41. </div>
  42. {% endif %}
  43. {# powered #}
  44. <p class="text-right footer-powered">
  45. {% block powered %}
  46. {% include "templates/includes/footer_powered.html" %}
  47. {% endblock %}
  48. </p>
  49. </div>
  50. </div>
  51. </div>
  52. </section>
  53. <section>
  54. {% block extension %}{% include "templates/includes/footer_extension.html" %}{% endblock %}
  55. </section>
  56. </footer>