mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
20 lines
503 B
HTML
20 lines
503 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.webp" }}
|
|
|
|
<section>
|
|
<img src="{{ $faceImage.Permalink }}" alt="Hazem Krimi's face" loading="lazy">
|
|
{{ .Content }}
|
|
</section>
|
|
|
|
<h2>Contact</h2>
|
|
{{ partial "contact-form.html" . }}
|
|
{{ end }}
|