We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d6ba37 commit c33cb86Copy full SHA for c33cb86
README.md
@@ -17,4 +17,22 @@ A django app for creating css grids
17
['sidebar', 'content', 'content']
18
]
19
grid_gap = '10px'
20
-
+
21
22
23
+ # templates/polls/list.html
24
+ <!DOCTYPE html>
25
+ {% load css_grid %}
26
27
+ <html>
28
+ <head>
29
+ <title>Hello World!</title>
30
+ <meta charset="utf-8">
31
+ <style>
32
+ {% css_grid %}
33
+ </style>
34
+ </head>
35
+ <body>
36
+ Hello World!
37
+ </body>
38
+ </html>
0 commit comments