Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcomicale/minimalism
A 11ty starter, PWA, Tailwind Css, SEO...
https://github.com/marcomicale/minimalism
11ty 11ty-blog 11ty-starter 11ty-template 11ty-website blog eleventy netlify tailwind tailwind-css tailwindcss
Last synced: 23 days ago
JSON representation
A 11ty starter, PWA, Tailwind Css, SEO...
- Host: GitHub
- URL: https://github.com/marcomicale/minimalism
- Owner: MarcoMicale
- License: mit
- Created: 2022-04-16T09:19:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-20T21:49:37.000Z (over 1 year ago)
- Last Synced: 2024-10-14T07:04:52.080Z (23 days ago)
- Topics: 11ty, 11ty-blog, 11ty-starter, 11ty-template, 11ty-website, blog, eleventy, netlify, tailwind, tailwind-css, tailwindcss
- Language: Nunjucks
- Homepage: https://11ty-minimalism.netlify.app/
- Size: 4.79 MB
- Stars: 34
- Watchers: 0
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Minimalism
> Simplicity is the ultimate sophistication!
## Cosa voglio ottene?
- ✅ Creazione pagine velocemente
- ✅ Favicon personalizzabile (msapplication/apple/safari/chrome)
- ✅ Blog
- ✅ Fedd Rss
- ✅ Sitemap
- ✅ PWA
- ✅ Immagini social dinamiche per ogni pagina/post
- ✅ Ottimizzazione SEO
- ✅ 404 error page
- ✅ Offline page
- ✅ Link social facili - edit /src/_11ty/_data/meta.js
- ✅ Tutti 100 in lighthouse
- ✅ Light/Dark mode
- ✅ [Netifly](https://www.netlify.com/)## Cosa ho usato:
- [Eleventy](https://github.com/11ty/eleventy)
- [Plugin eleventy-img](https://github.com/11ty/eleventy-img)
- [Plugin eleventy-plugin-rss](https://github.com/11ty/eleventy-plugin-rss)
- [Plugin eleventy-navigation](https://github.com/11ty/eleventy-navigation)
- [Plugin-social-images](https://github.com/5t3ph/eleventy-plugin-social-images)
- [Plugin-reading-time](https://github.com/johanbrook/eleventy-plugin-reading-time)
- [Tailwindcss](https://github.com/tailwindlabs/tailwindcss)
- [Tailwindcss typography](https://github.com/tailwindlabs/tailwindcss-typography)
- [Slugify]([https://github.com/simov/slugify)
- [Luxon](https://github.com/moment/luxon)
- [html minifier](https://github.com/kangax/html-minifier)
- [rimraf](https://github.com/isaacs/rimraf)
- [npm-run-all](https://github.com/mysticatea/npm-run-all)
- [Tabler Icon](https://github.com/tabler/tabler-icons)## Status
### BETAUsabile ma con qualche correzione da effettuare.
## Folder Tree
```bash
Minimalism
| .eleventy.js
| .gitattributes
| .gitignore
| LICENSE
| logo.png # Sostituisci questo file con il tuo logo
| netlify.toml
| package-lock.json
| package.json
| README.md
| SECURITY.md
| tailwind.config.js
|
+---.github
| \---workflows
| codeql-analysis.yml
|
+---.vscode
| tasks.json
|
\---src
| ... # Aggiungi le pagine che vuoi
| blog.md # Pagina del tuo Blog (modifica da qui la intro)
| index.md # La Prima pagina del tuo sito (essenziale)
|
+---blog
| ... # Inserisci qui i tuoi post per il blog
|
\---_11ty
+---_data
| meta.js # MODIFICA QUESTO FILE!
|
+---_generate
| 404.njk
| feed.njk
| manifest.njk
| offline.njk # Pagina mostrata dall'app se offline
| pagesjson.njk
| robot.njk
| sitemap.njk
| socialtemplate.njk # Modifica se vuoi cambiare l'immagine social
|
+---_includes
| favicon.njk
| footer.njk
| head-article.njk
| head-website.njk
| head.njk
| nav.njk # Header sito (Titolo e Nav Bar)
|
+---_layouts # Layouts:
| article.njk # Articoli del Blog
| blog.njk # Pagina del Blog
| page.njk # Pagine generiche
|
+---_social # File generati per l'immagine social
| pages.json
| social.css
| template.html
|
+---_static
| +---app # Risorse statiche
| | .htaccess
| | sw.js
| |
| +---favicon
| | ... # Favicon Generate a partire dal file logo.png
| |
| \---img
| ...
|
\---_tailwindCSS
raw-social.css # CSS del tuo sito
raw-website.css # Modifica se vuoi cambiare l'immagine social
```