forked from MiniZinc/minizinc.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpub.html
22 lines (22 loc) · 903 Bytes
/
pub.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="list-group">
{% for p in include.pubs %}
<li class="list-group-item">
<span class="pubAuthors">{{ p.authors }}.</span>
<span class="pubTitle">{{ p.title }}.</span>
<span class="pubVenue">{{ p.venue }},</span>
<span class="pubYear">{{ p.year }}.</span>
{% assign strippedContent = p.content | strip | strip_newlines %}
{% if strippedContent != "" %}
<a data-toggle="collapse" data-parent="#accordion" href="#collapse{{ p.category }}{{ forloop.index }}">more...</a>
<div id="collapse{{ p.category }}{{ forloop.index }}" class="collapse">
<div class="well well-sm noMargin">
{{ p.content }}
</div>
</div>
{% endif %}
{% if p.pdflink %}
<br /><a href="{{ p.pdflink }}">PDF</a>
{% endif %}
</li>
{% endfor %}
</div>