diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/about.html | 20 | ||||
-rw-r--r-- | templates/blog.html | 14 | ||||
-rw-r--r-- | templates/index.html | 19 | ||||
-rw-r--r-- | templates/master.html | 33 | ||||
-rw-r--r-- | templates/postHelp.tmpl | 9 | ||||
-rw-r--r-- | templates/projects.html | 14 |
6 files changed, 0 insertions, 109 deletions
diff --git a/templates/about.html b/templates/about.html deleted file mode 100644 index b30f1b5..0000000 --- a/templates/about.html +++ /dev/null @@ -1,20 +0,0 @@ -{{ define "meta" }} - <title>About</title> - <meta name="description" content="About me, Alex Scerba"> -{{ end }} -{{ define "main" }} - <h1>alexscerba.com<wbr>/about</h1> - <section class="postContent"> - <h2>About</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> - <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> - <p>This site is my anti social media and is where I post about my life and school projects (when allowed) and serves as a way to keep up with my appreciation for software programming. The backend is written in <a href="https://go.dev" target="_blank" rel="noopener noreferrer">Go</a> (source can be found <a href="https://notabug.org/thinkpadmaster/alexscerba.com" target="_blank" rel="noopener noreferrer">at notabug.org</a>) and uses a templating system to keep hand-editing of pages to a bare minimum.</p> - <p>I keep my <a href="http://alexscerba.com:8080" target="_blank" rel="noopener noreferrer">old site</a> hosted for posterity. The blog page and others are extremely slow to load due to amount of content on the pages and size of images, but it is a fun project to look back on.</p> - <p>Contact me at <a href="mailto:ascerba@collegeforcreativestudies.edu">ascerba@collegeforcreativestudies.edu</a></p> - </section> -{{ end }}
\ No newline at end of file diff --git a/templates/blog.html b/templates/blog.html deleted file mode 100644 index b6fd65c..0000000 --- a/templates/blog.html +++ /dev/null @@ -1,14 +0,0 @@ -{{ define "meta"}} - <title>Blog</title> - <meta name="description" content="Site blog featuring personal and project updates as well as anything random I want to share."> -{{ end }} -{{ define "main" }} - <h1>alexscerba.com<wbr>/blog</h1> - - <section class="postContent"> - <h2>Entries</h2> -{{ range .Contents }} -{{ printf "%s" .Thumbnail }} -{{ end }} - </section> -{{ end }}
\ No newline at end of file diff --git a/templates/index.html b/templates/index.html deleted file mode 100644 index 8dae135..0000000 --- a/templates/index.html +++ /dev/null @@ -1,19 +0,0 @@ -{{ 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><strong>showcase design projects.<br>post life updates.<br>bulid web-development skills.</strong></p> - </div> - <section class="bottom"> - <h2>Latest Design Projects</h2> - <div class="posts"> -{{ range .Contents }} -{{ printf "%s" .Thumbnail }} -{{ end }} - </div> - </section> -{{ end }}
\ No newline at end of file diff --git a/templates/master.html b/templates/master.html deleted file mode 100644 index 2d572e4..0000000 --- a/templates/master.html +++ /dev/null @@ -1,33 +0,0 @@ -<!DOCTYPE html> -<html lang="en-US"> - - <head> - - <meta charset="utf-8" /> - <meta name="author" content="Alexander Rees Scerba" /> -{{ template "meta" . }} - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <link rel="stylesheet" href="/static/style.css" /> - <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon" /> - - </head> - - <body> - - <input type="checkbox" class="toggler"> - <div class="hamburger"><div></div></div> - <nav aria-labelledby="global-navigation" class="menu"> - <a href="/">Home</a> - <a href="/projects">Projects</a> - <a href="/blog">Blog</a> - <a href="/about">About</a> - </nav> - - <main> - -{{ template "main" . }} - - </main> - </body> - -</html> diff --git a/templates/postHelp.tmpl b/templates/postHelp.tmpl deleted file mode 100644 index edaf250..0000000 --- a/templates/postHelp.tmpl +++ /dev/null @@ -1,9 +0,0 @@ -{{ define "meta" }} -{{ printf "%s" .Meta }} -{{ end }} -{{ define "main" }} - <h1>Post</h1> - <section class="postContent"> -{{ printf "%s" .Content }} - </section> -{{ end }} diff --git a/templates/projects.html b/templates/projects.html deleted file mode 100644 index 6cc75af..0000000 --- a/templates/projects.html +++ /dev/null @@ -1,14 +0,0 @@ -{{ define "meta"}} - <title>Projects</title> - <meta name="description" content="Site blog featuring personal and project updates as well as anything random I want to share."> -{{ end }} -{{ define "main" }} - <h1>alexscerba.com<wbr>/projects</h1> - - <section class="postContent"> - <h2>Completed</h2> -{{ range .Contents }} -{{ printf "%s" .Thumbnail }} -{{ end }} - </section> -{{ end }}
\ No newline at end of file |