Custom Tumblr them with Handlebars

2019-08-08 01:21发布

Haven't been able to find out any answers to this so far but I'm trying to use handlebars within tumblr's theme system and it looks like my {{variables}} are getting overwritten from tumblr and then my content is never displayed.

For example my handlebars template has

<img src="{{bgimage}}" class="img-responsive">

But it will output as

<img src="{}" class="img-responsive">

So it looks like tumblr is just removing it. I have seen others use handlebars within a theme however I just can't figure out how they got around it. Any help would be awesome, thanks!

1条回答
欢心
2楼-- · 2019-08-08 01:47

I think you just need to add a space to your handlebars template:

<img src="{{ bgimage }}" class="img-responsive">

Tumblr then renders it as:

<img src="{{ bgimage }}" class="img-responsive">

Handlebars.js should be free to do its thing.

查看更多
登录 后发表回答