【发布时间】:2015-11-23 19:35:15
【问题描述】:
我有一个主题,对于帖子页面,如果有的话,我会显示 image 值。
我还有一个渲染 YouTube 视频的插件,用法如下:{% youtube id_12345 %}。
在我的模板文件中,是否可以从帖子的前端引用 video 值并使用我可以在我的内容中使用的相同插件呈现它?
类似:
{% if post.video %}
{% youtube {{post.video}} %} # <-- this does not work
{% elsif post.image %}
<img src="{{ post.image }}" class="post-image" alt="{{ post.title }}">
{% endif %}
谢谢!
【问题讨论】:
-
(我已经删除了我的其他回复,因为整个
capture方法一开始就没有必要)
标签: youtube jekyll jekyll-extensions