Skip to content

Commit 9473df9

Browse files
committed
adding new videos
1 parent caafe2d commit 9473df9

File tree

3 files changed

+48
-10
lines changed

3 files changed

+48
-10
lines changed

src/lib/components/Publication.svelte

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,10 @@
7171
<!--<Cite {citeText} />-->
7272
<i>{SOURCE}, {PLACE}, {DATE}</i>
7373
<div class="abstract preview">{@html ABSTRACT}</div>
74+
<b>{TYPE}</b>
75+
{#if URL != ''}
76+
: <a href={URL} target="blank">{NAME}</a>
77+
{/if}
7478
</div>
7579
{/if}
7680

src/lib/components/TechTalk.svelte

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44
export let slides;
55
</script>
66

7+
<div class="w-100">
78
<h3>{title}</h3>
89

9-
<iframe
10-
src={url}
11-
title="YouTube video player"
12-
frameborder="0"
13-
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
14-
allowfullscreen
15-
/>
10+
11+
<iframe src={url} title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
12+
13+
{#if slides}
1614

1715
<p>Slides of this talk are available on <a href={slides}>SlideShare</a></p>
16+
17+
{/if}
18+
19+
</div>

src/routes/resources/techtalks/+page.svelte

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,50 @@
11
<script>
22
import { Row, Col } from 'sveltestrap';
33
import TechTalk from '$lib/components/TechTalk.svelte';
4+
45
</script>
56

67
<svelte:head>
78
<title>BEXIS2 Tech Talk Series</title>
89
</svelte:head>
910

1011
<div class="content">
11-
<h2>BEXIS2 Tech Talk Series</h2>
12+
<h2>Get Started with BEXIS2</h2>
13+
14+
<p>Our introductory videos offer a quick and easy way to get started with the software.</p>
15+
16+
<Row>
17+
<Col>
18+
<TechTalk
19+
title="BEXIS2 - Eine kostenlose, quelloffene Software unterstützt Forschende bei der Datenverwaltung"
20+
url="https://www.youtube.com/embed/tyqpHj5AGKY?si=9Ile0fIRN_2VlfKq"
21+
/>
22+
</Col>
23+
<Col>
24+
<TechTalk
25+
title="Bridging Data and People: BEXIS2 Through Two Lenses"
26+
url="https://www.youtube.com/embed/iYxLBBrwduk?si=H9VS7r5i2N0Smz0u"
27+
/>
28+
</Col>
29+
<!-- <Col>
30+
<TechTalk
31+
title="BEXIS2 - Funktionale Übersicht und Demo. 06.09.2024"
32+
url="https://www.youtube.com/embed/_tVMBIAekGw?si=5BQov5Td3F5BRlEg"
33+
/>
34+
</Col> -->
35+
<!-- <Col>
36+
<TechTalk
37+
title="BEXIS2 - Forschungsdatenmanagement in Verbundprojekten"
38+
url="https://www.youtube.com/embed/TtLm_1mf3LU?si=uS_dBWsoiLOhqIAN"
39+
/>
40+
</Col> -->
41+
42+
</Row>
43+
44+
<h2>Deep Dives for Experts</h2>
1245

1346
<p>
14-
The idea of this series of talks is to gather the knowledge needed to develop the BEXIS2 data
15-
management platform. So the talks are geared towards software engineers and developers.
47+
The videos about the BEXIS2 architecture are a bit older, but they still provide a great technical overview of the software.
1648
</p>
1749
<p>The talks are available from the Digital Library Thuringia and on Youtube:</p>
1850

0 commit comments

Comments
 (0)