Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html lang="en"> | |
3 <head> | |
4 <title>My Webpage</title> | |
5 </head> | |
6 <body> | |
7 <ul id="navigation"> | |
8 {% for item in navigation %} | |
9 <li><a href="{{ item.href }}">{{ item.caption }}</a></li> | |
10 {% endfor %} | |
11 </ul> | |
12 | |
13 <h1>My Webpage</h1> | |
14 {{ a_variable }} | |
15 | |
16 {# a comment #} | |
17 </body> | |
18 </html> | |
OLD | NEW |