forked from GDGhamburg/devfest15
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
49 lines (49 loc) · 2.23 KB
/
footer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!-- Begin Footer -->
<footer id="footer" class="footer">
<div class="row">
<div class="pull-left col-md-6 col-xs-6">
<div class="g-plusone" data-size="medium" data-annotation="inline" data-width="300" data-href="{{ site.url }}"></div>
</div>
<div class="logo logo-footer logo-gray pull-right"></div>
</div>
<div class="row">
{% for block in site.footerBlocks %}
{% assign colWidth = 12 | divided_by: forloop.length %}
<div class="col-md-{{ colWidth }} col-xs-6">
<h5>{{ block.title }}</h5>
<ul>
{% for linkElement in block.links %}
<li><a href="{% if linkElement.permalink != null %} {{ linkElement.permalink | prepend: site.baseurl }} {% else %} {{ linkElement.link }} {% endif %}" {% if linkElement.link != null %}target="_blank"{% endif %}>{{ linkElement.text }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-md-6 col-xs-12">
<ul class="social-links">
{% for social in site.socialLinks %}
<li>
<a href="{% if social.permalink != null %} {{ social.permalink | prepend: site.baseurl }} {% else %} {{ social.link }} {% endif %}" target="_blank">
<svg class="icon icon-{{ social.icon }}" viewBox="0 0 30 32">
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-{{ social.icon }}"></use>
</svg>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="row">
<!-- Please don't delete this line-->
<div class="col-md-6">
<p class="copyright">
© 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>
</p>
<p class="copyright">
© 2013 <a href="https://www.flickr.com/photos/klengel/13720484314/in/photostream/" target="_blank">Hamburg Harbour NIght</a> shown as created by <a href="https://www.flickr.com/photos/klengel/" target="_blank">R∂lf Κλενγελ</a>, copyrighted under <a href="https://creativecommons.org/licenses/by/2.0/legalcode" target="_blank">Creative Commons Attributon 2.0</a>
</p>
</div>
</div>
</footer>
<!-- End Footer -->