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 %}