我有画廊基于我的twitter bootstrap css文件。我最终使用Kramdown内联HTML + Markdown,因为我无法按照我希望的方式使用Liquid。
Kramdown解析的降价模板如下所示:
---
layout: gallery
title: Gallery
group: dropnavigation
root: .\
---
{% include root %}
{::options parse_block_html="true" /}
<li class="span3">
<div class="thumbnail">
[![image](http://placehold.it/260x180)](#)
#####Thumbnail label
Thumbnail caption right here...
</div>
</li>
<li class="span3">
<div class="thumbnail">
[![image](http://placehold.it/260x180)](#)
#####Thumbnail label
Thumbnail caption right here...
</div>
</li>
图库布局如下所示:
---
layout: core
---
{% include root %}
<div class="page-header">
<h1 class="well">{{ page.title }} <small>{{ site.tagline }}</small></h1>
</div>
<ul class="thumbnails">
{{ content }}
</ul>
有没有办法做到这一点,所以我只包括图像标签和标签,然后它通过模板由ul,li和div类设置样式?也许通过某种循环?
答案 0 :(得分:5)
是。您可以通过循环来定义包含每张图片信息的list。
---
layout: gallery
title: Gallery
group: dropnavigation
root: .\
pictures:
- url: http://placehold.it/260x180
label: Label 1
caption: Caption 1
- url: http://placehold.it/260x180
label: Label 2
caption: Caption 2
- url: http://placehold.it/260x180
label: Label 3
caption: Caption 3
---
{% include root %}
{::options parse_block_html="true" /}
{% for pic in page.pictures %}
<li class="span3">
<div class="thumbnail">
[![image]({{ pic.url }})](#)
##### {{ pic.label }}
{{ pic.caption }}
</div>
</li>
{% endfor %}
(甚至可以通过将YAML标题与列表一起使用,以及在库布局中完成循环和其他处理来完成,这样您只需要将pictures
列表更改为具有多个库(这意味着标题和标签必须用HTML而不是降价来编写。编辑:例如每个图库文件都是这样的:
---
layout: gallery
title: Gallery
group: dropnavigation
root: .\
pictures:
- url: http://placehold.it/260x180
label: Label 1
caption: Caption 1
- url: http://placehold.it/260x180
label: Label 2
caption: Caption 2
- url: http://placehold.it/260x180
label: Label 3
caption: Caption 3
---
,图库模板如下:
---
layout: core
---
{% include root %}
<div class="page-header">
<h1 class="well">{{ page.title }} <small>{{ site.tagline }}</small></h1>
</div>
<ul class="thumbnails">
{% for pic in page.pictures %}
<li class="span3">
<div class="thumbnail">
<a href="#"><img src="{{ pic.url }}" alt="image" /></a>
<h5>{{ pic.label }}</h5>
<p>{{ pic.caption }}</p>
</div>
</li>
{% endfor %}
</ul>
)