On 29-May-07, at 5:28 AM, vince wrote:

> {% include("design/index_nav.html") %}
> Welcome to the home page
> {% include("design/footer.html") %}

make a base.html page like this:

contents of design/index_nav.html
{% block maincontent %}
{% endblock %}
contents of design/footer.html

and in your static pages:

{% extends 'base.html'%}
{% block maincontent %}
your content here
{% endblock %}

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to