From cb2ceb0c0d6a998d3a4b30226bdf998af312dca5 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 25 Nov 2022 14:36:06 -0500 Subject: [PATCH] page heading --- sass/styles/components/about-card.scss | 57 ++++++++++++++++++++ sass/styles/components/heading-card.scss | 32 +++++++++++ templates/base.html | 6 +++ templates/components/about-card.html | 46 ++++++++++++++++ templates/components/heading-card.html | 14 +++++ templates/components/metadata/analytics.html | 9 ++++ templates/index.html | 5 +- templates/page.html | 9 +++- templates/section.html | 3 ++ 9 files changed, 179 insertions(+), 2 deletions(-) create mode 100644 sass/styles/components/about-card.scss create mode 100644 sass/styles/components/heading-card.scss create mode 100644 templates/components/about-card.html create mode 100644 templates/components/heading-card.html create mode 100644 templates/components/metadata/analytics.html diff --git a/sass/styles/components/about-card.scss b/sass/styles/components/about-card.scss new file mode 100644 index 0000000..29238ea --- /dev/null +++ b/sass/styles/components/about-card.scss @@ -0,0 +1,57 @@ +.about-card { + display: flex; + flex-wrap: wrap; + flex-direction: row; + justify-content: space-around; + + width: max-content; + max-width: 95vw; + margin-left: auto; + margin-right: auto; + margin-top: 2em; + margin-bottom: 2em; + + .profile-photo-container { + max-width: 150px; + height: max-content; + margin: 0; + padding: 0; + + & > img { + width: 100%; + } + } + + .text-container { + margin-left: 1em; + height: max-content; + + .intro-text { + margin-bottom: 1em; + + h1, + p { + margin: 0; + line-height: 1em; + } + } + + .quick-links { + height: max-content; + + ul { + margin: 0; + padding: 0; + + li { + list-style-type: none; + + line-height: 1.25em; + margin: 0; + padding: 0; + } + padding: 0; + } + } + } +} diff --git a/sass/styles/components/heading-card.scss b/sass/styles/components/heading-card.scss new file mode 100644 index 0000000..721ce84 --- /dev/null +++ b/sass/styles/components/heading-card.scss @@ -0,0 +1,32 @@ +.heading-card { + display: flex; + flex-direction: row; + justify-content: space-around; + align-items: center; + + width: max-content; + max-width: 95vw; + margin-left: auto; + margin-right: auto; + margin-top: 2em; + margin-bottom: 2em; + + .profile-photo-container { + width: 50px; + + img { + width: 100%; + } + } + + .text-container { + margin-left: 1em; + height: max-content; + + h1, + p { + margin: 0; + line-height: 1em; + } + } +} diff --git a/templates/base.html b/templates/base.html index 6838adf..a1334a0 100644 --- a/templates/base.html +++ b/templates/base.html @@ -13,6 +13,7 @@ + {% include "components/metadata/advertise-rss.html" %} {% include "components/metadata/opengraph.html" %} @@ -54,6 +55,9 @@ {# The whole page #}
+ {# Allow pages to override the content before the navbar #} + {% block page_start %}{% endblock page_start %} + {# Navbar #}
{% include "components/navbar.html" %} @@ -74,6 +78,8 @@ + + {% include "components/metadata/analytics.html" %} \ No newline at end of file diff --git a/templates/components/about-card.html b/templates/components/about-card.html new file mode 100644 index 0000000..83b9f3f --- /dev/null +++ b/templates/components/about-card.html @@ -0,0 +1,46 @@ +{% block component_styles %} +{{ super() }} + +{% endblock component_styles %} + +
+
+ Profile Photo +
+
+
+

{{config.extra.name}}

+

{{config.extra.profession}}

+
+ +
+
+ +{# Mastodon requires this to exist somewhere, so why not here #} + \ No newline at end of file diff --git a/templates/components/heading-card.html b/templates/components/heading-card.html new file mode 100644 index 0000000..f337bf7 --- /dev/null +++ b/templates/components/heading-card.html @@ -0,0 +1,14 @@ +{% block component_styles %} +{{ super() }} + +{% endblock component_styles %} + +
+
+ Profile Photo +
+
+

{{config.extra.name}}

+

{{config.extra.profession}}

+
+
\ No newline at end of file diff --git a/templates/components/metadata/analytics.html b/templates/components/metadata/analytics.html new file mode 100644 index 0000000..4561b6f --- /dev/null +++ b/templates/components/metadata/analytics.html @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 2d8af1c..a96117a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -8,6 +8,9 @@ {% endblock variable_wormhole %} {# Page content #} +{% block page_start %} +{% include "components/about-card.html" %} +{% endblock page_start %} {% block content %} - {{ section.content | safe }} +{{ section.content | safe }} {% endblock content %} \ No newline at end of file diff --git a/templates/page.html b/templates/page.html index 524e817..e90338b 100644 --- a/templates/page.html +++ b/templates/page.html @@ -9,6 +9,13 @@ {% endblock variable_wormhole %} {# Page content #} +{% block page_start %} +{% include "components/heading-card.html" %} +{% endblock page_start %} {% block content %} - {{ page.content | safe }} +

{{page.title}}

+{{page.description}} +

+ +{{ page.content | safe }} {% endblock content %} \ No newline at end of file diff --git a/templates/section.html b/templates/section.html index 3489058..4b583b3 100644 --- a/templates/section.html +++ b/templates/section.html @@ -8,6 +8,9 @@ {% endblock variable_wormhole %} {# Page content #} +{% block page_start %} +{% include "components/heading-card.html" %} +{% endblock page_start %} {% block content %} {{ section.content | safe }} {% endblock content %} \ No newline at end of file