diff options
author | cel 🌸 <cel@blos.sm> | 2024-01-30 16:16:05 +0000 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2024-01-30 16:16:05 +0000 |
commit | f00159f53b3774601500ec65345791311ff6efa1 (patch) | |
tree | cc65a487e71a056126e1935108a494c7851863f9 /templates/contact.html | |
parent | 8c03d9a53f4bc2f70fb5c1e0487bc74fe0137fcb (diff) | |
download | blossom-f00159f53b3774601500ec65345791311ff6efa1.tar.gz blossom-f00159f53b3774601500ec65345791311ff6efa1.tar.bz2 blossom-f00159f53b3774601500ec65345791311ff6efa1.zip |
migrate to poem and askama
Diffstat (limited to '')
-rw-r--r-- | templates/contact.html (renamed from templates/contact.html.tera) | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/templates/contact.html.tera b/templates/contact.html index 28ec6e6..4302e88 100644 --- a/templates/contact.html.tera +++ b/templates/contact.html @@ -1,4 +1,4 @@ -{% extends "base" %} +{% extends "base.html" %} {% block nav_contact %}active{% endblock %} @@ -6,7 +6,7 @@ <header> <div class="panel" id="title"> - <h1>cel 🌸</h1> + <h1>celeste 🌸</h1> </div> </header> @@ -16,15 +16,19 @@ <div class="content panel h-card" rel="author"> <h1 class="p-name">cel</h1> - + <ul> - <li><h3>pronouns: <span class="p-x-pronoun-nominative">she</span>/<span class="p-x-pronoun-accusative">her</span></h3></li> + <li> + <h3>pronouns: <span class="p-x-pronoun-nominative">she</span>/<span class="p-x-pronoun-accusative">her</span></h3> + </li> <li>email: <a class="u-email" href="mailto:cel@blos.sm">cel@blos.sm</a></li> <li>jabber: <a class="u-impp" href="xmpp:cel@blos.sm?message">cel@blos.sm</a></li> <li>scrobbles: <a class="u-url" href="https://listenbrainz.org/user/celblossom">listenbrainz/celblossom</a></li> <li>bandcamp fan: <a class="u-url" href="https://bandcamp.com/celblossom">bandcamp/celblossom</a></li> <br> - <li><span class="p-note">languages (in rough skill order): english, portuguese, french, japanese, german, chinese, latin, toki pona, korean</span></li></li> + <li><span class="p-note">languages (in rough skill order): english, portuguese, french, japanese, german, chinese, + latin, toki pona, korean</span></li> + </li> <li><span class="p-note">programming: rust, erlang, go, haskell, webdev, lisp</span></li> </ul> </div> |