Add slack preview

This commit is contained in:
Pascal Le Merrer 2025-12-15 23:09:59 +01:00
parent 33b8d0fcd7
commit 975e5c3ecc
5 changed files with 9 additions and 0 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
output output
__pycache__

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View file

@ -1,6 +1,7 @@
AUTHOR = 'Pascal Le Merrer' AUTHOR = 'Pascal Le Merrer'
SITENAME = 'Craft Letter' SITENAME = 'Craft Letter'
SITEURL = "https://www.craftletter.fr" SITEURL = "https://www.craftletter.fr"
SITEDESCRIPTION = "Newsletter hebdomadaire de veille technologique, consacrée au développement logiciel."
PATH = "content" PATH = "content"
@ -43,3 +44,10 @@ STATIC_PATHS = ['images', 'robots.txt']
# SEO # SEO
SEO_ENHANCER_SITEMAP_URL = "https://www.craftletter.fr/sitemap.xml" SEO_ENHANCER_SITEMAP_URL = "https://www.craftletter.fr/sitemap.xml"
SEO_ENHANCER = True # SEO enhancer is disabled by defaultCSS_MIN = True SEO_ENHANCER = True # SEO enhancer is disabled by defaultCSS_MIN = True
# Metadata
#
DEFAULT_METADATA = {
"og:image": "https://www.craftletter.fr/images/craftletter.svg"
}