diff options
author | thinkpadmaster <a.scerba02@gmail.com> | 2023-11-08 18:08:16 -0500 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-10-29 13:19:59 -0400 |
commit | 6115aaceb87ce23c42ef884b13eb0fe152b000f4 (patch) | |
tree | eeba767f7bf5b94b0d235ca58573682bfd04cead /html/main/index.tmpl.html | |
parent | 7d877681d15f016777a405e14facf6ef5797fc87 (diff) |
Full visual overhaul
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 |