如何在 Rails 中制作模板系统(如 Tumblr 的)?
我研究过 Liquid 等,但我找不到一种方法来制作可以处理所有情况的“一个文件”模板。我不想重新发明轮子,但如果我找不到现有的解决方案,我会这样做。
模板系统如下所示:
{block:Text}
<li class="post text">
{block:Title}
<h3><a href="{Permalink}">{Title}</a></h3>
{/block:Title}
{Body}
</li>
{/block:Text}
I've looked at Liquid and the like, but I cannot find a way to make a "one file" template that can handle all situations. I don't want to reinvent the wheel, but I will if I cannot find an existing solution.
The template system looks like this:
{block:Text}
<li class="post text">
{block:Title}
<h3><a href="{Permalink}">{Title}</a></h3>
{/block:Title}
{Body}
</li>
{/block:Text}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到的答案是 Mustache,它使我能够非常接近地反映 Tumblr 的模板。远。
The answer I found is Mustache, which allows me to pretty closely mirror the templating of Tumblr. Far out.