我正在使用修改后的 Bootstrap 主题(特别是这个主题)和 Jekyll 来完成一个网站的构建。这是我第一次使用 Jekyll,到目前为止一切都进展顺利,直到这让我很困惑。
就像我在上面链接的引导主题一样,我有一个投资组合部分,它打开了一个模式,我想在其中包含几张照片和一段文字。到目前为止,我已经让模态帖子的其他元素按照我想要的方式工作,但无法找到添加多个图像的方法。
这是我的投资组合模式的 html
{% for post in site.posts %}
<div class="portfolio-modal modal fade" id="portfolioModal-{{ post.modal-id }}" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>{{ post.title }}</h2>
<p class="item-intro text-muted"> {{ post.subheading }} </p>
<p>{{ post.description }}</p>
<img class="img-responsive" src="img/portfolio/{{ post.img }}">
<ul class="list-inline">
<li>Date: July 2014</li>
<li>Location: {{ post.location }} </li>
<li>Category: {{ post.category }} </li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endfor %}
这是我的模态帖子的首要问题
---
layout: post
modal-id: 1
title: Post title
date: 2017-01-06
location: Project location
img: img.jpg
category: Post category
alt: image-alt
description: Post description
---
所以,我不确定如何在每个帖子中添加多个图像。任何帮助深表感谢!