| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
|
Vasily Kuznetsov
2016/08/22 10:14:51
This template seems to be not used by any pages th
| |
| 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 |