i am a rookie in python and i am trying to develop a simple webpage using 
jinja2. can anyone please help me how to do that 
i am trying in this way but showing invalid syntax error

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html lang="en">
<head>
    <title>My Webpage</title>
</head>
<body>
    <ul id="navigation">
    {% for item in navigation %}
        <li><a href="{{ item.href }}">{{ item.caption }}</a></li>
    {% endfor %}
    </ul>

    <h1>My Webpage</h1>
    {{ a_variable }}
</body>
</html>
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to