diff options
| author | 2025-11-04 14:43:52 +0300 | |
|---|---|---|
| committer | 2025-11-04 14:43:52 +0300 | |
| commit | 05d7fe78450219e85ebe9c4372a20f8edd264d8d (patch) | |
| tree | a098615be83bf760a4643e5752f990ef9f29fe98 /views/layouts | |
| parent | c52a07e3fa738135eaa5272d9f115e4740b60c61 (diff) | |
| download | web-05d7fe78450219e85ebe9c4372a20f8edd264d8d.tar.gz web-05d7fe78450219e85ebe9c4372a20f8edd264d8d.zip | |
feat: move published date info from header into start of the body
feat: show action date on any screen
feat: show short description together with dates in page's body
refactor: use minified packery dist
Diffstat (limited to 'views/layouts')
| -rw-r--r-- | views/layouts/general-page.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/layouts/general-page.html b/views/layouts/general-page.html index 5c1867a..fe6bc78 100644 --- a/views/layouts/general-page.html +++ b/views/layouts/general-page.html @@ -268,7 +268,7 @@ <script src="https://f003.backblazeb2.com/file/sayana-static/libs/htmx/2.0.6/htmx.min.js"></script> <script src="https://f003.backblazeb2.com/file/sayana-static/libs/leaflet/1.9.4/leaflet.js"></script> <script src="https://f003.backblazeb2.com/file/sayana-static/libs/imagesloaded/5.0.0/imagesloaded.pkgd.min.js"></script> - <script src="https://f003.backblazeb2.com/file/sayana-static/libs/packery/3.0.0/dist/packery.pkgd.js"></script> + <script src="https://f003.backblazeb2.com/file/sayana-static/libs/packery/3.0.0/dist/packery.pkgd.min.js"></script> <script> // Enable fitWidth-like attribute for Packery. Source: https://codepen.io/desandro/pen/kVmLYz @@ -277,7 +277,7 @@ __resetLayout.call( this ); var parentSize = getSize( this.element.parentNode ); var colW = this.columnWidth + this.gutter; - this.fitWidth = Math.floor( ( ( parentSize.innerWidth + this.gutter ) / colW ) * 1.01 ) * colW; + this.fitWidth = Math.floor( ( parentSize.innerWidth + this.gutter ) / colW ) * colW; this.packer.width = this.fitWidth; this.packer.height = Number.POSITIVE_INFINITY; this.packer.reset(); |