Skip to content

Commit 875ebe8

Browse files
committed
feat: workshops: Add snntorch tag and related events
1 parent 2901312 commit 875ebe8

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

content/workshops/hands-on-with-snntorch-jason-eshraghian/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ speaker_bio: "[Jason K. Eshraghian](https://jasoneshraghian.com) is an Assistant
1515
1616
Professor Eshraghian was awarded the 2019 IEEE VLSI Best Paper Award, the Best Paper Award at 2019 IEEE Artificial Intelligence CAS Conference, and the Best Live Demonstration Award at 2020 IEEE ICECS for his work on neuromorphic vision and in-memory computing using RRAM. He currently serves as the secretary-elect of the IEEE Neural Systems and Applications Committee, and was a recipient of the Fulbright Future Fellowship (Australian-America Fulbright Commission), the Forrest Research Fellowship (Forrest Research Foundation), and the Endeavour Fellowship (Australian Government)."
1717
speaker_notebook: https://github.com/open-neuromorphic/hands-on-session-snntorch-230302
18+
software_tags: ["snntorch"]
1819
---
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{{ $related_events := . }}
2+
3+
{{ if $related_events }}
4+
<div class="related-events-section mt-12 pt-8 pb-8">
5+
<h2 class="text-3xl font-bold mb-6">Related Content & Events</h2>
6+
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
7+
{{ range $related_events }}
8+
<div class="bg-theme-light dark:bg-darkmode-theme-light rounded-lg p-5 shadow-md hover:shadow-lg transition-shadow duration-300">
9+
<h4 class="text-lg font-semibold mb-2">
10+
<a href="{{ .RelPermalink }}" class="text-primary dark:text-darkmode-primary hover:underline">
11+
{{ .Title }}
12+
</a>
13+
</h4>
14+
<p class="text-sm text-gray-500 dark:text-gray-400 mb-3">
15+
<span class="capitalize">{{ .Type | default .Section | humanize }}</span> · {{ .Date.Format "January 2, 2006" }}
16+
</p>
17+
<p class="text-sm text-text dark:text-darkmode-text">{{ .Description | truncate 100 }}</p>
18+
</div>
19+
{{ end }}
20+
</div>
21+
</div>
22+
{{ end }}

0 commit comments

Comments
 (0)