Browse Source

don't collapse navbar on home

main
Hendrik Langer 4 years ago
parent
commit
eaf34ca6dd
  1. 7
      layouts/partials/footer.html
  2. 4
      layouts/partials/header.html

7
layouts/partials/footer.html

@ -48,4 +48,11 @@
function ThisYear() {
document.getElementById('thisyear').innerHTML = new Date().getFullYear();
};
$(document).ready(function() {
if ( $(location).attr("pathname") == "/") {
$('.collapse').collapse('show');
}
});
//$('.collapse').show();
</script>

4
layouts/partials/header.html

@ -33,9 +33,7 @@
{{ end }}
{{ end }}
</ul>
<div class="nav-collapse collapse">
{{- partial "navLang.html" . -}}
</div>
{{- partial "navLang.html" . -}}
</div>
</div>
</div>

Loading…
Cancel
Save