Skip to content

Commit c33cb86

Browse files
authored
Added in HTML usage
1 parent 9d6ba37 commit c33cb86

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,22 @@ A django app for creating css grids
1717
['sidebar', 'content', 'content']
1818
]
1919
grid_gap = '10px'
20-
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

Comments
 (0)