We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8938ec4 commit a93f492Copy full SHA for a93f492
_includes/list_project_presentations.html
@@ -1,12 +1,13 @@
1
{% assign pres_list = site.data['sorted_presentations'] | where_exp: "pres", "pres.project contains include.shortname" %}
2
3
{% if pres_list.size > 0 %}
4
-<h3>Presentations</h3>
5
-<ul>
6
-{% for talk in pres_list %}
7
- <li>
8
- {%- include print_pres.html talk=talk -%}
9
- </li>
10
-{% endfor %}
11
-</ul>
+<section class="">
+ <div class="container-lg p-responsive py-5 py-md-6 ">
+ <h3 id="presentations" class="alt-h2 text-center mb-3 mt-lg-6" id="pres">Presentations</h3>
+ {% expandable pres_list 5 %}
+ {% include print_pres.html talk=expandable %}
+ {% endexpandable %}
+</div>
+</section>
12
{% endif %}
13
+
0 commit comments