如何在 Rails 中制作模板系统(如 Tumblr 的)?

发布于 2024-09-18 21:16:58 字数 342 浏览 4 评论 0原文

我研究过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城仅有旧梦在 2024-09-25 21:17:02

我找到的答案是 Mustache,它使我能够非常接近地反映 Tumblr 的模板。远。

The answer I found is Mustache, which allows me to pretty closely mirror the templating of Tumblr. Far out.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文