prepare photo credit site
@ -0,0 +1,11 @@
 | 
				
			|||||||
 | 
					---
 | 
				
			||||||
 | 
					title: "Photo Credit"
 | 
				
			||||||
 | 
					date: 2021-09-24T10:18:47+02:00
 | 
				
			||||||
 | 
					draft: true
 | 
				
			||||||
 | 
					heroHeading: 'Photo Credits'
 | 
				
			||||||
 | 
					heroSubHeading: 'SEUH 2022 HTW Berlin'
 | 
				
			||||||
 | 
					heroBackground: 'images/unsplash/claudio-schwarz-WKWcvKj1uko-unsplash.jpg'
 | 
				
			||||||
 | 
					layout: 'photocredit'
 | 
				
			||||||
 | 
					---
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Die meisten Fotos auf dieser Seite sind von unsplash:
 | 
				
			||||||
@ -0,0 +1,21 @@
 | 
				
			|||||||
 | 
					[
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        "link": "images/adam-vradenburg-TK5I5L5JGxY-unsplash.jpg",
 | 
				
			||||||
 | 
					        "preview": "adam-vradenburg-TK5I5L5JGxY-unsplash-preview.jpg",
 | 
				
			||||||
 | 
					        "url": "https://unsplash.com/photos/TK5I5L5JGxY",
 | 
				
			||||||
 | 
					        "credit": "Photo by <a href='https://unsplash.com/@vradenburg?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText'>Adam Vradenburg</a> on <a href='https://unsplash.com/s/photos/berlin?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText'>Unsplash</a>"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        "link": "images/unsplash/piero-nigro-tiXfq1WHBGU-unsplash.jpg",
 | 
				
			||||||
 | 
					        "preview": "images/unsplash/piero-nigro-tiXfq1WHBGU-unsplash-preview.jpg",
 | 
				
			||||||
 | 
					        "credit": "Photo by <a href='https://unsplash.com/@pieronigro?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText'>Piero Nigro</a> on <a href='https://unsplash.com/?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText'>Unsplash</a>"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        "link": "images/unsplash/claudio-schwarz-WKWcvKj1uko-unsplash.jpg",
 | 
				
			||||||
 | 
					        "preview": "images/unsplash/claudio-schwarz-WKWcvKj1uko-unsplash-preview.jpg",
 | 
				
			||||||
 | 
					        "url": "https://unsplash.com/photos/WKWcvKj1uko",
 | 
				
			||||||
 | 
					        "credit": "Photo by <a href='https://unsplash.com/@purzlbaum?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText'>Claudio Schwarz</a> on <a href='https://unsplash.com/?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText'>Unsplash</a>"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					]
 | 
				
			||||||
@ -0,0 +1,27 @@
 | 
				
			|||||||
 | 
					{{ define "header_css" }}{{ end }}
 | 
				
			||||||
 | 
					{{ define "body_classes" }}page-services-single{{ end }}
 | 
				
			||||||
 | 
					{{ define "header_classes" }}{{ end }}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					{{ define "main" }}
 | 
				
			||||||
 | 
					{{ partial "hero-image-setheight.html" (dict "background" .Params.heroBackground "heading" .Params.heroHeading "subheading" .Params.heroSubHeading "section" .Section "content" .)}}
 | 
				
			||||||
 | 
					<div class="container pt-4 pt-md-10 pb-4 pb-md-10">
 | 
				
			||||||
 | 
					  <div class="row justify-content-start">
 | 
				
			||||||
 | 
					    <div class="col-12 col-md-8">
 | 
				
			||||||
 | 
					      <div class="service service-single">
 | 
				
			||||||
 | 
					        <div class="content">{{.Content}}</div>
 | 
				
			||||||
 | 
					      </div>
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					  </div>
 | 
				
			||||||
 | 
					</div>
 | 
				
			||||||
 | 
					{{ end }}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					{{ define "footer_js" }}
 | 
				
			||||||
 | 
					{{ $library := resources.Get "js/libs/library.js" }}
 | 
				
			||||||
 | 
					{{ $services := resources.Get "js/pages/services.js" }}
 | 
				
			||||||
 | 
					{{ $servicesJS := slice $library $services |resources.Concat "js/services.js" }}
 | 
				
			||||||
 | 
					{{ if .Site.IsServer }}
 | 
				
			||||||
 | 
					  <script type="text/javascript" src="{{ $servicesJS.RelPermalink }}"></script>
 | 
				
			||||||
 | 
					  {{ else }}
 | 
				
			||||||
 | 
					  <script type="text/javascript" src="{{ ($servicesJS | minify | fingerprint).RelPermalink }}"></script>
 | 
				
			||||||
 | 
					  {{ end }}
 | 
				
			||||||
 | 
					{{ end }}
 | 
				
			||||||
| 
		 After Width: | Height: | Size: 85 KiB  | 
| 
		 Before Width: | Height: | Size: 588 KiB After Width: | Height: | Size: 588 KiB  | 
| 
		 After Width: | Height: | Size: 54 KiB  | 
| 
		 After Width: | Height: | Size: 384 KiB  | 
| 
		 After Width: | Height: | Size: 48 KiB  | 
| 
		 Before Width: | Height: | Size: 278 KiB After Width: | Height: | Size: 278 KiB  | 
@ -1 +1 @@
 | 
				
			|||||||
Subproject commit 35af6656876c75adc8f04bee5d434c842f3e583d
 | 
					Subproject commit 54f2e712462d15c6b6ef73f239cae974adf1c9ba
 | 
				
			||||||