-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_footer.twig
57 lines (44 loc) · 2.09 KB
/
_footer.twig
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
50
51
52
53
54
55
56
57
<div id="footer">
<!-- First Column -->
<div class="one-fourth">
<h3>Useful Links</h3>
<ul class="footer_links">
{% if theme.footermenuone is defined %}
{{ menu(theme.footermenuone, '_sub_menu_footer.twig') }}
{% else %}
if you define the menu name in footermenuone: in config.yml it will display here
{% endif %}
</ul>
</div>
<!-- Second Column -->
<div class="one-fourth">
<h3>Terms</h3>
<ul class="footer_links">
{% if theme.footermenutwo is defined %}
{{ menu(theme.footermenutwo, '_sub_menu_footer.twig') }}
{% else %}
if you define the menu name in footermenutwo: in config.yml it will display here
{% endif %}
</ul>
</div>
<!-- Third Column -->
<div class="one-fourth">
<h3>Information</h3>
{% if theme.information %}{{theme.information}}{% else %}If you add text to information: in the config.yml it will display here{% endif %}
<br/><br/>
<div id="social_icons">
Theme by <a href="http://www.csstemplateheaven.com">CssTemplateHeaven</a><br /> Remixed by realitygaps
</div>
</div>
<!-- Fourth Column -->
<div class="one-fourth last">
<h3>Socialize</h3>
{%if not theme.facebook is defined and not theme.twitter is defined and not theme.linkedin is defined %}If you add your social networks to the config.yml they will show here{% endif %}
{%if theme.facebook %}<a href="{{theme.facebook}}"><img src="{{paths.theme}}img/icon_fb.png" alt="Facebook"></a>{% endif %}
{%if theme.twitter %} <a href="{{theme.twitter}}"><img src="{{paths.theme}}img/icon_twitter.png" alt="Twitter"></a>{% endif %}
{% if theme.linkedin %}<a href="{{theme.linkedid}}"><img src="{{paths.theme}}img/icon_in.png" alt="Facebook"></a>{% endif %}
</div>
<div style="clear:both"></div>
</div> <!-- END footer -->
</body>
</html>