46 lines
No EOL
1.8 KiB
HTML
46 lines
No EOL
1.8 KiB
HTML
<footer class="container">
|
|
<div class="web-footer row">
|
|
<div class="col-md-12">
|
|
<p style="float: right; clear: both;" id="website-login"><a href="login">Login</a></p>
|
|
{% if facebook_share or google_plus_one or twitter_share or linked_in_share %}
|
|
<div class="social-icons" style="clear: both;">
|
|
<span style="font-size: 11px;">{{ share_text or "Share this page on: "}}</span>
|
|
{% if google_plus_one %}
|
|
<a href="https://plus.google.com/share?url={{ url }}"
|
|
target="_blank"><i class="icon-google-plus"></i></a>
|
|
{% endif %}
|
|
{% if twitter_share %}
|
|
<a href="https://twitter.com/intent/tweet?url={{ url }}&text={{ encoded_title }}"
|
|
target="_blank" ><i class="icon-twitter"></i></a>
|
|
{% endif %}
|
|
{% if facebook_share %}
|
|
<a href="https://www.facebook.com/sharer.php?u={{ url }}&t={{ encoded_title }}&via={{ twitter_share_via }}"
|
|
target="_blank"><i class="icon-facebook"></i></a>
|
|
{% endif %}
|
|
{% if linked_in_share %}
|
|
<a href="http://www.linkedin.com/shareArticle?mini=true&url={{ url }}&title={{ encoded_title }}"
|
|
target="_blank"><i class="icon-linkedin"></i></a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
<div class="web-footer-menu">
|
|
<ul>
|
|
{% for item in footer_items %}
|
|
<li><a href="{{ item.url }}" {{ item.target }}
|
|
data-label="{{ item.label }}">{{ item.label }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% if copyright %}<div class="web-footer-copyright">© {{ copyright }}</div>{% endif %}
|
|
{% if footer_address %}{{ footer_address }}{% endif %}
|
|
{% block extension %}{% endblock %}
|
|
|
|
<p style="float: right; clear: both; margin: 15px auto;">
|
|
{% block powered %}
|
|
<a style="font-size: 90%; color: #aaa;" href="http://getwebnotes.org">Built on Web Notes</a>
|
|
{% endblock %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer> |