Advertisement
Guest User

crodas

a guest
Aug 11th, 2010
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
  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.   </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement