mofoyoda
mofoyoda

Reputation: 725

TEMPLATE ERROR: No dictionary named: '' in: ['blog', 'skin', 'view'] when viewing blogger page

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

Answers (1)

ajib
ajib

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

Related Questions