Skip to content

Commit 73341a6

Browse files
authored
Merge pull request DjangoGirls#1145 from The-Judge/master
Updated filesystem treeview to replect 'templates' directory
2 parents 19f786e + 2d9fd5f commit 73341a6

File tree

14 files changed

+34
-20
lines changed

14 files changed

+34
-20
lines changed

cs/css/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ Uděláš to tak, že vytvoříš složku s názvem `static` uvnitř aplikace bl
4545
djangogirls
4646
├── blog
4747
│ ├── migrations
48-
│ └── static
48+
│ ├── static
49+
│   └── templates
4950
└── mysite
5051
```
5152

de/css/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ Dies tun wir, indem wir einen Ordner namens `static` in der Blog-App erstellen:
4343
djangogirls
4444
├── blog
4545
│ ├── migrations
46-
│ └── static
46+
│ ├── static
47+
│   └── templates
4748
└── mysite
4849
```
4950

en/css/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ We do that by creating a folder called `static` inside the blog app:
4646
djangogirls
4747
├── blog
4848
│ ├── migrations
49-
│ └── static
49+
│ ├── static
50+
│   └── templates
5051
└── mysite
5152
```
5253

@@ -106,7 +107,7 @@ Between the `<head>` and `</head>` tags, after the links to the Bootstrap CSS fi
106107
```html
107108
<link rel="stylesheet" href="{% static 'css/blog.css' %}">
108109
```
109-
The browser reads the files in the order they're given, so we need to make sure this is in the right place. Otherwise the code in our file may override code in Bootstrap files.
110+
The browser reads the files in the order they're given, so we need to make sure this is in the right place. Otherwise the code in our file may be overriden by code in Bootstrap files.
110111
We just told our template where our CSS file is located.
111112

112113
Your file should now look like this:

es/css/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ Esto lo conseguimos creando una carpeta llamada `static` dentro de la aplicació
4444
djangogirls
4545
├── blog
4646
│ ├── migrations
47-
│ └── static
47+
│ ├── static
48+
│   └── templates
4849
└── mysite
4950

5051

fr/css/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ Pour cela, nous allons créer un dossier appelé `static` à l'intérieur de not
4444
djangogirls
4545
├── blog
4646
│ ├── migrations
47-
│ └── static
47+
│ ├── static
48+
│   └── templates
4849
└── mysite
4950

5051

hu/css/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,11 @@ Django már tudja, hol találja a statikus fájlokat a beépíttett "admin" alka
4242
Ehhez pedig létre kell hozunk egy "`static`" nevű könyvtárat a blog applikáción belül:
4343

4444
djangogirls
45-
├── blog
46-
│ ├── migrations
47-
│ └── static
48-
└── mysite
45+
├── blog
46+
│ ├── migrations
47+
│ ├── static
48+
│   └── templates
49+
└── mysite
4950

5051

5152
A Django automatikusan megtalál minden "static" nevű mappát az alkalmazásaid könyvtárain belül, és képes lesz használni azok tartalmát statikus fájlokként.
@@ -290,4 +291,4 @@ Ne félj kicsit megbuherálni ezt a CSS-t és megváltoztatni pár dolgot. Ha va
290291

291292
Mindenesetre melegen ajánljuk ezt az ingyenes online [Codeacademy HTML & CSS kurzust][2], mint workshop utáni házi feladatot, hogy mindent tudj arról, hogyan tudod csinosabbá varázsolni a weboldaladat CSS-sel.
292293

293-
Készen állsz a következő fejezetre?! :)
294+
Készen állsz a következő fejezetre?! :)

it/css/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ Lo facciamo creando una cartella denominata `static` all'interno dela nostra app
4444
djangogirls
4545
├── blog
4646
│ ├── migrations
47-
│ └── static
47+
│ ├── static
48+
│   └── templates
4849
└── mysite
4950

5051

@@ -291,4 +292,4 @@ Non farti spaventare, sperimenta con i CSS e prova a cambiare alcune cose. Se ro
291292

292293
Compito per casa post-workshop: ti consigliamo caldamente di seguire [il corso su HTML & CSS di Codeacademy][2]. Così potrai imparare tutto ciò di cui hai bisogno per rendere i tuoi siti web più belli sfruttando il CSS.
293294

294-
Pronta per il prossimo capitolo?! :)
295+
Pronta per il prossimo capitolo?! :)

ko/css/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ CSS(Cascading Style Sheets)는 HTML와 같이 마크업언어(Markup Language)
5050
djangogirls
5151
├── blog
5252
│ ├── migrations
53-
│ └── static
53+
│ ├── static
54+
│   └── templates
5455
└── mysite
5556
```
5657

pt/css/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ Fazemos isso através da criação de uma pasta chamada `static` dentro do aplic
4343
djangogirls
4444
├── blog
4545
│ ├── migrations
46-
│ └── static
46+
│ ├── static
47+
│   └── templates
4748
└── mysite
4849

4950

ru/css/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ Django уже знает, где искать статические файлы
4646
djangogirls
4747
├── blog
4848
│ ├── migrations
49-
│ └── static
49+
│ ├── static
50+
│   └── templates
5051
└── mysite
5152
```
5253

0 commit comments

Comments
 (0)