mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
43 lines
1.2 KiB
Text
43 lines
1.2 KiB
Text
|
|
|
|
footer.site-footer
|
|
.container
|
|
.row
|
|
ul.col-md-9
|
|
|
|
if Object.keys(settings.i18n.subdomainLang).length > 1
|
|
li.dropdown.dropup.subdued(dropdown)
|
|
a.dropdown-toggle(
|
|
href="#",
|
|
dropdown-toggle,
|
|
data-toggle="dropdown",
|
|
aria-haspopup="true",
|
|
aria-expanded="false",
|
|
tooltip="#{translate('language')}"
|
|
)
|
|
figure(class="icon icon-lang icon-#{currentLngCode}")
|
|
|
|
ul.dropdown-menu(role="menu")
|
|
li.dropdown-header #{translate("language")}
|
|
each subdomainDetails, subdomain in settings.i18n.subdomainLang
|
|
if !subdomainDetails.hide
|
|
li.lngOption
|
|
a.menu-indent(href=subdomainDetails.url+currentUrl)
|
|
figure(class="icon icon-lang icon-#{subdomainDetails.lngCode}")
|
|
| #{translate(subdomainDetails.lngCode)}
|
|
//- img(src="/img/flags/24/.png")
|
|
each item in nav.left_footer
|
|
li
|
|
if item.url
|
|
a(href=item.url, class=item.class) !{translate(item.text)}
|
|
else
|
|
| !{translate(item.text)}
|
|
|
|
ul.col-md-3.text-right
|
|
|
|
each item in nav.right_footer
|
|
li
|
|
if item.url
|
|
a(href=item.url, class=item.class) !{item.text}
|
|
else
|
|
| !{item.text}
|