Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
44 views

Jinja's loop variable is not available in include-d templates

I have code similar to the following in one of my jinja template {% for post in posts %} {% include ["posts/" + post.type + ".html", "posts/default.html"] %} {% endfor %} which is supposed to ...
2
votes
1answer
59 views

Proper method for Django template inheritance of <head> content

I have a base.html template with sitewide tags for charset, google-site-verification, stylesheets, js.... I also need to set up blocks for page specific title tags and meta descriptions. I am ...
2
votes
5answers
1k views

How to implement Template Inheritance (like Django?) in PHP5

Is there an existing good example, or how should one approach creating a basic Template system (thinking MVC) that supports "Template Inheritance" in PHP5? For an example of what I define as Template ...
1
vote
1answer
148 views

Template inheritance in 3.1 for controllers in namespace

I have an application.html.erb in views/layouts as usual, with <%= yield %> for content. Now I'm writing a settings page for user accounts which holds a bunch of different pages (profile, account, ...
1
vote
4answers
204 views

Template Inheritance in Django

I'm using Django 1.1, and I have this template, a base template, that all the other pages inherit from. It defines a bunch of things that are constant throughout pretty much all of the website, like ...
-1
votes
2answers
128 views

Is it possible to make multiple template inheritance in django templates?

I have three html-files: base.html page.html comment.html in page.html I extend base.html. In comment.html I extend page.html. Will comment.html extend base.html's blocks?