Merge pull request #10 from Hacking-in-Parallel-Berlin-22/tobias/schedule
add pretalx schedule widget
This commit is contained in:
commit
843a14287e
|
@ -15,6 +15,7 @@ const permaTitle = 'Hacking in Parallel 2022 //// Berlin'
|
|||
<meta name='viewport' content='width=device-width' />
|
||||
<link rel='icon' type='image/svg+xml' href='/favicon.svg' />
|
||||
<title>{`${title ? title + ' / ' : ''}${permaTitle}`}</title>
|
||||
<script type="text/javascript" src="https://pretalx.c3voc.de/hip-berlin-2022/schedule/widget/v2.en.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header class='site-header'>
|
||||
|
@ -30,7 +31,7 @@ const permaTitle = 'Hacking in Parallel 2022 //// Berlin'
|
|||
</li>
|
||||
<li>
|
||||
<a
|
||||
href='https://pretalx.c3voc.de/hip-berlin-2022/schedule/'
|
||||
href='/schedule/'
|
||||
target='_blank'
|
||||
rel='noopener,noreferrer'>Schedule</a
|
||||
>
|
||||
|
|
26
src/pages/schedule/index.astro
Normal file
26
src/pages/schedule/index.astro
Normal file
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
import Layout from '../../layouts/Layout.astro'
|
||||
---
|
||||
|
||||
<Layout title='schedule'>
|
||||
<main>
|
||||
<article>
|
||||
<header>
|
||||
<h1>Schedule</h1>
|
||||
|
||||
This is our event schedule. You can download it, as well as find more information <a href="https://pretalx.c3voc.de/hip-berlin-2022/schedule/">here</a>.
|
||||
</header>
|
||||
<main>
|
||||
<pretalx-schedule event-url="https://pretalx.c3voc.de/hip-berlin-2022/" locale="en" format="list" style="--pretalx-clr-primary: #363336"></pretalx-schedule>
|
||||
<noscript>
|
||||
<div class="pretalx-widget">
|
||||
<div class="pretalx-widget-info-message">
|
||||
JavaScript is disabled in your browser. To access our schedule without JavaScript,
|
||||
please <a target="_blank" href="https://pretalx.c3voc.de/hip-berlin-2022/schedule/">click here</a>.
|
||||
</div>
|
||||
</div>
|
||||
</noscript>
|
||||
</main>
|
||||
</article>
|
||||
</main>
|
||||
</Layout>
|
Loading…
Reference in a new issue