1
0
Fork 0
schro.fi/layouts/index.html

38 lines
1.1 KiB
HTML
Raw Normal View History

2019-08-18 11:35:40 -04:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ partial "css.html" . }}
2019-08-18 13:27:03 -04:00
{{ partial "script.html" . }}
2019-08-18 11:35:40 -04:00
</head>
<body>
2019-08-18 13:53:03 -04:00
<div class="grid-container full">
2019-08-18 13:27:03 -04:00
<div class="grid-x">
<div class="cell">
<p id="website-title">Florian Schrofner</p>
</div>
</div>
2019-08-18 11:35:40 -04:00
2019-08-18 13:27:03 -04:00
<div class="grid-x align-center">
2019-08-18 13:53:03 -04:00
{{ $picture := resources.Get "images/me.png"}}
<img src="{{$picture.Permalink}}"/>
</div>
<div class="grid-x align-center beige-content-block">
<div class="cell large-6">
2019-08-18 13:27:03 -04:00
{{ with .Site.GetPage "/intro" }}
{{.Content}}
{{ end }}
</div>
</div>
2019-08-18 13:53:03 -04:00
<div class="grid-x align-center brown-content-block">
<div class="cell large-6">
2019-08-18 13:27:03 -04:00
{{ with .Site.GetPage "/section" }}
{{.Content}}
{{ end }}
</div>
</div>
</div>
2019-08-18 11:35:40 -04:00
</body>
</html>