2014-08-13 22:06:15 +00:00
|
|
|
|
|
|
|
|
2014-07-25 13:14:27 +00:00
|
|
|
footer.site-footer
|
2017-10-05 17:16:52 +00:00
|
|
|
.site-footer-content
|
2014-06-06 16:47:52 +00:00
|
|
|
.row
|
2015-02-05 16:56:35 +00:00
|
|
|
ul.col-md-9
|
2014-08-14 15:33:01 +00:00
|
|
|
|
2014-08-14 14:42:31 +00:00
|
|
|
if Object.keys(settings.i18n.subdomainLang).length > 1
|
2015-06-03 10:14:26 +00:00
|
|
|
li.dropdown.dropup.subdued(dropdown)
|
2014-08-14 14:42:31 +00:00
|
|
|
a.dropdown-toggle(
|
|
|
|
href="#",
|
2015-06-03 10:14:26 +00:00
|
|
|
dropdown-toggle,
|
2014-08-14 14:42:31 +00:00
|
|
|
data-toggle="dropdown",
|
|
|
|
aria-haspopup="true",
|
2014-08-14 15:33:01 +00:00
|
|
|
aria-expanded="false",
|
2017-01-31 14:57:22 +00:00
|
|
|
tooltip=translate('language')
|
2014-08-14 15:33:01 +00:00
|
|
|
)
|
2017-01-31 14:57:22 +00:00
|
|
|
figure(class="sprite-icon sprite-icon-lang sprite-icon-"+currentLngCode)
|
2014-08-14 14:42:31 +00:00
|
|
|
|
|
|
|
ul.dropdown-menu(role="menu")
|
2014-08-14 15:33:01 +00:00
|
|
|
li.dropdown-header #{translate("language")}
|
2014-08-14 14:42:31 +00:00
|
|
|
each subdomainDetails, subdomain in settings.i18n.subdomainLang
|
2014-08-21 16:58:25 +00:00
|
|
|
if !subdomainDetails.hide
|
|
|
|
li.lngOption
|
|
|
|
a.menu-indent(href=subdomainDetails.url+currentUrl)
|
2017-01-31 14:57:22 +00:00
|
|
|
figure(class="sprite-icon sprite-icon-lang sprite-icon-"+subdomainDetails.lngCode)
|
2014-08-21 16:58:25 +00:00
|
|
|
| #{translate(subdomainDetails.lngCode)}
|
2016-07-01 14:04:39 +00:00
|
|
|
//- img(src="/img/flags/24/.png")
|
2014-08-14 15:33:01 +00:00
|
|
|
each item in nav.left_footer
|
|
|
|
li
|
|
|
|
if item.url
|
2014-08-26 11:29:27 +00:00
|
|
|
a(href=item.url, class=item.class) !{translate(item.text)}
|
2014-08-14 15:33:01 +00:00
|
|
|
else
|
2014-08-26 11:29:27 +00:00
|
|
|
| !{translate(item.text)}
|
2014-08-13 15:04:49 +00:00
|
|
|
|
2015-02-05 16:56:35 +00:00
|
|
|
ul.col-md-3.text-right
|
2014-08-13 15:04:49 +00:00
|
|
|
|
2014-06-20 20:35:42 +00:00
|
|
|
each item in nav.right_footer
|
|
|
|
li
|
|
|
|
if item.url
|
2017-10-09 10:59:03 +00:00
|
|
|
a(href=item.url, class=item.class, aria-label=item.label) !{item.text}
|
2014-06-20 20:35:42 +00:00
|
|
|
else
|
|
|
|
| !{item.text}
|