forked from SUPScientist/supscientist.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
25 lines (19 loc) · 888 Bytes
/
service.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: main
---
<p>Please see the <a href="../cv/#university-service">University Service subheader of the CV page</a> for more information on his service to UNCW and the broader science and engineering community; here are items which merit additional explanation.</p>
</br>
</br>
{% for post in site.categories.service %}
<article class="post">
{% if post.img %}
<a class="post-thumbnail" style="background-image: url({{"/assets/img/" | prepend: site.baseurl | append : post.img}})" href="{{post.url | prepend: site.baseurl}}"></a>
{% else %}
{% endif %}
<div class="post-content">
<h2 class="post-title"><a href="{{post.url | prepend: site.baseurl}}">{{post.title}}</a></h2>
<p>{{ post.content | strip_html | truncatewords: 15 }}</p>
<span class="post-date">{{post.date | date: '%d-%b-%Y'}}</span>
</div>
</article>
{% endfor %}