diff options
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> |