diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-11 18:15:38 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-11 18:15:38 +0200 |
commit | 6a31a30b98f7febe9ac0db74211ef074aefc7ad3 (patch) | |
tree | 9ce8694f0f37efcc5b1eb72d9e2d26731ad7ec6a /templates | |
parent | 96c2cbe1850f95806cccb6f47a7739eb9c2ac860 (diff) | |
download | macroblog.rs-6a31a30b98f7febe9ac0db74211ef074aefc7ad3.tar.gz macroblog.rs-6a31a30b98f7febe9ac0db74211ef074aefc7ad3.tar.bz2 macroblog.rs-6a31a30b98f7febe9ac0db74211ef074aefc7ad3.zip |
feat: Add project tab
Diffstat (limited to 'templates')
-rw-r--r-- | templates/header.html | 1 | ||||
-rw-r--r-- | templates/projects.html | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/templates/header.html b/templates/header.html index c830273..b81a09e 100644 --- a/templates/header.html +++ b/templates/header.html @@ -5,6 +5,7 @@ </a> <nav class="container-fluid"> <ul> + <li><a href="/projects" class="secondary">Projects</a></li> <li><a href="https://gitlab.com/gabrielgio/cv/-/raw/main/cv.pdf?inline=false" class="secondary">Resume</a></li> </ul> </nav> diff --git a/templates/projects.html b/templates/projects.html new file mode 100644 index 0000000..9aff1a6 --- /dev/null +++ b/templates/projects.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html data-theme="light" lang="en"> + <head> + <% include!("head.html"); %> + </head> + <body> + <div class="layout"> + <% include!("header.html"); %> + <%- content %> + </div> + </body> +</html> |