Files
personal-website/layouts/_default/about.html
T
2023-11-14 19:57:44 +01:00

20 lines
487 B
HTML

{{ define "styles" }}
{{ $styles := resources.Get "css/about.css" | toCSS | minify }}
<link rel="stylesheet" href="{{ $styles.Permalink }}" />
{{ end }}
{{ define "main" }}
{{ partial "breadcrumb.html" . }}
{{ $faceImage := resources.Get "images/big-face.png" }}
<section>
<img src="{{ $faceImage.Permalink }}" alt="Hazem Krimi's face">
{{ .Content }}
</section>
<h2>Contact</h2>
{{ partial "contact-form.html" . }}
{{ end }}