blob: 4db2fb1b8193dce7eb6734cec41a08004f3eb4ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{{ define "meta" }}
<title>Alex Scerba</title>
<meta name="description" content="Homepage">
{{ end }}
{{ define "main" }}
<h1 style="animation: 1s ease-out 0s 1 fadeIn">alexscerba.com</h1>
<div class="frontpage-subtitle" style="animation: 1s ease-out 0s 1 fadeIn">
<p>My place to:</p>
<p>showcase design projects.<br> post life updates.<br>bulid web-development skills.</p>
</div>
<section class="bottom">
<h2>Latest Design Projects</h2>
<div class="posts">
{{ range .Contents }}
{{ printf "%s" .Thumbnail }}
{{ end }}
</div>
</section>
{{ end }}
|