hugo-theme-almeida/layouts/partials/_profile.html

11 lines
264 B
HTML
Raw Normal View History

2021-07-28 16:24:15 +00:00
{{ if .Profile }}
2020-08-16 12:21:35 +00:00
<div id="profile" class="section">
<div class="section__heading">
2021-01-15 20:50:30 +00:00
<h2 class="section__title">{{ i18n "profile" }}</h2>
2020-08-16 12:21:35 +00:00
</div>
<div class="section__content">
2021-07-28 16:24:15 +00:00
<p>{{ .Profile | safeHTML }}</p>
2020-08-16 12:21:35 +00:00
</div>
2020-08-16 19:49:25 +00:00
</div>
2020-08-29 11:16:29 +00:00
{{ end }}