init
This commit is contained in:
36
themes/hugo-agency-theme/layouts/404.html
Normal file
36
themes/hugo-agency-theme/layouts/404.html
Normal file
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
|
||||
|
||||
{{ partial "head.html" . }}
|
||||
|
||||
<body id="page-top" class="index">
|
||||
{{ partial "nav.html" . }}
|
||||
|
||||
{{ "<!-- 404 -->" | safeHTML }}
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="404">
|
||||
<div class="intro-text">
|
||||
<div class="intro-heading">Page not found</div>
|
||||
|
||||
{{ with .Site.Params.error404 }}
|
||||
<div class="intro-lead-in">{{ .heading | markdownify }}</div>
|
||||
|
||||
<div class="intro-lead-in">{{ .text | markdownify }}</div>
|
||||
{{ else }}
|
||||
<div class="intro-lead-in">Requested page could not be found.</div>
|
||||
<div class="intro-lead-in">You can always go back to our main <a href="{{ .Site.BaseURL }}">page</a>.</div>
|
||||
{{ end }}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{{ if .Site.Params.footer.enable }}
|
||||
{{ partial "footer.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ partial "js.html" . }}
|
||||
</body>
|
||||
</html>
|
||||
68
themes/hugo-agency-theme/layouts/index.html
Normal file
68
themes/hugo-agency-theme/layouts/index.html
Normal file
@@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}de-DE{{ end }}">
|
||||
|
||||
{{ partial "head.html" . }}
|
||||
|
||||
<body id="page-top" class="index">
|
||||
{{ partial "nav.html" . }}
|
||||
{{ partial "hero.html" . }}
|
||||
|
||||
{{ if .Site.Params.was.enable }}
|
||||
{{ partial "was.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.slam2019.enable }}
|
||||
{{ partial "slam2019.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.tickets.enable }}
|
||||
{{ partial "tickets.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.anfahrt.enable }}
|
||||
{{ partial "anfahrt.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.vorjahr.enable }}
|
||||
{{ partial "vorjahr.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{/*
|
||||
|
||||
{{ if .Site.Params.portfolio.enable }}
|
||||
{{ partial "portfolio.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.about.enable }}
|
||||
{{ partial "about.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.team.enable }}
|
||||
{{ partial "team.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.services.enable }}
|
||||
{{ partial "services.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.clients_list.enable }}
|
||||
{{ partial "clients.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.contact.enable }}
|
||||
{{ partial "contact.html" . }}
|
||||
{{ end }}
|
||||
|
||||
*/}}
|
||||
|
||||
{{ if .Site.Params.footer.enable }}
|
||||
{{ partial "footer.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.portfolio.enable }}
|
||||
{{ partial "modals.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ partial "js.html" . }}
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript" >
|
||||
var _paq = _paq || [];
|
||||
_paq.push(["setDocumentTitle", document.domain + "/" + document.title]);
|
||||
_paq.push(["setCookieDomain", "{{ .Site.Params.analytics.piwik.domain }}"]);
|
||||
_paq.push(["setDomains", ["{{ .Site.Params.analytics.piwik.domain }}"]]);
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="{{ .Site.Params.analytics.piwik.URL }}/";
|
||||
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
||||
_paq.push(['setSiteId', {{ .Site.Params.analytics.piwik.ID }}]);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; {{ if .Site.Params.analytics.piwik.hash }} g.integrity="{{ .Site.Params.analytics.piwik.hash }}"; g.crossorigin="anonymous";{{ end }} s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<noscript><p><img src="{{ .URL }}/piwik.php?idsite={{ .Site.Params.analytics.piwik.ID }}" style="border:0;" alt="" /></p></noscript>
|
||||
<!-- End Piwik Code -->
|
||||
41
themes/hugo-agency-theme/layouts/partials/about.html
Normal file
41
themes/hugo-agency-theme/layouts/partials/about.html
Normal file
@@ -0,0 +1,41 @@
|
||||
{{ "<!-- About Section -->" | safeHTML }}
|
||||
<section id="about">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2 class="section-heading">{{ with .Site.Params.about.title }}{{ . | markdownify }}{{ end }}</h2>
|
||||
<h3 class="section-subheading text-muted">{{ with .Site.Params.about.subtitle }}{{ . | markdownify }}{{ end }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<ul class="timeline">
|
||||
|
||||
{{ range $i, $e := .Site.Params.about.events }}
|
||||
<li {{ if (not (modBool $i 2)) }}class="timeline-inverted" {{ end }}>
|
||||
<div class="timeline-image">
|
||||
{{ $url := printf "img/about/%s" .img }}
|
||||
<img class="img-circle img-responsive" src="{{ $url | absURL }}" alt="">
|
||||
</div>
|
||||
<div class="timeline-panel">
|
||||
<div class="timeline-heading">
|
||||
<h4>{{ .date }}</h4>
|
||||
<h4 class="subheading">{{ .title | markdownify }}</h4>
|
||||
</div>
|
||||
<div class="timeline-body">
|
||||
<p class="text-muted">{{ .description | markdownify }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
<li class="timeline-inverted">
|
||||
<div class="timeline-image">
|
||||
<h4>{{ with .Site.Params.about.endpoint }}{{ . | markdownify }}{{ end }}</h4>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
37
themes/hugo-agency-theme/layouts/partials/anfahrt.html
Normal file
37
themes/hugo-agency-theme/layouts/partials/anfahrt.html
Normal file
@@ -0,0 +1,37 @@
|
||||
{{ "<!-- Services -->" | safeHTML }}
|
||||
<section id="anfahrt" class="bg-light-gray">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2 class="section-heading">{{ with .Site.Params.anfahrt.title }}{{ . }}{{ end }}</h2>
|
||||
<h3 class="section-subheading text-muted" style="margin-bottom: 35px;">{{ with .Site.Params.tickets.subtitle }}{{ . | markdownify }}{{ end }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" style="font-size: 1.3em;">
|
||||
<div class="col-sm-1 col-md-2"></div>
|
||||
<div class="col-sm-10 col-md-8">
|
||||
Der Weg ab den Bushaltestellen und ab dem Parkhaus ist am Abend mit Science-Slam Schildern ausgeschildert.
|
||||
<h3>Mit dem Bus</h3>
|
||||
<p style="font-size: inherit; margin-bottom: 0;">
|
||||
<strong>Linie C111</strong> zur Haltestelle <strong>Uni (AR) Robert-Schumann-Straße</strong>
|
||||
<p style="margin-left: 10px;">
|
||||
Von hier aus ist das Audimax schon ganz nah. Ab ca. 50 Meter oberhalb (durch die Schranke) der Bushaltestelle ist der Hörsaal großzügig ausgeschildert.
|
||||
</p>
|
||||
</p>
|
||||
<p style="font-size: inherit; margin-bottom: 0; margin-top: 25px;">
|
||||
<strong>Linien UX1, UX2, C106</strong> zur Haltestelle <strong>Uni (AR) Adolf-Reichwein-Straße</strong>
|
||||
<p style="margin-left: 10px;">
|
||||
Von der Bushaltestelle aus führt der Weg an der ehemaligen Haardter-Berg-Schule und der Mensa vorbei. Immer geradeaus findet sich der Eingang zu den Hörsälen.
|
||||
</p>
|
||||
</p>
|
||||
<h3 style="margin-top: 35px;">Mit dem Auto</h3>
|
||||
<strong>Navigationsgeräte:</strong> Adolf-Reichwein-Straße 17, 57076 Siegen
|
||||
<p style="margin-left: 10px;">
|
||||
In den Abendstunden wird das Parkhaus ausreichend Plätze bieten.<br />
|
||||
Ab dem Parkhaus findet sich in Richtung Universität die Bushaltestelle <strong>Uni (AR) Adolf-Reichwein-Straße</strong>. Von der Bushaltestelle aus führt der Weg an der ehemaligen Haardter-Berg-Schule und der Mensa vorbei. Immer geradeaus findet sich der Eingang zu den Hörsälen.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
26
themes/hugo-agency-theme/layouts/partials/clients.html
Normal file
26
themes/hugo-agency-theme/layouts/partials/clients.html
Normal file
@@ -0,0 +1,26 @@
|
||||
{{ "<!-- Clients Aside -->" | safeHTML }}
|
||||
<aside class="clients">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h4 class="heading">{{ with .Site.Params.clients_list.title }}{{ . | markdownify }}{{ end }}</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row flexbox{{ if .Site.Params.clients_list.center }} flexbox-center{{ end }}">
|
||||
|
||||
{{ range .Site.Params.clients }}
|
||||
<div class="col-md-3 col-sm-6 col">
|
||||
{{ $url := printf "img/logos/%s" .logo }}
|
||||
{{ if .link }}
|
||||
<a href="{{ .link }}">
|
||||
<img src="{{ $url | absURL }}" class="img-responsive img-centered" alt="">
|
||||
</a>
|
||||
{{ else }}
|
||||
<img src="{{ $url | absURL }}" class="img-responsive img-centered" alt="">
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
121
themes/hugo-agency-theme/layouts/partials/contact.html
Normal file
121
themes/hugo-agency-theme/layouts/partials/contact.html
Normal file
@@ -0,0 +1,121 @@
|
||||
{{ $contact := .Site.Params.contact }}
|
||||
{{ "<!-- Contact Section -->" | safeHTML }}
|
||||
|
||||
<section id="contact">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
|
||||
{{ with $contact.title }}
|
||||
<h2 class="section-heading">{{ . | markdownify }}</h2>
|
||||
{{ end }}
|
||||
|
||||
{{ with $contact.subtitle }}
|
||||
<h3 class="section-subheading text-muted">{{ . | markdownify }}</h3>
|
||||
{{ end }}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<form
|
||||
method="POST"
|
||||
name="sentMessage"
|
||||
id="contactForm
|
||||
{{- if $contact.netlify -}}
|
||||
" netlify
|
||||
{{- else -}}
|
||||
" action="{{- $contact.postURL | default (printf "//formspree.io/%s" (or $contact.email .Site.Params.email)) -}}"
|
||||
{{- end -}}>
|
||||
|
||||
<fieldset>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
|
||||
{{ with $contact.form.name }}
|
||||
<div class="form-group">
|
||||
<input class="form-control" id="name" required="required" type="text" name="name" placeholder="{{ with .text }}{{ . | markdownify }}{{ end }}" data-validation-error-msg="{{ with .warning }}{{ . | markdownify }}{{ end }}">
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
{{ with $contact.form.email }}
|
||||
<div class="form-group">
|
||||
<input class="form-control" id="email" required="required" type="email" name="email" placeholder="{{ with .text }}{{ . | markdownify }}{{ end }}" data-validation-error-msg="{{ with .warning }}{{ . | markdownify }}{{ end }}">
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
{{ with $contact.form.phone }}
|
||||
<div class="form-group">
|
||||
<input class="form-control" id="phone" required="required" type="number" name="phone" placeholder="{{ with .text }}{{ . | markdownify }}{{ end }}" data-validation-error-msg="{{ with .warning }}{{ . | markdownify }}{{ end }}"></textarea>
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
{{ with $contact.form.message }}
|
||||
<div class="form-group">
|
||||
<textarea class="form-control" id="message" required="required" name="message" placeholder="{{ with .text }}{{ . | markdownify }}{{ end }}" data-validation-error-msg="{{ with .warning }}{{ . | markdownify }}{{ end }}"></textarea>
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
<div class="col-lg-12 text-center">
|
||||
<div class="text-success" id="success" style="display:none;">
|
||||
{{ with $contact.thanks }}
|
||||
{{ . | markdownify }}
|
||||
{{ else }}
|
||||
Thank you for contacting us.
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="captcha-error text-danger" id="captcha-error">
|
||||
Message is not sendable due to captcha not loadable. Please contact us at {{ (or $contact.email .Site.Params.email) -}}.
|
||||
</div>
|
||||
<div class="text-danger" id="error" style="display:none;">
|
||||
{{ with $contact.error }}
|
||||
{{ . | markdownify }}
|
||||
{{ else }}
|
||||
Message could not be send. Please contact us at {{ (or $contact.email .Site.Params.email) }} instead.
|
||||
{{ end }}
|
||||
</div><br />
|
||||
{{ with $contact.captcha }}
|
||||
<div class="g-recaptcha-container">
|
||||
<span class="g-recaptcha-filler"></span>
|
||||
<button
|
||||
type="submit"
|
||||
value="Submit"
|
||||
class="g-recaptcha btn btn-xl"
|
||||
data-sitekey="{{ .sitekey }}"
|
||||
data-size="invisible"
|
||||
data-badge="inline"
|
||||
data-callback="onContactCaptcha">
|
||||
{{ print $contact.buttonText }}
|
||||
</button>
|
||||
<span class="filler"></span>
|
||||
</div>
|
||||
{{ else }}
|
||||
<button type="submit" value="Submit" class="btn btn-xl">
|
||||
{{ print $contact.buttonText }}
|
||||
</button>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
{{ range $contact.form.hidden }}
|
||||
{{ if eq .name "site" }}
|
||||
<input type="hidden" name="{{ .name }}" value="{{ $.Permalink }}"/>
|
||||
{{ else if eq .name "page" }}
|
||||
<input type="hidden" name="{{ .name }}" value="{{ $.URL }}"/>
|
||||
{{ else }}
|
||||
<input type="hidden" name="{{ .name }}" value="{{ .value }}"/>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
25
themes/hugo-agency-theme/layouts/partials/footer.html
Normal file
25
themes/hugo-agency-theme/layouts/partials/footer.html
Normal file
@@ -0,0 +1,25 @@
|
||||
{{ "<!-- Footer section -->" | safeHTML }}
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<span class="copyright">{{ with .Site.Params.footer.copyright }}{{ . | markdownify }}{{ end }}</span>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<ul class="list-inline social-buttons">
|
||||
{{ range .Site.Params.footer.social }}
|
||||
<li><a href="{{ .link }}" title="{{ .title }}" target="_blank"><i class="{{ .icon }}"></i></a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<ul class="list-inline quicklinks">
|
||||
{{ $baseUrl := .Site.BaseURL }}
|
||||
{{ range .Site.Params.footer.quicklinks }}
|
||||
<li><a href="{{ $baseUrl }}{{ .link }}" target="_blank">{{ .text | markdownify }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
63
themes/hugo-agency-theme/layouts/partials/head.html
Normal file
63
themes/hugo-agency-theme/layouts/partials/head.html
Normal file
@@ -0,0 +1,63 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
|
||||
{{ with .Site.Params.name }}<meta name="author" content="{{ . }}">{{ end }}
|
||||
{{ .Hugo.Generator }}
|
||||
<title>{{ .Title }}{{ if not .IsHome }} · {{ .Site.Title }}{{ end }}</title>
|
||||
{{ "<!-- Stylesheets -->" | safeHTML }}
|
||||
<link href="{{ "css/bootstrap-v3.3.7/bootstrap.min.css" | absURL }}" rel="stylesheet">
|
||||
<link href="{{ "css/agency.css" | absURL }}" rel="stylesheet">
|
||||
<link href="{{ "css/style.css" | absURL }}" rel="stylesheet">
|
||||
<link href="{{ "css/jquery.form-validator-v2.3.44/theme-default.min.css" | absURL }}" rel="stylesheet">
|
||||
<!--<link href="{{ "fontawesome/css/all.css" | absURL }}" rel="stylesheet">-->
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
|
||||
|
||||
|
||||
|
||||
|
||||
{{ range .Site.Params.custom_css }}
|
||||
<link rel="stylesheet" href="{{ . | absURL }}">
|
||||
{{ end }}
|
||||
|
||||
{{ "<!-- Custom Fonts -->" | safeHTML }}
|
||||
<!--<link href="{{ "font-awesome-v4.7.0/css/font-awesome.min.css" | absURL }}" rel="stylesheet" type="text/css">-->
|
||||
<!--<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">-->
|
||||
|
||||
|
||||
|
||||
{{ with not .Site.Params.disableFonts }}
|
||||
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script" rel="stylesheet" type="text/css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic" rel="stylesheet" type="text/css">
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css">
|
||||
{{ end }}
|
||||
|
||||
{{ with .Site.Params.favicon }}
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="apple-icon-57x57.png">
|
||||
<link rel="apple-touch-icon" sizes="60x60" href="apple-icon-60x60.png">
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="apple-icon-72x72.png">
|
||||
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon-76x76.png">
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="apple-icon-114x114.png">
|
||||
<link rel="apple-touch-icon" sizes="120x120" href="apple-icon-120x120.png">
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="apple-icon-144x144.png">
|
||||
<link rel="apple-touch-icon" sizes="152x152" href="apple-icon-152x152.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="apple-icon-180x180.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="android-icon-192x192.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
|
||||
<link rel="manifest" href="manifest.json">
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="msapplication-TileImage" content="ms-icon-144x144.png">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
{{ end }}
|
||||
|
||||
{{ "<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->" | safeHTML }}
|
||||
{{ "<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->" | safeHTML }}
|
||||
{{ "<!--[if lt IE 9]>" | safeHTML }}
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||
{{ "<![endif]-->" | safeHTML }}
|
||||
</head>
|
||||
22
themes/hugo-agency-theme/layouts/partials/hero.html
Normal file
22
themes/hugo-agency-theme/layouts/partials/hero.html
Normal file
@@ -0,0 +1,22 @@
|
||||
{{ "<!-- Hero -->" | safeHTML }}
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="intro-text">
|
||||
<div class="intro-heading-container">
|
||||
<div class="intro-heading">Science<br />Slam 2019</div>
|
||||
<div class="intro-heading-xs">24. Januar 2019</div>
|
||||
<div class="intro-heading-xs">
|
||||
<a class="page-scroll btn-sss" href="#tickets">Tickets sichern</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="hero-prof">
|
||||
<div>
|
||||
24. Januar 2019
|
||||
<p>
|
||||
<a class="page-scroll btn btn-sss" href="#tickets">Tickets<br />sichern</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
39
themes/hugo-agency-theme/layouts/partials/js.html
Normal file
39
themes/hugo-agency-theme/layouts/partials/js.html
Normal file
@@ -0,0 +1,39 @@
|
||||
{{ "<!-- jQuery -->" | safeHTML }}
|
||||
<script src="{{ "js/jquery-v3.3.1/jquery.min.js"| absURL }}"></script>
|
||||
|
||||
{{ "<!-- Bootstrap Core -->" | safeHTML }}
|
||||
<script src="{{ "js/bootstrap-v3.3.7/bootstrap.min.js"| absURL }}"></script>
|
||||
|
||||
{{ "<!-- Form Validation -->" | safeHTML }}
|
||||
<script src="{{ "js/jquery.form-validator-v2.3.44/jquery.form-validator.min.js"| absURL }}"></script>
|
||||
|
||||
{{ "<!-- Custom Theme -->" | safeHTML }}
|
||||
<script src="{{ "js/agency.js"| absURL }}"></script>
|
||||
|
||||
|
||||
|
||||
<!-- Matomo -->
|
||||
<script type="text/javascript">
|
||||
var _paq = _paq || [];
|
||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="//kiloflop.de/piwik/";
|
||||
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
||||
_paq.push(['setSiteId', '1']);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<noscript><p><img src="//kiloflop.de/piwik/piwik.php?idsite=1&rec=1" style="border:0;" alt="" /></p></noscript>
|
||||
<!-- End Matomo Code -->
|
||||
|
||||
|
||||
{{ if .Site.Params.contact.captcha }}
|
||||
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
||||
{{ end }}
|
||||
|
||||
{{ range .Site.Params.custom_js }}
|
||||
<script src="{{ . | absURL }}"></script>
|
||||
{{ end }}
|
||||
32
themes/hugo-agency-theme/layouts/partials/modals.html
Normal file
32
themes/hugo-agency-theme/layouts/partials/modals.html
Normal file
@@ -0,0 +1,32 @@
|
||||
{{ "<!-- Portfolio Modals -->" | safeHTML }}
|
||||
{{ range .Site.Data.projects }}
|
||||
<div class="portfolio-modal modal fade" id="portfolioModal{{ .modalID }}" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-content">
|
||||
<div class="close-modal" data-dismiss="modal">
|
||||
<div class="lr">
|
||||
<div class="rl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="modal-body">
|
||||
<h2>{{ .title | markdownify }}</h2>
|
||||
<p class="item-intro text-muted">{{ .subtitle | markdownify }}</p>
|
||||
{{ $url := printf "img/portfolio/%s" .img }}
|
||||
<img class="img-responsive img-centered" src="{{ $url | absURL }}" alt="">
|
||||
<p>{{ .description | markdownify }}</p>
|
||||
<ul class="list-inline">
|
||||
<li>{{ with $.Site.Params.portfolio.modal.date }}{{ . }}{{ end }}: {{ .date }}</li>
|
||||
<li>{{ with $.Site.Params.portfolio.modal.client }}{{ . | markdownify }}{{ end }}: <a href="{{ .clientLink }}">{{ .client }}</a></li>
|
||||
<li>{{ with $.Site.Params.portfolio.modal.category }}{{ . }}{{ end }}: {{ .category | markdownify }}</li>
|
||||
</ul>
|
||||
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> {{ with $.Site.Params.portfolio.modal.buttonText }}{{ . }}{{ end }}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
80
themes/hugo-agency-theme/layouts/partials/nav.html
Normal file
80
themes/hugo-agency-theme/layouts/partials/nav.html
Normal file
@@ -0,0 +1,80 @@
|
||||
{{ "<!-- Navigation -->" | safeHTML }}
|
||||
<nav class="navbar navbar-default navbar-fixed-top">
|
||||
<div class="container">
|
||||
|
||||
{{ "<!-- Brand and toggle get grouped for better mobile display -->" | safeHTML }}
|
||||
<div class="navbar-header page-scroll">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand page-scroll" href="{{ if .IsHome }}/#page-top{{ else }}{{ .Site.BaseURL }}{{ end }}">
|
||||
{{ if .Site.Params.navigation.logo }}
|
||||
{{ $url := printf "img/%s" .Site.Params.navigation.logo }}
|
||||
<img src="{{ $url | absURL }}" class="img-responsive" alt="{{ .Site.Params.navigation.brand }}">
|
||||
{{ end }}
|
||||
</a>
|
||||
|
||||
{{ if .Site.Params.navigation.logo }}
|
||||
<a class="navbar-brand page-scroll" href="{{ if .IsHome }}/#page-top{{ else }}{{ .Site.BaseURL }}{{ end }}">
|
||||
{{ .Site.Params.navigation.brand }}
|
||||
</a>
|
||||
{{ end }}
|
||||
|
||||
</div>
|
||||
{{ "<!-- Collect the nav links, forms, and other content for toggling -->" | safeHTML }}
|
||||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li class="hidden">
|
||||
<a href="{{ if .IsHome }}/#page-top{{ else }}{{ .Site.BaseURL }}{{ end }}"></a>
|
||||
</li>
|
||||
|
||||
{{ range .Site.Menus.prepend }}
|
||||
<li>
|
||||
<a href="{{ .URL }}">{{ .Name | markdownify }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.was.enable }}
|
||||
<li>
|
||||
<a class="page-scroll" href="{{ .Site.BaseURL }}#was">{{ with .Site.Params.navigation.was }}{{ . }}{{ end }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.slam2019.enable }}
|
||||
<li>
|
||||
<a class="page-scroll" href="{{ .Site.BaseURL }}#slam2019">{{ with .Site.Params.navigation.slam2019 }}{{ . }}{{ end }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.tickets.enable }}
|
||||
<li>
|
||||
<a class="page-scroll" href="{{ .Site.BaseURL }}#tickets">{{ with .Site.Params.navigation.tickets }}{{ . }}{{ end }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.anfahrt.enable }}
|
||||
<li>
|
||||
<a class="page-scroll" href="{{ .Site.BaseURL }}#anfahrt">{{ with .Site.Params.navigation.anfahrt }}{{ . }}{{ end }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.vorjahr.enable }}
|
||||
<li>
|
||||
<a class="page-scroll" href="{{ .Site.BaseURL }}#vorjahr">{{ with .Site.Params.navigation.vorjahr }}{{ . }}{{ end }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
|
||||
{{ range .Site.Menus.postpend }}
|
||||
<li>
|
||||
<a href="{{ .URL }}">{{ .Name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
{{ "<!-- /.navbar-collapse -->" | safeHTML }}
|
||||
</div>
|
||||
{{ "<!-- /.container-fluid -->" | safeHTML }}
|
||||
</nav>
|
||||
32
themes/hugo-agency-theme/layouts/partials/portfolio.html
Normal file
32
themes/hugo-agency-theme/layouts/partials/portfolio.html
Normal file
@@ -0,0 +1,32 @@
|
||||
{{ "<!-- Portfolio Grid Section -->" | safeHTML }}
|
||||
<section id="portfolio" class="bg-light-gray">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2 class="section-heading">{{ with .Site.Params.portfolio.title }}{{ . | markdownify }}{{ end }}</h2>
|
||||
<h3 class="section-subheading text-muted">{{ with .Site.Params.portfolio.subtitle }}{{ . | markdownify }}{{ end }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
||||
{{ range .Site.Data.projects }}
|
||||
<div class="col-md-4 col-sm-6 portfolio-item">
|
||||
<a href="#portfolioModal{{ .modalID }}" class="portfolio-link" data-toggle="modal">
|
||||
<div class="portfolio-hover">
|
||||
<div class="portfolio-hover-content">
|
||||
<i class="fa fa-plus fa-3x"></i>
|
||||
</div>
|
||||
</div>
|
||||
{{ $url := printf "img/portfolio/%s" .preview }}
|
||||
<img src="{{ $url | absURL }}" class="img-responsive" alt="">
|
||||
</a>
|
||||
<div class="portfolio-caption">
|
||||
<h4>{{ .title | markdownify }}</h4>
|
||||
<p class="text-muted">{{ .category | markdownify }}</p>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
25
themes/hugo-agency-theme/layouts/partials/services.html
Normal file
25
themes/hugo-agency-theme/layouts/partials/services.html
Normal file
@@ -0,0 +1,25 @@
|
||||
{{ "<!-- Services -->" | safeHTML }}
|
||||
<section id="services">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2 class="section-heading">{{ with .Site.Params.services.title }}{{ . }}{{ end }}</h2>
|
||||
<h3 class="section-subheading text-muted">{{ with .Site.Params.services.subtitle }}{{ . | markdownify }}{{ end }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
{{ range .Site.Params.services.row }}
|
||||
<div class="row text-center">
|
||||
{{ range .list }}
|
||||
<div class="col-md-4">
|
||||
<span class="fa-stack fa-4x">
|
||||
<i class="fa fa-circle fa-stack-2x text-primary"></i>
|
||||
<i class="fa {{ .icon }} fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
<h4 class="service-heading">{{ if .url }}<a href="{{ .url | absURL }}">{{ .title | markdownify }}</a>{{ else }}{{ .title | markdownify }}{{ end }}</h4>
|
||||
<p class="text-muted">{{ .description | markdownify }}</p>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
55
themes/hugo-agency-theme/layouts/partials/slam2019.html
Normal file
55
themes/hugo-agency-theme/layouts/partials/slam2019.html
Normal file
@@ -0,0 +1,55 @@
|
||||
{{ "<!-- Services -->" | safeHTML }}
|
||||
<section id="slam2019" class="bg-light-gray">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2 class="section-heading">{{ with .Site.Params.slam2019.title }}{{ . }}{{ end }}</h2>
|
||||
<h3 class="section-subheading text-muted" style="margin-bottom: 35px;">{{ with .Site.Params.slam2019.subtitle }}{{ . | markdownify }}{{ end }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" style="font-size: 1.3em;">
|
||||
<div class="col-sm-6">
|
||||
<p style="font-size: inherit;">
|
||||
Der Science Slam 2019 wird im größten Hörsaal der Uni stattfinden.<br />
|
||||
Wir laden alle ein, ob groß ob klein, ob jung ob alt, ob dick ob dünn, sich von der Wissenschaft begeistern zu lassen.
|
||||
</p>
|
||||
<p style="font-size: inherit;">
|
||||
<strong>24. Januar, 2019</strong> ab <strong>19:30 Uhr</strong><br />
|
||||
Einlass ab <strong>19:00 Uhr</strong>
|
||||
</p>
|
||||
<div class="row" style="margin-bottom: 40px; margin-top: 40px;">
|
||||
<div class="col-xs-6 text-center">
|
||||
<a href="#anfahrt" class="">
|
||||
<span class="fa-stack fa-2x">
|
||||
<i class="fa fa-circle fa-stack-2x text-primary"></i>
|
||||
<i class="fas fa-map-marked-alt fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
<div style="margin-top: 10px; text-transform: uppercase; font-weight: 700; font-family: Montserrat,'Helvetica Neue',Helvetica,Arial,sans-serif; text-decoration: none;">
|
||||
Anfahrt
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-xs-6 text-center">
|
||||
<a href="#tickets" class="">
|
||||
<span class="fa-stack fa-2x">
|
||||
<i class="fa fa-circle fa-stack-2x text-primary"></i>
|
||||
<i class="fas fa-ticket-alt fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
<div style="margin-top: 10px; text-transform: uppercase; font-weight: 700; font-family: Montserrat,'Helvetica Neue',Helvetica,Arial,sans-serif; text-decoration: none;">
|
||||
Tickets
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<p style="font-size: inherit;">
|
||||
<strong>Audimax</strong> der <strong>Universität Siegen</strong>
|
||||
</p>
|
||||
<p style="text-align: center;">
|
||||
<img src="img/audimax.png" alt="Audimax, Uni Siegen" style="width: 100%; max-width: 500px;" />
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
57
themes/hugo-agency-theme/layouts/partials/team.html
Normal file
57
themes/hugo-agency-theme/layouts/partials/team.html
Normal file
@@ -0,0 +1,57 @@
|
||||
{{ "<!-- Team Section -->" | safeHTML }}
|
||||
<section id="team" class="bg-light-gray">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2 class="section-heading">{{ with .Site.Params.team.title }}{{ . | markdownify }}{{ end }}</h2>
|
||||
<h3 class="section-subheading text-mutedwith ">{{ with .Site.Params.team.subtitle }}{{ . | markdownify }}{{ end }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row flexbox{{ if .Site.Params.team.center }} flexbox-center{{ end }}">
|
||||
{{ range .Site.Params.team.members }}
|
||||
<div class="col-sm-4 col">
|
||||
<div class="team-member">
|
||||
{{ $url := printf "img/team/%s" .img }}
|
||||
<img src="{{ $url | absURL }}" class="img-responsive img-circle" alt="{{ .name }}">
|
||||
<h3>{{ .name | markdownify }}</h3>
|
||||
|
||||
{{ with .position }}
|
||||
<h4>{{ . | markdownify }}</h4>
|
||||
{{ end }}
|
||||
{{ with .reportsTo }}
|
||||
<h5 class="report">Reports to {{ . | markdownify }}</h5>
|
||||
{{ end }}
|
||||
|
||||
{{ with .livesIn }}
|
||||
<h5>Lives in {{ . | markdownify }}</h5>
|
||||
{{ end }}
|
||||
|
||||
{{ with .scope }}
|
||||
<ul>
|
||||
{{ range . }}
|
||||
<li>{{ . | markdownify }}</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
|
||||
<ul class="list-inline social-buttons">
|
||||
{{ range .social }}
|
||||
<li><a href="{{ index . 1 }}"><i class="fa {{ index . 0 }}"></i></a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
{{ with .bio }}
|
||||
<p class="team-bio">{{ . | markdownify }}</p>
|
||||
{{ end }}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2 text-center">
|
||||
<p class="large text-muted">{{ with .Site.Params.team.description }}{{ . | markdownify }}{{ end }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
69
themes/hugo-agency-theme/layouts/partials/tickets.html
Normal file
69
themes/hugo-agency-theme/layouts/partials/tickets.html
Normal file
@@ -0,0 +1,69 @@
|
||||
{{ "<!-- Services -->" | safeHTML }}
|
||||
<section id="tickets">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2 class="section-heading">{{ with .Site.Params.tickets.title }}{{ . }}{{ end }}</h2>
|
||||
<h3 class="section-subheading text-muted" style="margin-bottom: 35px;">{{ with .Site.Params.tickets.subtitle }}{{ . | markdownify }}{{ end }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" style="font-size: 1.3em;">
|
||||
<div class="col-sm-2 col-md-3"></div>
|
||||
<div class="col-sm-8 col-md-6">
|
||||
<!--<h3>Online</h2>
|
||||
<p style="font-size: inherit;">
|
||||
Online-Tickets gibt es hier: <a href="https://shop.ticketpay.de/50ZKDIT9" target="_blank">Online-Tickets</a>
|
||||
</p>
|
||||
<p style="margin-top: 30px;"></p>-->
|
||||
<h3>Vorverkauf</h2>
|
||||
<p style="font-size: inherit;">
|
||||
Die Tickets kosten 4,00 Euro (ggf. plus einer kleinen Gebühr, welche manche Vorverkaufsstellen erheben) sind hier erhältlich:
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h4>Online-Tickets</h4>
|
||||
<a href="https://shop.ticketpay.de/VOE4SOV1" target="_blank">Hier geht's zu den Online-Tickets</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h4>EuroTicketStore</h4>
|
||||
Siegerlandzentrum Weidenau<br />
|
||||
Mo - Fr: 9:00 Uhr bis 18:00 Uhr<br />
|
||||
Sa: 9:30 Uhr bis 16:00 Uhr<br />
|
||||
<a href="http://euroticketstore.de/" target="_blank">www.euroticketstore.de</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h4>AStA-Shop</h4>
|
||||
Campus Haardter-Berg Schule<br />
|
||||
Universität Siegen<br />
|
||||
Hölderlinstraße 35, 57076 Siegen<br />
|
||||
Mo - Fr: 9:30 Uhr bis 15:00 Uhr
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h4>FSR Elektrotechnik & Informatik</h4>
|
||||
Campus Hölderlinstraße<br />
|
||||
Universität Siegen<br />
|
||||
Hölderlinstraße 3, 57076 Siegen
|
||||
</div>
|
||||
</div>
|
||||
</p>
|
||||
<p style="margin-top: 30px;"></p>
|
||||
<h3>Abendkasse</h2>
|
||||
<p style="font-size: inherit;">
|
||||
Tickets gibt es selbstverständlich an der Abendkasse
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
18
themes/hugo-agency-theme/layouts/partials/vorjahr.html
Normal file
18
themes/hugo-agency-theme/layouts/partials/vorjahr.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{{ "<!-- Services -->" | safeHTML }}
|
||||
<section id="vorjahr">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2 class="section-heading">{{ with .Site.Params.vorjahr.title }}{{ . }}{{ end }}</h2>
|
||||
<h3 class="section-subheading text-muted" style="margin-bottom: 35px;">{{ with .Site.Params.tickets.subtitle }}{{ . | markdownify }}{{ end }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row text-center" style="font-size: 1.3em;">
|
||||
<h2>Science Slam 2017<br /><small>12. Dezember 2017</small></h2>
|
||||
<p>
|
||||
<iframe style="width: 560px; height: 315px; max-width: 100%;" src="https://www.youtube.com/embed/videoseries?list=PLlGpcNaytT57Ovyk-zen2W-by59eR1Zo4" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
31
themes/hugo-agency-theme/layouts/partials/was.html
Normal file
31
themes/hugo-agency-theme/layouts/partials/was.html
Normal file
@@ -0,0 +1,31 @@
|
||||
{{ "<!-- Services -->" | safeHTML }}
|
||||
<section id="was">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2 class="section-heading">{{ with .Site.Params.was.title }}{{ . }}{{ end }}</h2>
|
||||
<h3 class="section-subheading text-muted" style="margin-bottom: 35px;">{{ with .Site.Params.was.subtitle }}{{ . | markdownify }}{{ end }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" style="font-size: 1.3em;">
|
||||
<div class="col-sm-2 col-md-3"></div>
|
||||
<div class="col-sm-8 col-md-6">
|
||||
<p style="font-size: inherit; margin-bottom: 30px;">
|
||||
<small style="color: #868686;">Kurz:</small><br />
|
||||
Wissenschaft in 10 Minuten, verpackt in spannende Vortrags-Battles.
|
||||
</p>
|
||||
<p style="font-size: inherit;">
|
||||
<small style="color: #868686;">Lang:</small><br />
|
||||
Ein Science-Slam ist ein wissenschaftliches Kurzvortragsturnier, bei dem Wissenschaftler ihre Forschungsthemen innerhalb einer vorgegebenen Zeit vor Publikum präsentieren. Im Vordergrund steht die Vermittlung wissenschaftlicher Inhalte auf einer verständlichen Basis; die Bewertung erfolgt durch das Publikum. Bewertet werden neben dem wissenschaftlichen Inhalt auch die Verständlichkeit und der Unterhaltungswert des Vortrags.
|
||||
</p>
|
||||
<p style="font-size: inherit;">
|
||||
Der Erfolg eines Science-Slam-Vortrags kann an zwei Punkten gemessen werden:
|
||||
<ol>
|
||||
<li>Die Inhalte sind dem Publikum vollauf verständlich.</li>
|
||||
<li>Der Vortragende fesselt auf unterhaltsame Weise das Publikum.</li>
|
||||
</ol>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
Reference in New Issue
Block a user