Initial
@@ -1,5 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
Copyright (c) 2024 julien
|
Copyright (c) 2024 julien
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
@@ -7,3 +8,24 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
=======
|
||||||
|
Copyright (c) 2022 Bjørn Erik Pedersen
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
>>>>>>> cceb7bb (Initial)
|
||||||
|
|||||||
@@ -1,3 +1,24 @@
|
|||||||
|
<<<<<<< HEAD
|
||||||
# nsns
|
# nsns
|
||||||
|
|
||||||
Nonstop Nonsense
|
Nonstop Nonsense
|
||||||
|
=======
|
||||||
|
[](https://app.netlify.com/sites/gallerydeluxe/deploys)
|
||||||
|
|
||||||
|
This is a starter project for the [Gallery Deluxe](https://github.com/bep/gallerydeluxe) Hugo Module. You need [Hugo](https://gohugo.io/getting-started/installing/) and [Go](https://go.dev/dl/) to run this project.
|
||||||
|
|
||||||
|
1. Click on use "Use this template" and give your new GitHub project a suitable name.
|
||||||
|
1. Edit `go.mod` and replace the path with your new GitHub project's path[^1].
|
||||||
|
1. Edit `config.toml` etc. to match your setup and replace the images inside `content/images` with your own.
|
||||||
|
1. Add your custom logo in [layouts/partials/logo.html](layouts/partials/logo.html)
|
||||||
|
|
||||||
|
This starter projects can be previewd at [gallerydeluxe.netlify.app](https://gallerydeluxe.netlify.app/). A bigger gallery can be found at [staticbattery.com](https://staticbattery.com/).
|
||||||
|
|
||||||
|
**Note:** This isn't a _theme_; it's meant to be used as a standalone Hugo project. You can edit/add/move files in this project as you please.
|
||||||
|
|
||||||
|
## Update theme
|
||||||
|
|
||||||
|
Run `hugo mod get -u` to update to a newer version of Gallery Deluxe if one exists.
|
||||||
|
|
||||||
|
[^1]: I wish GitHub's template project feature had support for variable replacements.
|
||||||
|
>>>>>>> cceb7bb (Initial)
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
+++
|
||||||
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
date = {{ .Date }}
|
||||||
|
draft = true
|
||||||
|
+++
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
html,
|
||||||
|
body {
|
||||||
|
height: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background-color: #101010;
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
|
||||||
|
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
position: fixed;
|
||||||
|
top: 1rem;
|
||||||
|
left: 1rem;
|
||||||
|
z-index: 2;
|
||||||
|
color: #fff;
|
||||||
|
text-shadow: 2px 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gd-modal-loaded .logo {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo:hover {
|
||||||
|
cursor: pointer;
|
||||||
|
color: #ffe0c9;
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 39 KiB |
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"*": [
|
||||||
|
"../themes/gallerydeluxe/assets/*"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
baseURL = "https://nsns.delmar.bzh/"
|
||||||
|
title = "Nonstop Nonsense"
|
||||||
|
disableKinds = ["section", "taxonomy", "term"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
# Set to enable Plausible Analytics.
|
||||||
|
plausible_domain = ""
|
||||||
|
|
||||||
|
[params.gallerydeluxe]
|
||||||
|
|
||||||
|
# Shuffle the images in the gallery to give the impression of a new gallery each page load.
|
||||||
|
shuffle = false
|
||||||
|
|
||||||
|
# Reverse the order of the images in the gallery.
|
||||||
|
reverse = true
|
||||||
|
|
||||||
|
# Enable Exif data in the gallery.
|
||||||
|
# See https://gohugo.io/content-management/image-processing/#exif-data for how to filter tags.
|
||||||
|
enable_exif = true
|
||||||
|
|
||||||
|
# Optional watermark file for the large images.
|
||||||
|
[params.gallerydeluxe.watermark]
|
||||||
|
image = "images/camera.png" # relative to /assets
|
||||||
|
posx = "left" # one of "left", "center", "right"
|
||||||
|
posy = "bottom" # one of "top", "center", "bottom"
|
||||||
|
|
||||||
|
[build]
|
||||||
|
[[build.cacheBusters]]
|
||||||
|
source = 'content/.*\.(png|jpg|jpeg|webp)'
|
||||||
|
target = '(json)'
|
||||||
|
[[build.cacheBusters]]
|
||||||
|
source = 'layouts/.*'
|
||||||
|
target = '(json)'
|
||||||
|
|
||||||
|
[caches]
|
||||||
|
[caches.images]
|
||||||
|
dir = ':cacheDir/gallerydeluxe'
|
||||||
|
maxAge = "4320h" # 6 months.
|
||||||
|
|
||||||
|
[imaging]
|
||||||
|
resampleFilter = "CatmullRom"
|
||||||
|
quality = 71
|
||||||
|
anchor = "smart"
|
||||||
|
[imaging.exif]
|
||||||
|
disableDate = false
|
||||||
|
disableLatLong = true
|
||||||
|
includeFields = 'Artist|LensModel|FNumber|ExposureTime'
|
||||||
|
|
||||||
|
[server]
|
||||||
|
[[server.headers]]
|
||||||
|
for = '/**'
|
||||||
|
[server.headers.values]
|
||||||
|
Referrer-Policy = 'strict-origin-when-cross-origin'
|
||||||
|
|
||||||
|
[module]
|
||||||
|
[[module.mounts]]
|
||||||
|
source = "assets"
|
||||||
|
target = "assets"
|
||||||
|
[[module.mounts]]
|
||||||
|
source = "layouts"
|
||||||
|
target = "layouts"
|
||||||
|
[[module.mounts]]
|
||||||
|
source = "content"
|
||||||
|
target = "content"
|
||||||
|
[[module.mounts]]
|
||||||
|
source = "static"
|
||||||
|
target = "static"
|
||||||
|
[[module.imports]]
|
||||||
|
path = "github.com/bep/gallerydeluxe"
|
||||||
|
After Width: | Height: | Size: 180 KiB |
|
After Width: | Height: | Size: 169 KiB |
|
After Width: | Height: | Size: 297 KiB |
|
After Width: | Height: | Size: 247 KiB |
|
After Width: | Height: | Size: 410 KiB |
|
After Width: | Height: | Size: 244 KiB |
|
After Width: | Height: | Size: 509 KiB |
|
After Width: | Height: | Size: 310 KiB |
|
After Width: | Height: | Size: 372 KiB |
|
After Width: | Height: | Size: 240 KiB |
|
After Width: | Height: | Size: 146 KiB |
|
After Width: | Height: | Size: 146 KiB |
|
After Width: | Height: | Size: 248 KiB |
|
After Width: | Height: | Size: 315 KiB |
|
After Width: | Height: | Size: 346 KiB |
|
After Width: | Height: | Size: 274 KiB |
|
After Width: | Height: | Size: 176 KiB |
|
After Width: | Height: | Size: 260 KiB |
|
After Width: | Height: | Size: 160 KiB |
|
After Width: | Height: | Size: 172 KiB |
|
After Width: | Height: | Size: 185 KiB |
|
After Width: | Height: | Size: 258 KiB |
|
After Width: | Height: | Size: 108 KiB |
|
After Width: | Height: | Size: 274 KiB |
|
After Width: | Height: | Size: 266 KiB |
|
After Width: | Height: | Size: 186 KiB |
|
After Width: | Height: | Size: 304 KiB |
|
After Width: | Height: | Size: 236 KiB |
|
After Width: | Height: | Size: 270 KiB |
|
After Width: | Height: | Size: 189 KiB |
|
After Width: | Height: | Size: 216 KiB |
|
After Width: | Height: | Size: 160 KiB |
|
After Width: | Height: | Size: 356 KiB |
|
After Width: | Height: | Size: 152 KiB |
|
After Width: | Height: | Size: 129 KiB |
|
After Width: | Height: | Size: 142 KiB |
|
After Width: | Height: | Size: 269 KiB |
|
After Width: | Height: | Size: 220 KiB |
|
After Width: | Height: | Size: 393 KiB |
|
After Width: | Height: | Size: 343 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 208 KiB |
|
After Width: | Height: | Size: 341 KiB |
|
After Width: | Height: | Size: 150 KiB |
|
After Width: | Height: | Size: 248 KiB |
|
After Width: | Height: | Size: 318 KiB |
|
After Width: | Height: | Size: 143 KiB |
|
After Width: | Height: | Size: 255 KiB |
|
After Width: | Height: | Size: 387 KiB |
|
After Width: | Height: | Size: 133 KiB |
|
After Width: | Height: | Size: 255 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 243 KiB |
|
After Width: | Height: | Size: 92 KiB |
|
After Width: | Height: | Size: 314 KiB |
|
After Width: | Height: | Size: 2.5 MiB |
|
After Width: | Height: | Size: 309 KiB |
|
After Width: | Height: | Size: 156 KiB |
|
After Width: | Height: | Size: 197 KiB |
|
After Width: | Height: | Size: 133 KiB |
|
After Width: | Height: | Size: 164 KiB |
|
After Width: | Height: | Size: 151 KiB |
|
After Width: | Height: | Size: 170 KiB |
|
After Width: | Height: | Size: 164 KiB |
|
After Width: | Height: | Size: 109 KiB |
|
After Width: | Height: | Size: 124 KiB |
|
After Width: | Height: | Size: 137 KiB |
|
After Width: | Height: | Size: 150 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 197 KiB |
|
After Width: | Height: | Size: 171 KiB |
|
After Width: | Height: | Size: 129 KiB |
|
After Width: | Height: | Size: 232 KiB |
|
After Width: | Height: | Size: 551 KiB |
|
After Width: | Height: | Size: 728 KiB |
|
After Width: | Height: | Size: 487 KiB |
|
After Width: | Height: | Size: 562 KiB |
|
After Width: | Height: | Size: 464 KiB |
|
After Width: | Height: | Size: 592 KiB |
|
After Width: | Height: | Size: 357 KiB |
|
After Width: | Height: | Size: 362 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
title: Welcome to my World
|
||||||
|
headless: true
|
||||||
|
---
|
||||||
|
After Width: | Height: | Size: 304 KiB |
|
After Width: | Height: | Size: 300 KiB |
|
After Width: | Height: | Size: 168 KiB |
|
After Width: | Height: | Size: 302 KiB |
|
After Width: | Height: | Size: 236 KiB |
|
After Width: | Height: | Size: 205 KiB |
|
After Width: | Height: | Size: 152 KiB |
|
After Width: | Height: | Size: 53 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 151 KiB |