-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter - Copy.htm
144 lines (112 loc) · 5.89 KB
/
footer - Copy.htm
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-md-5">
<!-- SITE FOOTER SECTION: COWORKING -->
<div class="site-footer__section">
<h3 class="h5">{{ data.Business.Name }}</h3>
<p>
{{ data.Business.ShortIntroduction }}
</p>
</div>
<!-- END SITE FOOTER SECTION: COWORKING -->
<!-- SITE FOOTER SOCIAL -->
<ul class="list-inline site-footer__social">
{% if data.Setting_Social_Facebook.size > 0 %}
<li><a href="{{ data.Setting_Social_Facebook }}"><i class="fa fa-facebook"></i></a></li>
{% endif %}
{% if data.Setting_Social_Twitter.size > 0 %}
<li><a href="https://twitter.com/{{ data.Setting_Social_Twitter }}"><i class="fa fa-twitter"></i></a></li>
{% endif %}
{% if data.Setting_Social_Flickr.size > 0 %}
<li><a href="{{ data.Setting_Social_Flickr }}"><i class="fa fa-flickr"></i></a></li>
{% endif %}
{% if data.Setting_Social_Instagram.size > 0 %}
<li><a href="{{ data.Setting_Social_Instagram }}"><i class="fa fa-instagram"></i></a></li>
{% endif %}
</ul>
<!-- END SITE FOOTER SOCIAL -->
</div>
<div class="col-xxs-12 col-xs-6 col-sm-4 col-md-2">
<!-- SITE FOOTER SECTION: LINKS -->
<div class="site-footer__section">
<ul>
{% if data.Setting_PublicWebSite_AboutUs %}
<li><a href="{% Url About, Index %}">{% T About %}</a></li>
{% endif %}
{% if data.Resources.size > 0 %}
<li><a href="{% Url Bookings, Calendar %}">{% T Bookings %}</a></li>
{% endif %}
{% if data.Setting_PublicWebSite_Directory %}
<li><a href="{% Url Directory, Members %}">{% T Members %}</a></li>
{% endif %}
{% if data.Setting_PublicWebSite_Help %}
<li><a href="{% Url Support, Index %}">{% T Help %}</a></li>
{% endif %}
</ul>
</div>
<!-- END SITE FOOTER SECTION: LINKS -->
</div>
<div class="col-xxs-12 col-xs-6 col-sm-4 col-md-2">
<!-- SITE FOOTER SECTION: LINKS -->
<div class="site-footer__section">
<ul>
{% if data.Setting_PublicWebSite_Events %}
<li><a href="{% Url Events, Index %}">{% T Events %}</a></li>
{% endif %}
{% if data.Setting_Blog_Enabled %}
<li><a href="{% Url Blog, Index %}">{% T Blog %}</a></li>
{% endif %}
{% if data.Setting_PublicWebSite_Contact %}
<li><a href="{% Url Contact, Index %}">{% T Contact %}</a></li>
{% endif %}
</ul>
</div>
<!-- END SITE FOOTER SECTION: LINKS -->
</div>
<div class="col-xs-12 col-sm-4 col-md-3">
<!-- SITE FOOTER SECTION: LANGUAGE -->
<div class="site-footer__section site-footer__section--language">
<h3 class="h5">{% T Language %}</h3>
<div class="dropup">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{{ data.CurrentLanguage }} <span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
{% for language in data.Languages %}
<li class="{% if language.Name == data.CurrentLanguage %}active{% endif %}"><a role="menuitem" tabindex="-1" href="{{ data.Business.HomeUrl }}/{{ language.Culture }}">{{ language.Name }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<!-- END SITE FOOTER SECTION: LANGUAGE -->
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-push-6">
{% if data.Setting_Footer_SayingText != "" %}
<!-- SITE FOOTER QUOTE -->
<blockquote class="site-footer__quote">
<p>“{{ data.Setting_Footer_SayingText }}”.</p>
<cite>{{ data.Setting_Footer_SayingAuthor }}</cite>
</blockquote>
<!-- SITE FOOTER QUOTE -->
{% endif %}
</div>
<div class="col-md-6 col-md-pull-6">
<!-- SITE FOOTER LEGAL -->
<div class="site-footer__legal">
<ul class="list-inline">
<li><a href="{% Url TermsAndConditions, Index %}">{% T Terms and conditions %}</a></li>
{% if data.Setting_Legal_Cookies.size > 0 %}
<li><a href="{% Url Legal, Cookies %}">{% T Cookies policy %}</a></li>
{% endif %}
{% if data.Setting_Legal_Privacy.size > 0 %}
<li><a href="{% Url Legal, Privacy %}">{% T Privacy policy %}</a></li>
{% endif %}
</ul>
<p>{{ data.Now | FormatDate: 'yyyy' }} © {{ data.Business.Name }}. {% T All rights reserved. %}</p>
</div>
<!-- END SITE FOOTER LEGAL -->
</div>
</div>
</div>
</footer>