aboutsummaryrefslogtreecommitdiff
path: root/tmpl/index.html
blob: 2fc4866c09e720aa5908fa5f1ca884339982c6c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{{template "base.html" .}}

{{define "title"}}Xe Iaso{{end}}

{{define "content"}}
{{$cfg := config}}
<h1 class="text-3xl mb-4">{{$cfg.Resume.Name}}</h1>
<p class="text-xl mb-4">{{$cfg.Resume.Tagline}} - {{$cfg.Resume.Location.String}}</p>
<p class="text-lg mb-4">I'm a speaker, writer, chaos magician, and commited technologist. I regularly write articles on
    my <a href="/blog">blog</a> and give <a href="/talks">conference talks</a>.</p>

<h2 class="text-2xl mb-4">Highlighted Projects</h2>
<ul class="list-disc ml-4 mb-4">
    {{range $cfg.NotableProjects}}
    <li><a href="{{.URL}}">{{.Title}}</a>: {{.Description}}</li>
    {{end}}
</ul>

<h2 class="text-2xl mb-4">Recent Articles</h2>
<ul class="list-disc ml-4 mb-4">
    {{range recentPosts}}
    <li>{{.Detri}} - <a href="/{{.Link}}">{{.FrontMatter.Title}}</a></li>
    {{end}}
</ul>

<h2 class="text-2xl mb-4">Quick Links</h2>
<ul class="list-disc ml-4 mb-4">
    {{range $cfg.ContactLinks}}
    <li><a rel="me" href="{{.URL}}">{{.Title}}</a></li>
    {{end}}
</ul>

<p class="mb-4">Looking for someone for your team? Check <a class="text-blue-dark dark:text-blueDark-dark"
        href="/signalboost">here</a>.</p>

<div class="flex flex-wrap items-start justify-center p-5">
    {{range $cfg.Resume.Buzzwords}}
    <span class="m-2 p-2 text-sm bg-bg-1 dark:bg-bgDark-1 text-fg-1 dark:text-fgDark-1 rounded-lg">{{.}}</span>
    {{end}}
</div>
{{end}}