blob: 4a90022a42613aa9e9f59d8b043c11a70755684b (
plain) (
blame)
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
|
{{ define "title" }}Home{{end}}
{{ define "description" }}Homepage{{end}}
{{ define "keywords" }}home{{end}}
{{ define "landing" }}
<div class="landing-page">
<div class="landing-text">
<span>Design.</span>
<span>Make.</span>
<span>Tinker.</span>
</div>
<a href="#intro" style="display: block;" class="arrow-container"><span class="down-arrow"></span></a>
</div>
{{ end }}
{{ define "main" }}
<section id="intro">
<!--<hr style="margin-top: 0;"> -->
<h1>ScerbaDotOrg</h1>
<p><i style="color: black;">The personal website of Alex Scerba.</i></p>
<p>Check out my <a href="/blog">blog</a> where I write about various projects, adventures, and life updates.</p>
<p>You can see an overview collection of every image in the blog on the <a href="/gallery">gallery</a> page and learn more about me and the site through the <a href="/about">about</a> and <a href="/faq">FAQ</a> pages.</p>
<p>Thanks for stopping by!</p>
</section>
{{ end }}
|