diff options
Diffstat (limited to 'html/main')
-rw-r--r-- | html/main/about.tmpl.html | 6 | ||||
-rw-r--r-- | html/main/index.tmpl.html | 25 |
2 files changed, 8 insertions, 23 deletions
diff --git a/html/main/about.tmpl.html b/html/main/about.tmpl.html index ec88c22..afb6fcd 100644 --- a/html/main/about.tmpl.html +++ b/html/main/about.tmpl.html @@ -7,11 +7,7 @@ <h1>About</h1> <section class="postBackground"> <div class="postContent"> - <h2>Me and This Website</h2> - <figure> - <img src="/static/media/alex_profile_512.jpg" alt="Highschool senior photo portrait of Alex next to Yerkes Observatory."> - <figcaption>Highschool senior photo.</figcaption> - </figure> + <img src="/static/media/alex_profile_512.jpg" alt="Highschool senior photo portrait of Alex next to Yerkes Observatory."> <p>My name is Alex Scerba, and I am a design student at the College for Creative Studies in Detroit, MI.</p> <blockquote>"It's just a machine. Open it up and see what's wrong."</blockquote> <p>This phrase is mostly what my life revolves around. Tinkering, making, repairing, and improving the world through these outlets is what I strive to do in my lifetime.</p> 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 |