mirror of
https://github.com/michivonah/website-v3.git
synced 2025-12-22 21:36:28 +01:00
13 lines
No EOL
401 B
HTML
13 lines
No EOL
401 B
HTML
<div id="about" class="about">
|
|
{{ with .Site.GetPage "about" }}
|
|
<div class="about-part fade-left">
|
|
{{ with .Params.image }}
|
|
<img src='{{ . | relURL }}' alt="{{ $.Params.title }}" title="{{ $.Params.title }}">
|
|
{{ end }}
|
|
</div>
|
|
<div class="about-part fade-right">
|
|
<h1>{{ .Title }}</h1>
|
|
<div>{{ .Content }}</div>
|
|
</div>
|
|
{{ end }}
|
|
</div> |