Skip to content

Commit 4b27f24

Browse files
Update Django.md
1 parent e431a88 commit 4b27f24

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Django.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,16 +104,19 @@ pages/
104104
105105
# home.html
106106
```python
107+
107108
<!DOCTYPE html>
108109
<html>
109110
<head><title>Home</title></head>
110111
<body>
111112
<h1>Hello from Home Page</h1>
112-
<a href="/about/">About</a> | <a href="/contact/">Contact</a>
113+
<a href="/about/">About</a> | <a href="/contact/">Contact</a> | <a href="/feedback/">Feedback</a>
114+
113115
</body>
114116
</html>
115117
116118
119+
117120
```
118121
119122
## about.html

0 commit comments

Comments
 (0)