-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpage_stories.html
More file actions
50 lines (47 loc) · 1.96 KB
/
page_stories.html
File metadata and controls
50 lines (47 loc) · 1.96 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
layout: page
title: Stories
permalink: /stories
---
<div class="container text-center" data-aos="fade-up" style="padding: 4em 0; margin-bottom: 0;">
<h4><strong style="color: #db8e1b">Expert Perspectives</strong> on Workflow Innovation</h4>
<p>Discover diverse viewpoints and thought leadership from research pioneers exploring the evolving landscape of
workflow technologies, methodologies, and applications.</p>
</div>
<section id="recent-posts" class="recent-posts sections-bg">
<div class="container" data-aos="fade-up">
<div class="row gy-4">
{% assign count = 1 %}
{% assign stories = site.stories | sort: 'date' | reverse %}
{% for s in stories %}
{% assign img_class = '' %}
{% assign remainder = count | modulo: 2 %}
{% if remainder == 0 %}
{% assign img_class = 'image-2 order-2' %}
{% endif %}
<div class="col-lg-4">
<article>
<div class="post-img">
<img src="{{s.image}}" alt="" class="img-fluid">
</div>
<p class="post-category">{{s.date | date: "%b %d, %Y" }}</p>
<h2 class="title">
<a href="{{s.url}}">{{s.title}}</a>
</h2>
<div class="d-flex align-items-center">
<div class="post-meta">
<p class="post-author">{{r.subtitle}}</p>
<p class="post-date">
{% for author in s.authors %}
{{author.name}} ({{author.institution}})<br />
{% endfor %}
</p>
</div>
</div>
</article>
</div>
{% assign count = count | plus: 1 %}
{% endfor %}
</div>
</div>
</section>