2014-07-28 21:27:01 +02:00
|
|
|
<!-- Begin Footer -->
|
2014-08-08 00:23:36 +02:00
|
|
|
<footer id="footer" class="footer">
|
2014-07-28 21:27:01 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="pull-left col-md-6 col-xs-6">
|
2014-08-17 23:31:26 +02:00
|
|
|
<div class="g-plusone" data-size="medium" data-annotation="inline" data-width="300" data-href="{{ site.url }}"></div>
|
2014-07-28 21:27:01 +02:00
|
|
|
</div>
|
2014-08-08 00:23:36 +02:00
|
|
|
<div class="logo logo-footer logo-gray pull-right"></div>
|
2014-07-28 21:27:01 +02:00
|
|
|
</div>
|
|
|
|
<div class="row">
|
2014-08-17 23:31:26 +02:00
|
|
|
{% for block in site.footerBlocks %}
|
|
|
|
{% assign colWidth = 12 | divided_by: forloop.length %}
|
|
|
|
<div class="col-md-{{ colWidth }} col-xs-6">
|
|
|
|
<h5>{{ block.title }}</h5>
|
2014-07-28 21:27:01 +02:00
|
|
|
<ul>
|
2014-08-17 23:31:26 +02:00
|
|
|
{% for linkElement in block.links %}
|
|
|
|
<li><a href="{% if linkElement.permalink != null %} {{ linkElement.permalink | prepend: site.baseurl }} {% else %} {{ linkElement.link }} {% endif %}" target="_blank">{{ linkElement.text }}</a></li>
|
|
|
|
{% endfor %}
|
2014-07-28 21:27:01 +02:00
|
|
|
</ul>
|
2014-08-17 23:31:26 +02:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-6 col-xs-12">
|
2014-07-28 21:27:01 +02:00
|
|
|
<ul class="social-links">
|
2014-08-17 23:31:26 +02:00
|
|
|
{% for social in site.socialLinks %}
|
2014-07-28 21:27:01 +02:00
|
|
|
<li>
|
2014-08-22 00:01:20 +02:00
|
|
|
<a href="{% if linkElement.permalink != null %} {{ linkElement.permalink | prepend: site.baseurl }} {% else %} {{ linkElement.link }} {% endif %}" target="_blank">
|
2014-08-17 23:31:26 +02:00
|
|
|
<svg class="icon icon-{{ social.icon }}" viewBox="0 0 30 32">
|
|
|
|
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-{{ social.icon }}"></use>
|
2014-07-28 21:27:01 +02:00
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
</li>
|
2014-08-17 23:31:26 +02:00
|
|
|
{% endfor %}
|
2014-07-28 21:27:01 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<!-- Please don't delete this line-->
|
|
|
|
<div class="col-md-6">
|
|
|
|
<p class="copyright">
|
2014-08-21 16:27:02 +02:00
|
|
|
© 2014 Based on <a href="https://github.com/gdg-x/zeppelin" target="_blank">Project Zeppelin</a>. Designed and created by <a href="https://plus.google.com/+OlehZasadnyy/about" target="_blank">Oleh Zasadnyy</a> · <a href="http://lviv.gdg.org.ua" target="_blank">GDG Lviv</a>
|
2014-07-28 21:27:01 +02:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
<!-- End Footer -->
|