Fix theme
1
.frontmatter/database/pinnedItemsDb.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
1
.frontmatter/database/taxonomyDb.json
Normal file
@@ -0,0 +1 @@
|
||||
{"taxonomy":{"tags":["AI","DEL_FABLAB","DIGITAL:ENTERPRISE:LAB","DataBeer Tuscany","DataBeers","DataBeers Venezia","DevFest","DevFest2022","DevFestTriveneto","Follow UP","Follow UP!","Follow Up","GDG Venezia","Hacktoberfest","IA","OpenIA","PyData Italia","PyZero","Pycon Italia","Pycon Italy","RaspberryPi","Scala Italy","access control","ai","analytics","anime","api","apple","artificial intelligence","aws","barcode","bash","blog","blogging","book","boostrap","bot","bridgy","browser","browser engine","coding","command line","continuous deployment","convention","css","d&d","data","design","dev","develop","development","devfest","devfest2022","devops","dice","django","django filter","django rest framework","dnd","docker","doctest","documentation","dotfiles","feed","flask","framework","gadget","gdr","git","github","github action","github copilot","gitops","golang","good practices","google api","google drive","graphql","gui","h-entry","hack","hacking","hugo","indieweb","indiweb","keyboard","lambda function","latex","mac","map","markdown","mastodon","microformat","micropub","microservice","module","npm","pair programming","pdf","pipenv","podcast","poetry","post","programmer","programming","publishing","pycon","pyconit","pyenv","pyhton","pyproject","python","qrcode","rant","repo","reportlab","rest","robots","rss","rust","scraping","script","security","security allert","server","site","social media","socket","tailwind","tea","telegram","template","test","testing","theme","tornado","tox","twitter","twtxt","ui","unitest","url","vscode","web","webmention","wordpress"],"categories":["coding","dev","develop","fingerfood","hacking","post","rant","zeta target"]}}
|
||||
@@ -21,6 +21,9 @@ images:
|
||||
keywords:
|
||||
aliases:
|
||||
- "/post/2024/new-render-image-fot-hugo/"
|
||||
series:
|
||||
- https://fundor333.com/post/2021/hugo-with-lazy-loading-and-webp/
|
||||
- https://fundor333.com/post/2021/webp-and-avif-with-hugo-generator/
|
||||
---
|
||||
|
||||
## The story so far
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
[
|
||||
{
|
||||
"name":"Prenotazioni per Foto Set Lucca 2024",
|
||||
"url":"https://photo.fundor333.com/fiera/lucca-comics-2024/",
|
||||
"label": "<i class=\"fa-regular fa-globe\"></i>"
|
||||
|
||||
},
|
||||
{
|
||||
"name": "My Portfolio",
|
||||
"url": "https://photo.fundor333.com",
|
||||
@@ -34,4 +40,4 @@
|
||||
"url": "https://fundor333.com",
|
||||
"label": "<i class=\"fa-regular fa-globe\"></i>"
|
||||
}
|
||||
]
|
||||
]
|
||||
|
||||
2
go.mod
@@ -3,7 +3,7 @@ module github.com/fundor333/fundor333.github.io
|
||||
go 1.22.5
|
||||
|
||||
require (
|
||||
github.com/fundor333/macha-theme v1.3.4 // indirect
|
||||
github.com/fundor333/macha-theme v1.4.0 // indirect
|
||||
github.com/fundor333/macia-image v1.0.1 // indirect
|
||||
github.com/fundor333/macia-indiweb v1.0.0 // indirect
|
||||
)
|
||||
|
||||
2
go.sum
@@ -56,6 +56,8 @@ github.com/fundor333/macha-theme v1.3.3 h1:3qrMx9pBdHXxQDC9RwJ3YM2QYrvAk2Zht7u+H
|
||||
github.com/fundor333/macha-theme v1.3.3/go.mod h1:cF5tKZFNcp4VAobe0j0Rhn1QYvckUhUnb6T9FRAt1L4=
|
||||
github.com/fundor333/macha-theme v1.3.4 h1:x/2yYNSYhC7MyDVPewa+WzEJs8ILxjrnbnv/p3pKHOk=
|
||||
github.com/fundor333/macha-theme v1.3.4/go.mod h1:cF5tKZFNcp4VAobe0j0Rhn1QYvckUhUnb6T9FRAt1L4=
|
||||
github.com/fundor333/macha-theme v1.4.0 h1:Ft7NFI2i5lKPfC37V1vdYcQeFth9qXyZmPa0j/QlEsg=
|
||||
github.com/fundor333/macha-theme v1.4.0/go.mod h1:cF5tKZFNcp4VAobe0j0Rhn1QYvckUhUnb6T9FRAt1L4=
|
||||
github.com/fundor333/macia-image v0.0.0-20240728183659-e648e0050a87 h1:BwDrTcbkAi0WvySmRGu3vUUVBHYXDqS2QLveRgsL+5c=
|
||||
github.com/fundor333/macia-image v0.0.0-20240728183659-e648e0050a87/go.mod h1:9zBOlIP9CvKcUcK3q+La1av6XH/fWPSApaYF/lvVAKY=
|
||||
github.com/fundor333/macia-image v1.0.0 h1:fZpEgYjCNYidwncWpiowcHI9VCDlp9VaF5YqTe0CqLU=
|
||||
|
||||
6
makefile
@@ -10,13 +10,13 @@ send_webmention: ## Send webmention from feed
|
||||
@poetry run python send_webmention.py
|
||||
|
||||
develop: ## Run the site localy
|
||||
@hugo server --minify --disableFastRender
|
||||
@hugo server --minify --disableFastRender --renderToMemory
|
||||
|
||||
developfuture: ## Run the site localy with all the future article
|
||||
@hugo server --minify --disableFastRender --buildFuture
|
||||
@hugo server --minify --disableFastRender --buildFuture --renderToMemory
|
||||
|
||||
developall: ## Run the site localy with all the article, future or drafts
|
||||
@hugo server --minify --disableFastRender --buildFuture --buildDrafts
|
||||
@hugo server --minify --disableFastRender --buildFuture --buildDrafts --renderToMemory
|
||||
|
||||
.PHONY: gomodule
|
||||
gomodule: ## Update Go Module
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"0001-01-01T00:00:00Z","Tags":{}}}
|
||||
|
After Width: | Height: | Size: 89 KiB |
@@ -0,0 +1 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"0001-01-01T00:00:00Z","Tags":{}}}
|
||||
|
After Width: | Height: | Size: 43 KiB |
@@ -0,0 +1 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"0001-01-01T00:00:00Z","Tags":{}}}
|
||||
|
After Width: | Height: | Size: 43 KiB |
@@ -0,0 +1 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"0001-01-01T00:00:00Z","Tags":{}}}
|
||||
|
After Width: | Height: | Size: 184 KiB |
@@ -0,0 +1 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"0001-01-01T00:00:00Z","Tags":{}}}
|
||||
|
After Width: | Height: | Size: 40 KiB |
@@ -0,0 +1 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"0001-01-01T00:00:00Z","Tags":{}}}
|
||||
|
After Width: | Height: | Size: 35 KiB |
@@ -0,0 +1 @@
|
||||
{"Exif":{"Lat":0,"Long":0,"Date":"0001-01-01T00:00:00Z","Tags":{}}}
|
||||
|
After Width: | Height: | Size: 36 KiB |