Initial commit
This commit is contained in:
commit
81ba02e487
67 changed files with 582 additions and 0 deletions
105
.gitignore
vendored
Normal file
105
.gitignore
vendored
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
content/**/*.jpg
|
||||||
|
content/**/*.webp
|
||||||
|
|
||||||
|
### Hugo ###
|
||||||
|
# Generated files by hugo
|
||||||
|
/public/
|
||||||
|
/resources/_gen/
|
||||||
|
/assets/jsconfig.json
|
||||||
|
hugo_stats.json
|
||||||
|
|
||||||
|
# Executable may be added to repository
|
||||||
|
hugo.exe
|
||||||
|
hugo.darwin
|
||||||
|
hugo.linux
|
||||||
|
|
||||||
|
# Temporary lock file while building
|
||||||
|
/.hugo_build.lock
|
||||||
|
|
||||||
|
### Intellij+all ###
|
||||||
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
||||||
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
|
||||||
|
# User-specific stuff
|
||||||
|
.idea/**/workspace.xml
|
||||||
|
.idea/**/tasks.xml
|
||||||
|
.idea/**/usage.statistics.xml
|
||||||
|
.idea/**/dictionaries
|
||||||
|
.idea/**/shelf
|
||||||
|
|
||||||
|
# AWS User-specific
|
||||||
|
.idea/**/aws.xml
|
||||||
|
|
||||||
|
# Generated files
|
||||||
|
.idea/**/contentModel.xml
|
||||||
|
|
||||||
|
# Sensitive or high-churn files
|
||||||
|
.idea/**/dataSources/
|
||||||
|
.idea/**/dataSources.ids
|
||||||
|
.idea/**/dataSources.local.xml
|
||||||
|
.idea/**/sqlDataSources.xml
|
||||||
|
.idea/**/dynamic.xml
|
||||||
|
.idea/**/uiDesigner.xml
|
||||||
|
.idea/**/dbnavigator.xml
|
||||||
|
|
||||||
|
# Gradle
|
||||||
|
.idea/**/gradle.xml
|
||||||
|
.idea/**/libraries
|
||||||
|
|
||||||
|
# Gradle and Maven with auto-import
|
||||||
|
# When using Gradle or Maven with auto-import, you should exclude module files,
|
||||||
|
# since they will be recreated, and may cause churn. Uncomment if using
|
||||||
|
# auto-import.
|
||||||
|
# .idea/artifacts
|
||||||
|
# .idea/compiler.xml
|
||||||
|
# .idea/jarRepositories.xml
|
||||||
|
# .idea/modules.xml
|
||||||
|
# .idea/*.iml
|
||||||
|
# .idea/modules
|
||||||
|
# *.iml
|
||||||
|
# *.ipr
|
||||||
|
|
||||||
|
# CMake
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Mongo Explorer plugin
|
||||||
|
.idea/**/mongoSettings.xml
|
||||||
|
|
||||||
|
# File-based project format
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
out/
|
||||||
|
|
||||||
|
# mpeltonen/sbt-idea plugin
|
||||||
|
.idea_modules/
|
||||||
|
|
||||||
|
# JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# Cursive Clojure plugin
|
||||||
|
.idea/replstate.xml
|
||||||
|
|
||||||
|
# SonarLint plugin
|
||||||
|
.idea/sonarlint/
|
||||||
|
|
||||||
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
fabric.properties
|
||||||
|
|
||||||
|
# Editor-based Rest Client
|
||||||
|
.idea/httpRequests
|
||||||
|
|
||||||
|
# Android studio 3.1+ serialized cache file
|
||||||
|
.idea/caches/build_file_checksums.ser
|
||||||
|
|
||||||
|
### Intellij+all Patch ###
|
||||||
|
# Ignore everything but code style settings and run configurations
|
||||||
|
# that are supposed to be shared within teams.
|
||||||
|
|
||||||
|
.idea/*
|
||||||
|
|
||||||
|
!.idea/codeStyles
|
||||||
|
!.idea/runConfigurations
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/gallery"]
|
||||||
|
path = themes/gallery
|
||||||
|
url = https://github.com/nicokaiser/hugo-theme-gallery.git
|
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
+++
|
||||||
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
date = {{ .Date }}
|
||||||
|
draft = true
|
||||||
|
+++
|
71
config/_default/hugo.toml
Normal file
71
config/_default/hugo.toml
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
copyright = "CC BY 4.0 SpaceFox"
|
||||||
|
defaultContentLanguage = "fr"
|
||||||
|
disableKinds = ["taxonomy", "term"]
|
||||||
|
enableRobotsTXT = false
|
||||||
|
languageCode = "fr"
|
||||||
|
timeZone = "Europe/Paris"
|
||||||
|
timeout = "120s"
|
||||||
|
title = "Les photos du renard"
|
||||||
|
theme = "gallery"
|
||||||
|
|
||||||
|
[params]
|
||||||
|
defaultTheme = "dark"
|
||||||
|
description = "Les photos de SpaceFox, votre renard (spatial) préféré"
|
||||||
|
title = "Photos de SpaceFox"
|
||||||
|
[params.author]
|
||||||
|
# email = "user@example.com"
|
||||||
|
name = "SpaceFox"
|
||||||
|
[params.socialIcons]
|
||||||
|
# facebook = "https://www.facebook.com/"
|
||||||
|
# instagram = "https://www.instagram.com/"
|
||||||
|
# github = "https://github.com/nicokaiser/hugo-theme-gallery/"
|
||||||
|
# youtube = "https://www.youtube.com/"
|
||||||
|
# email = "mailto:user@example.com"
|
||||||
|
website = "https://spacefox.fr"
|
||||||
|
mastodon = "https://mastodon.spacefox.fr/@spacefox"
|
||||||
|
#pixelfed = "https://example.com"
|
||||||
|
|
||||||
|
[outputs]
|
||||||
|
home = ["HTML", "RSS"]
|
||||||
|
page = ["HTML"]
|
||||||
|
section = ["HTML"]
|
||||||
|
|
||||||
|
[imaging]
|
||||||
|
quality = 90
|
||||||
|
resampleFilter = "CatmullRom"
|
||||||
|
[imaging.exif]
|
||||||
|
disableDate = false
|
||||||
|
disableLatLong = true
|
||||||
|
includeFields = "ImageDescription|Orientation"
|
||||||
|
|
||||||
|
#[module]
|
||||||
|
# [module.hugoVersion]
|
||||||
|
# min = "0.121.2"
|
||||||
|
# [[module.imports]]
|
||||||
|
# path = "github.com/nicokaiser/hugo-theme-gallery/v4"
|
||||||
|
|
||||||
|
[menu]
|
||||||
|
[[menu.footer]]
|
||||||
|
name = "Mentions légales"
|
||||||
|
url = "/about/"
|
||||||
|
weight = 3
|
||||||
|
[[menu.footer]]
|
||||||
|
name = "Un renard en Corée"
|
||||||
|
url = "https://coree.spacefox.fr/"
|
||||||
|
weight = 4
|
||||||
|
[[menu.footer]]
|
||||||
|
name = "Un renard au Japon"
|
||||||
|
url = "https://japon.spacefox.fr//"
|
||||||
|
weight = 5
|
||||||
|
[[menu.footer]]
|
||||||
|
name = "Les textes de SpaceFox & Lisa Refur"
|
||||||
|
url = "https://textes.spacefox.fr/"
|
||||||
|
weight = 8
|
||||||
|
[[menu.footer]]
|
||||||
|
name = "Tout SpaceFox"
|
||||||
|
url = "https://spacefox.fr/"
|
||||||
|
weight = 9
|
||||||
|
|
||||||
|
[services]
|
||||||
|
[services.rss]
|
||||||
|
limit = 100
|
13
content/_index.md
Normal file
13
content/_index.md
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
#title: Accueil
|
||||||
|
#description: Votre renard préféré prends des photos ; en voici quelques-unes. Ce site est mis à jour irrégulièrement.
|
||||||
|
sort_order: desc
|
||||||
|
featured_image: D5600_004085.jpg"
|
||||||
|
# featured_image on the home page is used for OpenGraph cards, etc.
|
||||||
|
menus:
|
||||||
|
main:
|
||||||
|
name: Accueil
|
||||||
|
weight: -1
|
||||||
|
# sub-galleries on list pages are sorted by date and weight (descending)
|
||||||
|
---
|
||||||
|
%
|
52
content/about.md
Normal file
52
content/about.md
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
rss_ignore: true
|
||||||
|
title: À propos
|
||||||
|
menu:
|
||||||
|
main:
|
||||||
|
weight: 90
|
||||||
|
---
|
||||||
|
|
||||||
|
# Mentions légales
|
||||||
|
|
||||||
|
## Hébergement
|
||||||
|
|
||||||
|
PulseHeberg
|
||||||
|
9 Boulevard de Strasbourg
|
||||||
|
83000 Toulon
|
||||||
|
France
|
||||||
|
|
||||||
|
https://pulseheberg.com
|
||||||
|
|
||||||
|
## Cookies
|
||||||
|
|
||||||
|
Ce site n’utilise pas de cookies à d’autres fins que purement techniques.
|
||||||
|
|
||||||
|
Il n’utilise aucun
|
||||||
|
système [de publicité ciblée, de réseaux sociaux ou de mesure d’audience](https://www.cnil.fr/fr/cookies-et-autres-traceurs/regles/cookies/comment-mettre-mon-site-web-en-conformite)
|
||||||
|
et donc ne nécessite pas de bandeau d’information qui permettrait de s’opposer à ces cookies.
|
||||||
|
|
||||||
|
# Réutiliser le contenu du site
|
||||||
|
|
||||||
|
Ceci concerne toutes les photographies du site.
|
||||||
|
|
||||||
|
**Vous êtes autorisé à :**
|
||||||
|
|
||||||
|
- **Partager** — copier, distribuer et communiquer le matériel par tous moyens et sous tous formats
|
||||||
|
- **Adapter** — remixer, transformer et créer à partir du matériel pour toute utilisation, y compris commerciale. L’Offrant ne peut retirer les autorisations concédées par la licence tant que vous appliquez les termes de cette licence.
|
||||||
|
|
||||||
|
**Selon les conditions suivantes :**
|
||||||
|
|
||||||
|
- **Attribution** — Vous devez créditer l'Œuvre, intégrer un lien vers la licence et indiquer si des modifications ont été effectuées à l'Œuvre. Vous devez indiquer ces informations par tous les moyens raisonnables, sans toutefois suggérer que l’Offrant vous soutient ou soutient la façon dont vous avez utilisé son Œuvre.
|
||||||
|
- **Pas de restrictions complémentaires** — Vous n'êtes pas autorisé à appliquer des conditions légales ou des mesures techniques qui restreindraient légalement autrui à utiliser l'Œuvre dans les conditions décrites par la licence.
|
||||||
|
|
||||||
|
## Resources
|
||||||
|
|
||||||
|
1. [Le résumé de la licence, sur le site Creative Commons](https://creativecommons.org/licenses/by/4.0/deed.fr)
|
||||||
|
2. [Le texte intégral de la licence, sur le site Creative Commons](https://creativecommons.org/licenses/by/4.0/legalcode.fr)
|
||||||
|
3. [Comment me créditer correctement](https://wiki.creativecommons.org/wiki/Best_practices_for_attribution) (en anglais)
|
||||||
|
|
||||||
|
# Crédits techniques
|
||||||
|
|
||||||
|
Ceci est un site [généré avec Hugo](https://gohugo.io).
|
||||||
|
Il utilise [le thème « gallery » créé par Nico Kaiser](https://github.com/nicokaiser/hugo-theme-gallery/).
|
7
content/astronomie/index.md
Normal file
7
content/astronomie/index.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
title: Astronomie
|
||||||
|
sort_order: desc
|
||||||
|
menus: "main"
|
||||||
|
weight: 1
|
||||||
|
featured_image: "D5600_005665.jpg"
|
||||||
|
---
|
6
content/chats/_index.md
Normal file
6
content/chats/_index.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: Chats
|
||||||
|
weight: 2
|
||||||
|
menus: "main"
|
||||||
|
sort_order: desc
|
||||||
|
---
|
6
content/chats/ceres/index.md
Normal file
6
content/chats/ceres/index.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: Cérès
|
||||||
|
description: La plus belle chatte du monde. Experte en fouinage et miaulements.
|
||||||
|
sort_order: desc
|
||||||
|
featured_image: D5600_026111.jpg
|
||||||
|
---
|
6
content/chats/ceresetmu/index.md
Normal file
6
content/chats/ceresetmu/index.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: Cérès et Mû
|
||||||
|
description: Ils n’ont toujours pas compris qu’ils sont deux.
|
||||||
|
sort_order: desc
|
||||||
|
featured_image: D5600_026224.jpg
|
||||||
|
---
|
6
content/chats/muu/index.md
Normal file
6
content/chats/muu/index.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: Mû
|
||||||
|
description: Le plus beau chat du monde. Expert en grimpette et tronches pas possibles.
|
||||||
|
sort_order: desc
|
||||||
|
featured_image: D5600_025270.jpg
|
||||||
|
---
|
7
content/experimentations/index.md
Normal file
7
content/experimentations/index.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
title: Expérimentations
|
||||||
|
sort_order: desc
|
||||||
|
weight: 6
|
||||||
|
featured_image: D5600_004085.jpg
|
||||||
|
menus: "main"
|
||||||
|
---
|
8
content/icietla/index.md
Normal file
8
content/icietla/index.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Ici et là
|
||||||
|
description: Constructions humaines, trouvées ici et là.
|
||||||
|
sort_order: desc
|
||||||
|
weight: 4
|
||||||
|
featured_image: D5600_002116.jpg
|
||||||
|
menus: "main"
|
||||||
|
---
|
7
content/insolite/index.md
Normal file
7
content/insolite/index.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
title: Insolite
|
||||||
|
sort_order: desc
|
||||||
|
menus: "main"
|
||||||
|
weight: 7
|
||||||
|
featured_image: "D3000_002901.jpg"
|
||||||
|
---
|
6
content/nature/_index.md
Normal file
6
content/nature/_index.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: Nature
|
||||||
|
sort_order: desc
|
||||||
|
weight: 3
|
||||||
|
menus: "main"
|
||||||
|
---
|
5
content/nature/autresanimaux/index.md
Normal file
5
content/nature/autresanimaux/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Autres animaux
|
||||||
|
sort_order: desc
|
||||||
|
featured_image: D5600_014711.jpg
|
||||||
|
---
|
5
content/nature/insectes/index.md
Normal file
5
content/nature/insectes/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Insectes
|
||||||
|
sort_order: desc
|
||||||
|
featured_image: D5600_005896.jpg
|
||||||
|
---
|
5
content/nature/oiseaux/index.md
Normal file
5
content/nature/oiseaux/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Oiseaux
|
||||||
|
description: Des dinosaures à plumes !
|
||||||
|
sort_order: desc
|
||||||
|
---
|
5
content/nature/plantes/index.md
Normal file
5
content/nature/plantes/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Plantes et fleurs
|
||||||
|
sort_order: desc
|
||||||
|
featured_image: D5600_002274.jpg
|
||||||
|
---
|
7
content/paysages/index.md
Normal file
7
content/paysages/index.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
title: Paysages
|
||||||
|
sort_order: desc
|
||||||
|
menus: "main"
|
||||||
|
weight: 5
|
||||||
|
featured_image: D3000_000903.jpg
|
||||||
|
---
|
5
content/privé/_index.md
Normal file
5
content/privé/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Privé
|
||||||
|
sort_order: desc
|
||||||
|
private: true
|
||||||
|
---
|
5
content/privé/famille/_index.md
Normal file
5
content/privé/famille/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Famille
|
||||||
|
sort_order: asc
|
||||||
|
private: true
|
||||||
|
---
|
5
content/privé/famille/alencon/index.md
Normal file
5
content/privé/famille/alencon/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Alençon, Noël 2023
|
||||||
|
sort_order: asc
|
||||||
|
weight: 940
|
||||||
|
---
|
5
content/privé/famille/aniane/index.md
Normal file
5
content/privé/famille/aniane/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Aniane, juillet 2012
|
||||||
|
sort_order: asc
|
||||||
|
weight: 990
|
||||||
|
---
|
5
content/privé/famille/anniversaire Marie-Agnès/index.md
Normal file
5
content/privé/famille/anniversaire Marie-Agnès/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: 60 ans de Marie-Agnès, juillet 2023
|
||||||
|
sort_order: asc
|
||||||
|
weight: 950
|
||||||
|
---
|
5
content/privé/famille/fontainebleau/index.md
Normal file
5
content/privé/famille/fontainebleau/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Fontainebleau, juillet 2020
|
||||||
|
sort_order: asc
|
||||||
|
weight: 970
|
||||||
|
---
|
5
content/privé/famille/la grave/index.md
Normal file
5
content/privé/famille/la grave/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: La Grave, aout 2011
|
||||||
|
sort_order: asc
|
||||||
|
weight: 1000
|
||||||
|
---
|
5
content/privé/famille/lorraine 2023/index.md
Normal file
5
content/privé/famille/lorraine 2023/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Lorraine, juin 2023
|
||||||
|
sort_order: asc
|
||||||
|
weight: 960
|
||||||
|
---
|
5
content/privé/famille/nancy/index.md
Normal file
5
content/privé/famille/nancy/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Nancy, aout 2019
|
||||||
|
sort_order: asc
|
||||||
|
weight: 980
|
||||||
|
---
|
5
content/privé/paris/40 ans Christophe/index.md
Normal file
5
content/privé/paris/40 ans Christophe/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: 40 ans de Christophe, mai 2024
|
||||||
|
sort_order: asc
|
||||||
|
weight: 940
|
||||||
|
---
|
5
content/privé/paris/_index.md
Normal file
5
content/privé/paris/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Les copains d'apéro 🍺🥂
|
||||||
|
sort_order: asc
|
||||||
|
private: true
|
||||||
|
---
|
5
content/privé/paris/dublin/index.md
Normal file
5
content/privé/paris/dublin/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Dublin, septembre 2024
|
||||||
|
sort_order: asc
|
||||||
|
weight: 930
|
||||||
|
---
|
5
content/privé/paris/lille2020/index.md
Normal file
5
content/privé/paris/lille2020/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Lille, juin 2020
|
||||||
|
sort_order: asc
|
||||||
|
weight: 980
|
||||||
|
---
|
5
content/privé/paris/lille2021/index.md
Normal file
5
content/privé/paris/lille2021/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Lille, janvier 2021
|
||||||
|
sort_order: asc
|
||||||
|
weight: 970
|
||||||
|
---
|
5
content/privé/paris/noisiel2022/index.md
Normal file
5
content/privé/paris/noisiel2022/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Noisiel, avril 2022
|
||||||
|
sort_order: asc
|
||||||
|
weight: 960
|
||||||
|
---
|
5
content/privé/paris/noisiel2025/index.md
Normal file
5
content/privé/paris/noisiel2025/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Noisiel, février 2025
|
||||||
|
sort_order: asc
|
||||||
|
weight: 920
|
||||||
|
---
|
5
content/privé/paris/nouvel an 2020/index.md
Normal file
5
content/privé/paris/nouvel an 2020/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Nouvel an 2020, Lille
|
||||||
|
sort_order: asc
|
||||||
|
weight: 990
|
||||||
|
---
|
5
content/privé/paris/nouvel an 2023/index.md
Normal file
5
content/privé/paris/nouvel an 2023/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Nouvel an 2023, Les écorcins
|
||||||
|
sort_order: asc
|
||||||
|
weight: 950
|
||||||
|
---
|
5
content/privé/paris/paris/index.md
Normal file
5
content/privé/paris/paris/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Paris, octobre 2019
|
||||||
|
sort_order: asc
|
||||||
|
weight: 1000
|
||||||
|
---
|
5
content/privé/utt/40 ans/index.md
Normal file
5
content/privé/utt/40 ans/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: 40 ans !
|
||||||
|
sort_order: asc
|
||||||
|
weight: 920
|
||||||
|
---
|
5
content/privé/utt/_index.md
Normal file
5
content/privé/utt/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: UTTeam
|
||||||
|
sort_order: asc
|
||||||
|
private: true
|
||||||
|
---
|
5
content/privé/utt/anniversairesavignon/index.md
Normal file
5
content/privé/utt/anniversairesavignon/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Anniversaires à Avignon, mai 2021
|
||||||
|
sort_order: asc
|
||||||
|
weight: 975
|
||||||
|
---
|
5
content/privé/utt/ardeche/index.md
Normal file
5
content/privé/utt/ardeche/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Ardèche, juillet 2021
|
||||||
|
sort_order: asc
|
||||||
|
weight: 970
|
||||||
|
---
|
5
content/privé/utt/bordeaux/index.md
Normal file
5
content/privé/utt/bordeaux/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Bordeaux, février 2023
|
||||||
|
sort_order: asc
|
||||||
|
weight: 940
|
||||||
|
---
|
5
content/privé/utt/chamrousse/index.md
Normal file
5
content/privé/utt/chamrousse/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Chamrousse, juillet 2010
|
||||||
|
sort_order: asc
|
||||||
|
weight: 1000
|
||||||
|
---
|
5
content/privé/utt/chateauneuf/index.md
Normal file
5
content/privé/utt/chateauneuf/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Châteauneuf-du-Pape, 30 mai 2020
|
||||||
|
sort_order: asc
|
||||||
|
weight: 980
|
||||||
|
---
|
5
content/privé/utt/forcalquier/_index.md
Normal file
5
content/privé/utt/forcalquier/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Forcalquier et ses environs, juillet-aout 2023
|
||||||
|
weight: 930
|
||||||
|
sort_order: asc
|
||||||
|
---
|
4
content/privé/utt/forcalquier/manosque/index.md
Normal file
4
content/privé/utt/forcalquier/manosque/index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Manosque, 30 juillet 2023
|
||||||
|
sort_order: asc
|
||||||
|
---
|
4
content/privé/utt/forcalquier/pierrevert/index.md
Normal file
4
content/privé/utt/forcalquier/pierrevert/index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Pierrevert, 2 aout 2023
|
||||||
|
sort_order: asc
|
||||||
|
---
|
4
content/privé/utt/forcalquier/roussillon/index.md
Normal file
4
content/privé/utt/forcalquier/roussillon/index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Roussillon, 1er aout 2023
|
||||||
|
sort_order: asc
|
||||||
|
---
|
4
content/privé/utt/forcalquier/sisteron/index.md
Normal file
4
content/privé/utt/forcalquier/sisteron/index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Sisteron, 3 aout 2023
|
||||||
|
sort_order: asc
|
||||||
|
---
|
5
content/privé/utt/gala2005/index.md
Normal file
5
content/privé/utt/gala2005/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Gala de l’UTT, juin 2005
|
||||||
|
sort_order: asc
|
||||||
|
weight: 1040
|
||||||
|
---
|
5
content/privé/utt/gala2007/index.md
Normal file
5
content/privé/utt/gala2007/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Gala de l’UTT, juin 2007
|
||||||
|
sort_order: asc
|
||||||
|
weight: 1030
|
||||||
|
---
|
5
content/privé/utt/hauteluce/index.md
Normal file
5
content/privé/utt/hauteluce/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Hauteluce, aout 2013
|
||||||
|
sort_order: asc
|
||||||
|
weight: 990
|
||||||
|
---
|
5
content/privé/utt/mont-saint-michel/index.md
Normal file
5
content/privé/utt/mont-saint-michel/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Mont-Saint-Michel, nouvel an 2022
|
||||||
|
sort_order: asc
|
||||||
|
weight: 960
|
||||||
|
---
|
5
content/privé/utt/paris/index.md
Normal file
5
content/privé/utt/paris/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Paris, aout 2022
|
||||||
|
sort_order: asc
|
||||||
|
weight: 945
|
||||||
|
---
|
5
content/privé/utt/pouldreuzic/index.md
Normal file
5
content/privé/utt/pouldreuzic/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Pouldreuzic, aout 2007
|
||||||
|
sort_order: asc
|
||||||
|
weight: 1020
|
||||||
|
---
|
BIN
content/privé/utt/prague/100_1437.JPG
Normal file
BIN
content/privé/utt/prague/100_1437.JPG
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 MiB |
4
content/privé/utt/prague/Bart/index.md
Normal file
4
content/privé/utt/prague/Bart/index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Photos de Bart
|
||||||
|
sort_order: asc
|
||||||
|
---
|
BIN
content/privé/utt/prague/Gaëtan/100_1439.MOV
Normal file
BIN
content/privé/utt/prague/Gaëtan/100_1439.MOV
Normal file
Binary file not shown.
4
content/privé/utt/prague/Gaëtan/index.md
Normal file
4
content/privé/utt/prague/Gaëtan/index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Photos de Gaëtan
|
||||||
|
sort_order: asc
|
||||||
|
---
|
4
content/privé/utt/prague/Matt/index.md
Normal file
4
content/privé/utt/prague/Matt/index.md
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
---
|
||||||
|
title: Photos de Matt
|
||||||
|
sort_order: asc
|
||||||
|
---
|
5
content/privé/utt/prague/_index.md
Normal file
5
content/privé/utt/prague/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Prague, aout 2009
|
||||||
|
weight: 1010
|
||||||
|
sort_order: asc
|
||||||
|
---
|
5
content/privé/utt/villeneuve/index.md
Normal file
5
content/privé/utt/villeneuve/index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: Villeneuve-lès-Avignon, 21 mai 2022
|
||||||
|
sort_order: asc
|
||||||
|
weight: 950
|
||||||
|
---
|
9
photos.spacefox.fr.iml
Normal file
9
photos.spacefox.fr.iml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="WEB_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$" />
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
34
static/robots.txt
Normal file
34
static/robots.txt
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
User-agent: GPTBot
|
||||||
|
Disallow: /
|
||||||
|
User-agent: ChatGPT-User
|
||||||
|
Disallow: /
|
||||||
|
User-agent: Google-Extended
|
||||||
|
Disallow: /
|
||||||
|
User-agent: PerplexityBot
|
||||||
|
Disallow: /
|
||||||
|
User-agent: Amazonbot
|
||||||
|
Disallow: /
|
||||||
|
User-agent: ClaudeBot
|
||||||
|
Disallow: /
|
||||||
|
User-agent: Omgilibot
|
||||||
|
Disallow: /
|
||||||
|
User-Agent: FacebookBot
|
||||||
|
Disallow: /
|
||||||
|
User-Agent: Applebot
|
||||||
|
Disallow: /
|
||||||
|
User-agent: anthropic-ai
|
||||||
|
Disallow: /
|
||||||
|
User-agent: Bytespider
|
||||||
|
Disallow: /
|
||||||
|
User-agent: Claude-Web
|
||||||
|
Disallow: /
|
||||||
|
User-agent: Diffbot
|
||||||
|
Disallow: /
|
||||||
|
User-agent: ImagesiftBot
|
||||||
|
Disallow: /
|
||||||
|
User-agent: Omgilibot
|
||||||
|
Disallow: /
|
||||||
|
User-agent: Omgili
|
||||||
|
Disallow: /
|
||||||
|
User-agent: YouBot
|
||||||
|
Disallow: /
|
1
themes/gallery
Submodule
1
themes/gallery
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit c4c8a0711480432484b41ee8fd29fcbfdb2d86eb
|
Loading…
Add table
Reference in a new issue