diff --git a/src/templates/enthusiast.html b/src/templates/enthusiast.html index 2f504ed..5269771 100644 --- a/src/templates/enthusiast.html +++ b/src/templates/enthusiast.html @@ -1,2 +1,10 @@ {% extends "layout.html" %} -{% set active_page = "enthusiast" %} \ No newline at end of file +{% set active_page = "enthusiast" %} +{% block title %}enthusiast{% endblock %} +{% block head %} + {{ super() }} + + + + +{% endblock %} \ No newline at end of file diff --git a/src/templates/investor.html b/src/templates/investor.html index f933441..007b483 100644 --- a/src/templates/investor.html +++ b/src/templates/investor.html @@ -1,2 +1,10 @@ {% extends "layout.html" %} -{% set active_page = "investor" %} \ No newline at end of file +{% set active_page = "investor" %} +{% block title %}investor{% endblock %} +{% block head %} + {{ super() }} + + + + +{% endblock %} \ No newline at end of file diff --git a/src/templates/layout.html b/src/templates/layout.html index eb7f1cf..a7868b3 100644 --- a/src/templates/layout.html +++ b/src/templates/layout.html @@ -1,7 +1,8 @@
-