diff --git a/content/2021/saam-mobility/_index.md b/content/2021/saam-mobility/_index.md index bd13655b..1353c9ef 100644 --- a/content/2021/saam-mobility/_index.md +++ b/content/2021/saam-mobility/_index.md @@ -136,6 +136,25 @@ The Technical Program Committee is an independent panel of expert volunteers and {{}} +[//]: # (Register) +{{< grid/section-container class="featured-section-row" isMarkdown="false">}} + + {{< grid/div class="col-xs-24 col-sm-8 col-sm-offset-8 text-center" isMarkdown="false">}} + {{< bootstrap/button linkClass="btn-primary btn-wide" href="https://www.eventbrite.de">}}Register{{}} + {{}} + +{{}} + +[//]: # (Posters) +{{< grid/section-container id="posters" class="featured-section-row text-center featured-section-row-dark-bg" >}} + + {{< events/user_display event="saam-mobility" year="2021" title="Posters" source="posters" imageRoot="/2021/saam-mobility/images/posters/" subpage="posters" displayLearnMore="true" />}} +{{}} + [//]: # (Organizing Committee) {{< grid/section-container id="organizing-committee" class="featured-section-row featured-section-row-lighter-bg text-center" isMarkdown="true">}} diff --git a/content/2021/saam-mobility/images/posters/brain-iot.png b/content/2021/saam-mobility/images/posters/brain-iot.png new file mode 100644 index 00000000..bead4f64 Binary files /dev/null and b/content/2021/saam-mobility/images/posters/brain-iot.png differ diff --git a/content/2021/saam-mobility/images/posters/smartclide.png b/content/2021/saam-mobility/images/posters/smartclide.png new file mode 100644 index 00000000..a72eaec6 Binary files /dev/null and b/content/2021/saam-mobility/images/posters/smartclide.png differ diff --git a/content/2021/saam-mobility/posters.md b/content/2021/saam-mobility/posters.md new file mode 100644 index 00000000..ec6facdb --- /dev/null +++ b/content/2021/saam-mobility/posters.md @@ -0,0 +1,13 @@ +--- +title: "Speakers" +date: 2021-03-09T10:52:27-04:00 +description: "" +categories: [] +keywords: [] +slug: "" +aliases: [] +toc: false +draft: false +--- + +{{< research/poster_display event="saam-mobility" year="2021" source="posters" imgRoot="/2021/saam-mobility/images/posters/" >}} \ No newline at end of file diff --git a/data/en/2021/saam-mobility/posters.yml b/data/en/2021/saam-mobility/posters.yml new file mode 100644 index 00000000..749893ed --- /dev/null +++ b/data/en/2021/saam-mobility/posters.yml @@ -0,0 +1,43 @@ +items: + - name: "BRAIN-IoT" + #url: http://www.brain-iot.eu/?smd_process_download=1&download_id=938 + title: "Tagline or keywords" + img: brain-iot.png + anchor: brain-iot-1 + text: | +

Short description of the project with a link: brain-iot.eu

+ - name: "SmartCLIDE" + #url: https://smartclide.eu/wp-content/uploads/2021/03/poster_smartclide_color.pdf + title: "Tagline or keywords" + img: smartclide.png + anchor: smartclide-1 + text: | +

Short description of the project with a link: smartclide.eu

+ - name: "BRAIN-IoT-2" + url: http://www.brain-iot.eu/?smd_process_download=1&download_id=938 + title: "Tagline or keywords" + img: brain-iot.png + anchor: brain-iot-2 + text: | +

Short description of the project

+ - name: "SmartCLIDE-2" + url: https://smartclide.eu/wp-content/uploads/2021/03/poster_smartclide_color.pdf + title: "Tagline or keywords" + img: smartclide.png + anchor: smartclide-2 + text: | +

Short description of the project

+ - name: "BRAIN-IoT-3" + url: http://www.brain-iot.eu/?smd_process_download=1&download_id=938 + title: "Tagline or keywords" + img: brain-iot.png + anchor: brain-iot-3 + text: | +

Short description of the project

+ - name: "SmartCLIDE-3" + url: https://smartclide.eu/wp-content/uploads/2021/03/poster_smartclide_color.pdf + title: "Tagline or keywords" + img: smartclide.png + anchor: smartclide-3 + text: | +

Short description of the project

\ No newline at end of file diff --git a/data/en/2021/saam-mobility/speakers.yml b/data/en/2021/saam-mobility/speakers.yml index a69f477d..84b79128 100644 --- a/data/en/2021/saam-mobility/speakers.yml +++ b/data/en/2021/saam-mobility/speakers.yml @@ -1,7 +1,7 @@ items: - name: "Andreas Riexinger" - anchor: andreas_riexinger + anchor: andreas-riexinger title: "Mobility of the Future and Open Collaboration – A good Idea?" img: andreas_riexinger.jpeg bio: | @@ -13,7 +13,7 @@ items: Andreas Riexinger will give an overview about future mobility and the role of open source software.

- name: "Robert Hilbrich" - anchor: robert_hilbrich + anchor: robert-hilbrich title: "Keynote on Mobility in Research" img: Robert_Hilbrich.jpeg bio: | diff --git a/layouts/shortcodes/research/poster_display.html b/layouts/shortcodes/research/poster_display.html new file mode 100644 index 00000000..68ba35b0 --- /dev/null +++ b/layouts/shortcodes/research/poster_display.html @@ -0,0 +1,63 @@ + +{{ $lang := .Page.Lang}} +{{ $year := .Get "year" }} +{{ if $year }} + {{ .Scratch.Set "base" (index (index .Site.Data $lang) $year) }} +{{ else }} + {{ .Scratch.Set "base" (index .Site.Data $lang) }} +{{ end }} +{{ $base := .Scratch.Get "base" }} +{{ $event := .Get "event" | default "default" }} +{{ $source := .Get "source" | default "user" }} +{{ $imageRoot := .Get "imgRoot" | default "/images/committee/" }} +
+ + {{ range (index (index $base $event) $source).items }} + {{ $anchor := urlize .anchor }} + {{ if not $anchor }} + {{ $anchor = urlize .name }} + {{ end }} +
+
+ {{ if .img }} + {{ if .url }} + + {{ else }} + + {{ end }} + + + {{ else }} +
+
+
+
+ {{ end }} +
+
+

{{ .name }}

+ {{ .text | safeHTML }} + {{- if .twitter_handle }} +

+ +

+ {{ end -}} +
+
+ {{ end }} +