mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-27 07:44:23 +01:00
Compare commits
3 commits
2c47cd338c
...
31d5af9295
Author | SHA1 | Date | |
---|---|---|---|
31d5af9295 | |||
cc09656497 | |||
6de81928c4 |
6 changed files with 14 additions and 1 deletions
|
@ -27,6 +27,11 @@ grids.forEach(function(grid) {
|
|||
// layout Masonry after each image loads
|
||||
msnry.layout();
|
||||
});
|
||||
|
||||
// layout Masonry after page load
|
||||
$(window).on('load', function() {
|
||||
msnry.layout();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{{ define "main" }}
|
||||
|
||||
{{ partial "top_button.html" . }}
|
||||
|
||||
{{ partial "navigation.html" . }}
|
||||
|
||||
{{ partial "bradcrumb.html" . }}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{{ define "main" }}
|
||||
|
||||
{{ partial "top_button.html" . }}
|
||||
|
||||
{{ partial "navigation.html" . }}
|
||||
|
||||
{{ partial "bradcrumb.html" . }}
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
{{ end }}
|
||||
</ul>
|
||||
|
||||
{{- if site.IsMultiLingual }}
|
||||
{{- if hugo.IsMultilingual }}
|
||||
<select id="select-language" onchange="location = this.value;">
|
||||
{{ $siteLanguages := site.Languages }}
|
||||
{{ $pageLang := .Page.Lang}}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{{ define "main" }}
|
||||
|
||||
{{ partial "top_button.html" . }}
|
||||
|
||||
{{ partial "navigation.html" . }}
|
||||
|
||||
{{ partial "bradcrumb.html" . }}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{{ define "main" }}
|
||||
|
||||
{{ partial "top_button.html" . }}
|
||||
|
||||
{{ partial "navigation.html" . }}
|
||||
|
||||
{{ partial "bradcrumb.html" . }}
|
||||
|
|
Loading…
Reference in a new issue