From 186e9b908c7f27f17978e1dbac9ca61877b72a8e Mon Sep 17 00:00:00 2001 From: Triston Armstrong Date: Tue, 26 Mar 2024 23:25:02 -0500 Subject: [PATCH] update home page style --- templates/base.html | 11 +++++++- templates/portfolio.html | 60 +++++++++++++++++++--------------------- 2 files changed, 38 insertions(+), 33 deletions(-) diff --git a/templates/base.html b/templates/base.html index 19b2165..39a6a47 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,6 +1,7 @@ + + {% block head %}{% endblock %} diff --git a/templates/portfolio.html b/templates/portfolio.html index 30f641a..b018f52 100644 --- a/templates/portfolio.html +++ b/templates/portfolio.html @@ -1,21 +1,30 @@ {% extends "base.html" %} {% block title %}Portfolio{% endblock %} -{% macro skill(link, label)%} +{% macro skill(link, label) %} {{label}} {% endmacro %} -{% macro job(title, date, description)%} -
-

{{title}} +{% macro job(title, date, description) %} +
+

{{title}} / {{date}}

-

{{description}}

+

{{description}}

{% endmacro %} +{% macro project(link, label) %} +
+ {{label}} + + +
+{% endmacro %} + + {% block content %}