Primo Commit

This commit is contained in:
2021-03-13 16:21:17 +01:00
commit 6b38083052
11 changed files with 501 additions and 0 deletions

1
src/.ssgignore Normal file
View File

@@ -0,0 +1 @@
template.md

8
src/_footer.html Normal file
View File

@@ -0,0 +1,8 @@
<footer>
<a href="index.html">🏡 È TUTTO BASATO</a> </br>
All site content is in the Public Domain.
</footer>
</body>
</html>

12
src/_header.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang=en">
<head>
<title></title>
<meta charset=UTF-8>
<link rel=stylesheet href=style.css>
<link rel="shortcut icon" type="image/x-icon" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>

21
src/index.md Normal file
View File

@@ -0,0 +1,21 @@
# 🍳 Basatissimo 🍲
Solo ricette basate, divieto di bloat
## Ricette
- [Pasta al forno](pasta-al-forno.html)
- [Pane con la macchina del pane](pane-in-macchina.html)
## Più informazioni
## In verità vi dico
Forza Inter
### Manca la vostra ricetta preferita?
È facile aggiungere la vostra!
- Proponete le vostre ricette sul nostro [Git](https://git.octosrv.me/marco/ricette-basate)
- Per informazioni scrivete a [Marco](mailto:marco@octosrv.me)

22
src/pane-in-macchina.md Normal file
View File

@@ -0,0 +1,22 @@
# Pane in macchina del pane
Pane in macchina - Clatronic
## Ingredients
- Acqua - 300ml
- Olio - 1,5 cucchiai
- Sale - 1 cucchiaino
- Zucchero - 1 cucchiaio
- Farina tipo0 e/o integrale - 540g
- Lievito secco - un pacchetto / 7g
## Directions
1. Butta tutto in macchina del pane
2. Fai partire con programma 1 (completo) oppure 8 (solo impasto per infornare a parte)
## Contribution
- Mr. Clatronic

24
src/pasta-al-forno.md Normal file
View File

@@ -0,0 +1,24 @@
# Pasta Al Forno
È della pasta, è al forno
## Ingredients
- Pasta
- Mozzarella
- Ragù
- Ma in realtà tutte le cose che stanno bene in forno
## Directions
1. Cuoci pasta
2. Metti mozzarella cubetti in teglia
3. Metti sugo
4. Inforna finchè mozzarella sciolta
5. ???
6. Profit
## Contribution
- Tipo chiunque

43
src/style.css Normal file
View File

@@ -0,0 +1,43 @@
body {
max-width: 800px ;
margin: auto ;
padding: 0 16px ;
margin-bottom: 500px ;
}
h1 {
text-align: center ;
}
footer {
text-align: center ;
}
img {
max-width: 600px ;
margin: auto ;
display: block ;
}
@media (prefers-color-scheme: dark) {
body {
background: #151515 ;
color: white ;
}
a {
color: lightblue ;
}
a:visited {
color: gray ;
}
h2 {
color: tomato ;
}
}
@media print {
a[href] {
text-decoration: none ;
color: black ;
}
}

24
src/template.md Normal file
View File

@@ -0,0 +1,24 @@
# Nome ricetta
Aggiungete una breve descrizione
## Ingredienti
- Basta
- Una semplice
- lista
- in markdown
## Procedura
1. Qua
2. Un bell'elenco
3. Numerato
4. Perchè ci piacciono le cose belle
## Crediti
- **Vostro Nome** -- [Vostro sito](https://se-volete.com)
P.S. non dimenticate di aggiungere il link ne file index.md!