在插件中使用插件

时间:2013-11-17 22:09:27

标签: jekyll octopress

是否可以在标题中使用插件?
例如,在标题后面的header.html中显示一个图像。

<hgroup>
   <h1><a href="{{ root_url }}/">{{ site.title }}</a></h1>
   {% if site.subtitle %}
      <h2>{{ site.subtitle }}</h2>
   {% endif %}
   {% img /images/my_image.jpg %}
</hgroup> 

请注意,我没有尝试......

1 个答案:

答案 0 :(得分:0)

图片实际上不是插件,但您应该可以添加图片。我会改为使用img代码,所以<img src="/images/my_image.jpg">代替,但这也可以。

您还可以使用{% include file_path %}如果您想要包含自己的小部件。请注意,file_path是source/_include/...

中的文件路径