如何在 ghost 的索引页面底部放置一个可配置的模因?

How do I place a configurable meme at the bottom of the index page in ghost?

我正在为我的一个朋友开发博客,他想在索引页底部放一张 meme 图片。

所以最简单的方法是编辑模板并从那里引用它。 问题是,不断编辑和上传新模板对用户来说并不友好。

所以我有了这个想法,我可以创建一个静态页面并将其放置在该页面上并从模板中引用它。但我看到,当您将图像上传到 ghost.io 时,它会根据日期路径生成一个名称。这不适用于模板中的固定 URL。

另一种选择可能是使用标签。作为标签可以让你放一张图片并且有一个URL。但我试过它也有类似的问题。

我怎样才能很好地完成这项工作?

不要在您的主题中引用图片 URL。引用页面 slug 并加载其内容,这只是一张图片。

Ghost 车把示例 API:

{{!-- If a static page "meme" exists - its content will be loaded here --}}

{{#get "posts" slug="meme" }}
    {{#foreach posts}}
        <div>
            {{content}}
        </div>
    {{/foreach}}
{{/get}}