aboutsummaryrefslogtreecommitdiff
path: root/html/main
diff options
context:
space:
mode:
Diffstat (limited to 'html/main')
-rw-r--r--html/main/about.tmpl.html23
-rw-r--r--html/main/blog.tmpl.html17
-rw-r--r--html/main/index.tmpl.html29
-rw-r--r--html/main/projects.tmpl.html22
4 files changed, 0 insertions, 91 deletions
diff --git a/html/main/about.tmpl.html b/html/main/about.tmpl.html
deleted file mode 100644
index 1ea7e99..0000000
--- a/html/main/about.tmpl.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{{ define "title" }}About{{end}}
-{{ define "description" }}About me and my site.{{end}}
-{{ define "keywords" }}about{{end}}
-{{ define "canonical" }}/about{{end}}
-
-{{ define "main" }}
- <div class="uneven-column-grid">
- <h1>About</h1>
- <img src="/static/media/alex_profile_512.jpg" alt="Highschool senior photo portrait of Alex next to Yerkes Observatory." style="margin-bottom: 3rem"/>
- <div class="postBackground">
- <div class="postContent">
- <p>My name is Alex Scerba, a Junior in the College for Creative Studies: Transportation Design program in Detroit, MI.</p>
- <p>Growing up in Lake Geneva, WI, I developed a passion for making and tinkering, which lead me down the path of industrial design. I love working with my hands, fixing up and riding motorcycles and cars, and learning new skills.</p>
- <p>In addition to sketching, rendering, and modeling, my hobby skills include programming (<a href="https://github.com/ascerba/personal-website" target="_blank" rel="noopener noreferrer">this website</a>), bookbinding, and woodworking.</p>
- <blockquote>"It's just a machine. Open it up and see what's wrong."</blockquote>
- <p>This summer, I hope to secure an internship to learn more skills in the design and manufacturing industry.</p>
- <p>Connect with me on LinkedIn: <a href="https://linkedin.com/in/ascerba" target="_blank" rel="noopener noreferrer">linkedin.com/in/ascerba</a></p>
- <p>Contact me at <a href="mailto:me@alexscerba.com">me@alexscerba.com</a></p>
- <p>View my <a href="/static/documents/Resume_Scerba_Fall2023.pdf">résumé</a>
- </div>
- </div>
- </div>
-{{ end }} \ No newline at end of file
diff --git a/html/main/blog.tmpl.html b/html/main/blog.tmpl.html
deleted file mode 100644
index 989743c..0000000
--- a/html/main/blog.tmpl.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{{ define "title" }}Blog{{end}}
-{{ define "description" }}Site blog featuring personal and project updates as well as anything random I want to share.{{end}}
-{{ define "keywords" }}blog{{end}}
-{{ define "canonical" }}/blog{{end}}
-
-{{ define "main" }}
- <h1>Blog</h1>
-
- <section class="postBackground">
- <div class="postContent">
- <h2>Entries</h2>
-{{ range .Posts.Contents}}
- <p>- <a href="/blog/{{ .FileName }}">{{ .Title }}</a></p>
-{{ end }}
- </div>
- </section>
-{{ end }} \ No newline at end of file
diff --git a/html/main/index.tmpl.html b/html/main/index.tmpl.html
deleted file mode 100644
index 3bb171a..0000000
--- a/html/main/index.tmpl.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{{ define "title" }}Home{{end}}
-{{ define "description" }}Homepage{{end}}
-{{ define "keywords" }}home{{end}}
-
-{{ define "main" }}
- <h1>Design Projects</h1>
- <div class="uneven-column">
- <div class="side-info">
- <img src="/static/media/alex_profile_512.jpg" alt="Highschool senior photo portrait of Alex next to Yerkes Observatory." style="margin-bottom: 2.5rem;"/>
- <div style="grid-column-start: 1;">
- <p>My name is Alex Scerba, a Junior in the College for Creative Studies: Transportation Design program in Detroit, MI.</p>
- <p>Growing up in Lake Geneva, WI, I developed a passion for making and tinkering, which lead me down the path of industrial design. I love working with my hands, fixing up and riding motorcycles and cars, and learning new skills.</p>
- <p>In addition to sketching, rendering, and modeling, my hobby skills include programming (<a href="https://github.com/ascerba/personal-website" target="_blank" rel="noopener noreferrer">this website</a>), bookbinding, and woodworking.</p>
- <p>This summer, I hope to secure an internship to learn more skills in the design and manufacturing industry.</p>
- <p>Connect with me on LinkedIn: <br><a href="https://linkedin.com/in/ascerba" target="_blank" rel="noopener noreferrer"><b>linkedin.com/in/ascerba</b></a></p>
- <p>Email <a href="mailto:me@alexscerba.com"><b>me@alexscerba.com</b></a></p>
- <p>View my <a href="/static/documents/Resume_Scerba_Fall2023.pdf"><b>résumé</b></a>
- </div>
- </div>
- <div class="projects even-2-col-grid">
-{{ range .Posts.Contents }}
- <a href="/projects/{{ .FileName }}" class="thumbnail">
- {{ .Image }}
- <span class="title">{{ .Title }}</span>
- </a>
-{{ end }}
- </div>
- </div>
-{{ end }} \ No newline at end of file
diff --git a/html/main/projects.tmpl.html b/html/main/projects.tmpl.html
deleted file mode 100644
index 18ad060..0000000
--- a/html/main/projects.tmpl.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{{ define "title" }}Projects{{end}}
-{{ define "description" }}Porfolio projects.{{end}}
-{{ define "keywords" }}projects{{end}}
-{{ define "canonical" }}/projects{{end}}
-
-{{ define "main" }}
- <h1>Projects</h1>
-
- <section class="postBackground">
- <div class="projectList">
- <h2>Completed</h2>
-{{ range .Posts.Contents }}
- <figure class="thumbnail">
- <a href="/projects/{{ .FileName }}">
- {{ .Image }}
- <figcaption>{{ .Title }}</figcaption>
- </a>
- </figure>
-{{ end }}
- </div>
- </section>
-{{ end }} \ No newline at end of file