Skip to content

Commit 428b2c5

Browse files
Update events pages to past and upcoming
1 parent 8a4ede9 commit 428b2c5

4 files changed

Lines changed: 72 additions & 39 deletions

File tree

_config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ collections:
4646
resources:
4747
output: true
4848
sort_by: resource_number
49-
49+
events:
50+
output: true
51+
sort_by: event_number
5052
ui:
5153
mode: 'dark' # 'auto', 'dark', 'light'
5254
brand:

_events/past.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: page
3+
title: Past Events
4+
description:
5+
event_number: 2
6+
---
7+
8+
### 2025 Midwest ONT Sequencing Training
9+
10+
### 2024 Midwest AMD Symposium

_events/upcoming.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: page
3+
title: Upcoming Events
4+
description:
5+
event_number: 1
6+
---
7+
8+
### AMD Midwest Symposium 2025
9+
10+
##### WHO is this training for?
11+
12+
Public health bioinformaticians, epidemiologists, laboratorians, administrative personnel, and associated partners/collaborators affiliated with AMD activities. All levels of expertise are welcome!
13+
14+
##### WHAT is this training about?
15+
16+
Through a combination of educational presentations, group discussions, case studies, and interactive workshops, the 4th-annual Midwest AMD Symposium will explore the inner workings of genomics workflows in public health with the theme of “pulling back the curtain”.
17+
18+
##### WHEN is this training?
19+
20+
Tuesday, October 21-Wednesday, October 22, 2025
21+
22+
#### WHERE is this training?
23+
24+
MDHHS Bureau of Laboratories in Lansing, Michigan (in-person only)
25+
26+
##### WHY should I attend this training?
27+
28+
To learn about emerging AMD topics, become inspired with ideas to implement within your jurisdiction, and connect with experts and colleagues across the region and beyond!

_layouts/events.html

Lines changed: 31 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,34 @@
1-
---
2-
layout: default
3-
---
1+
<!DOCTYPE html>
2+
<html lang="en" class="no-js">
3+
<head>
4+
{% include head/full.html %}
5+
</head>
46

5-
<div class="container">
6-
<div class="row">
7-
<main class="col-md-9 layout-page__main">
8-
<section class="mobile-toc border mb-3 p-3 d-md-none">
9-
<div class="d-flex align-items-center">
10-
<h2 class="mb-0">Table of Contents</h2>
7+
{% assign scrollSpyOffset = page.scrollSpyOffset | default: layout.scrollSpyOffset | default: 0 %}
8+
<body
9+
class="layout-{{ page.layout }}"
10+
data-spy="scroll"
11+
data-target="#page-toc"
12+
data-offset="{{ scrollSpyOffset }}"
13+
>
14+
{% include navigation.html %}
15+
{% include masthead.html %}
1116

12-
<button
13-
class="js-only ml-2 toggle-toc"
14-
aria-controls="mobileTOC"
15-
aria-label="Toggle table of contents"
16-
aria-expanded="true"
17-
>
18-
<span aria-hidden="true" data-role="toggle">Hide</span>
19-
</button>
20-
</div>
17+
<div class="cards-wrapper">
18+
{% for event in site.events %}
19+
<div class="card-container">
20+
<a href="{{ event.url }}">
21+
<div class="card">
22+
<p class="heading">{{ event.title }}</p>
23+
<p class="para">{{ event.description }}</p>
24+
<div class="overlay"></div>
25+
<button class="card-btn">View</button>
26+
</div>
27+
</a>
28+
</div>
29+
{% endfor %}
30+
</div>
2131

22-
{% include jekyll-docs-theme/toc.html
23-
class="js-toc.mb-0.mt-2"
24-
id="mobileTOC"
25-
%}
26-
</section>
27-
28-
<section class="scope-markdown">
29-
{% include jekyll-docs-theme/anchor_headings.html %}
30-
</section>
31-
</main>
32-
33-
<aside class="col-md-3 layout-page__sidebar d-none d-md-block hidden-print">
34-
{% include sidebar/content-pre.html %}
35-
{% include sidebar/content.html %}
36-
{% include sidebar/content-pre.html %}
37-
</aside>
38-
</div>
39-
40-
{% include disqus.html %}
41-
</div>
32+
{% include footer/full.html %}
33+
</body>
34+
</html>

0 commit comments

Comments
 (0)