41
{{ define "index" }}
<html lang="en">
{{ template "head" . }}
<body>
{{ template "nav" . }}
<main>
<h2>About Me</h2>
<div class="about-me">
<div>
{{ range .AboutText }}
<p>{{ . }}</p>
{{ end }}
</div>
<img src="{{ .ImagePath }}" alt="Just a picture of me.">
</div>
<br>
<hr>
{{ if .HTML }}
{{ .HTML }}
<br>
<hr>
{{ end }}
<h2>
Online Profiles
</h2>
{{ range .Profiles }}
<p>
<b class="icon">{{ .Icon }}</b> {{ .Website }}: <a href="{{ .URL }}">{{ .User }}</a>
</p>
{{ end }}
<br>
<hr>
<h2>
Contact
</h2>
<p>
<b class="icon">E</b> Email: <a href="mailto:{{ .Email }}">{{ .Email }}</a>
</main>
</body>
</html>
{{ end }}