Skip to content

Latest commit

 

History

History
69 lines (59 loc) · 1.76 KB

seminars.md

File metadata and controls

69 lines (59 loc) · 1.76 KB
layout title permalink
default
GPU Computing Seminars
/seminars/

This page provides a list of upcoming and previous seminars held by GPUComputing@Sheffield group. We aim to hold lunchtime seminars on the last Tuesday of every month, inviting speakers to talk about a wide range of topics that involves the application of GPUs in research and industry.

If you would like to recommend a speaker then please contact Dr Paul Richmond or Dr Mozhgan Kabiri Chimeh from the RSE Group.

{% if site.data.seminars.size > 0 %}

Upcoming Senimars

{% for sem in site.data.seminars %}
<article>
	<header>
		<h1><time>{{sem.date | date: "%d/%m/%Y"}}  {{sem.time}}</time> {{sem.title}}</h1>
		<div>Speaker: {{sem.speaker}}</div>
		<div>Location: {{sem.location}}</div>
	</header>
	<p>
	{{sem.description}}
	</p>
	{% if sem.notes %}
	<p class="notes">
	{{sem.notes}}
	</p>
	{% endif %}
	<p>
	<a class="btn btn-info btn-raised btn-sm griditem-link" href="{{sem.register_link}}">Register to attend the event</a>
	</p>
</article>
{% endfor %}
{% endif %}

{% if site.data.previous_seminars.size > 0 %}

Previous Seminars

{% for sem in site.data.previous_seminars %}

{{sem.date | date: "%d/%m/%Y"}} {{sem.time}} {{sem.title}}

Speaker: {{sem.speaker}}
Location: {{sem.location}}
{% if sem.image_link %}

{{sem.title}}

{% endif %}

{{sem.description}}

{% if sem.slide_link %} Presentation slides {% endif %}

{% endfor %}
{% endif %}