17 lines
361 B
HTML
17 lines
361 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Site.LanguageCode }}">
|
||
|
<head>
|
||
|
{{ partial "css.html" . }}
|
||
|
</head>
|
||
|
<body>
|
||
|
<p id="website-title">Florian Schrofner</p>
|
||
|
{{ with .Site.GetPage "/intro" }}
|
||
|
{{.Content}}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ with .Site.GetPage "/section" }}
|
||
|
{{.Content}}
|
||
|
{{ end }}
|
||
|
</body>
|
||
|
</html>
|