Reputation: 725
I'm creating a blogger template xml from scratch and I have an error on the page, when trying to show the page containing <data:title/>
values and pages list in <data:links/>
tags.
The generated html of the page contains TEMPLATE ERROR: No dictionary named: '' in: ['blog', 'skin', 'view']
instead of inserting a proper value.
How to get data values in my custom template?
Upvotes: 1
Views: 1098
Reputation: 309
it should be <data:blog.title/>
not <data:title/>
data should be followed by a variable contained on that array ['blog', 'skin', 'view']
Upvotes: 3