diff options
Diffstat (limited to 'html/main/index.tmpl.html')
-rw-r--r-- | html/main/index.tmpl.html | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/html/main/index.tmpl.html b/html/main/index.tmpl.html index 6760fae..55acf81 100644 --- a/html/main/index.tmpl.html +++ b/html/main/index.tmpl.html @@ -3,24 +3,13 @@ {{ define "keywords" }}home{{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"> - <div class="subtitle-text"> - <p>My place to:</p> - <p><strong>showcase design projects.<br>post life updates.<br>bulid web-development skills.</strong></p> - </div> - </div> - <section class="bottom"> - <h2>Latest Design Projects</h2> - <div class="posts"> + <h1>Design Projects</h1> + <section class="projects even-2-col-grid"> {{ range .Posts.Contents }} - <figure class="thumbnail"> - <a href="/projects/{{ .FileName }}"> - {{ .Image }} - <figcaption>{{ .Title }}</figcaption> - </a> - </figure> + <a href="/projects/{{ .FileName }}" class="thumbnail"> + {{ .Image }} + <p>{{ .Title }}</p> + </a> {{ end }} - </div> - </section> + </section> {{ end }}
\ No newline at end of file |