diff --git a/content/contact.md b/content/contact.md
index 8df2034..698dcf8 100644
--- a/content/contact.md
+++ b/content/contact.md
@@ -1,12 +1,27 @@
---
title: Contact Information
-description: Get in touch with me!
+# description: Get in touch with me!
---
-Want to get in touch? Feel free to send me an email at [evan@ewpratten.com](mailto:evan@ewpratten.com).
+Want to get in touch? Feel free to send me an email at:
-## Find me elsewhere
+> **[evan@ewpratten.com](mailto:evan@ewpratten.com)**
+
+## AS54041 network operations
+
+**AS54041** operates with a selective peering policy. If you are interested in peering with this network, please send an email to [noc@ewpratten.com](mailto:noc@ewpratten.com).
+
+All other network information may be found via:
+
+- [PeeringDB](https://www.peeringdb.com/asn/54041)
+- [BGP.tools](https://bgp.tools/as/54041)
+
+
+
+
+Find me elsewhere
+
- [LinkedIn](https://www.linkedin.com/in/ewpratten/)
- [GitHub](https://github.com/ewpratten)
@@ -22,12 +37,4 @@ Want to get in touch? Feel free to send me an email at [evan@ewpratten.com](mail
- [Modrinth](https://modrinth.com/user/ewpratten)
- [IMDb](https://www.imdb.com/name/nm13747554/)
-
-## AS54041 network operations
-
-**AS54041** operates with a selective peering policy. If you are interested in peering with this network, please send an email to [noc@ewpratten.com](mailto:noc@ewpratten.com).
-
-All other network information may be found via:
-
-- [PeeringDB](https://www.peeringdb.com/asn/54041)
-- [BGP.tools](https://bgp.tools/as/54041)
+
\ No newline at end of file
diff --git a/sass/elements/details.scss b/sass/elements/details.scss
new file mode 100644
index 0000000..a3a98ca
--- /dev/null
+++ b/sass/elements/details.scss
@@ -0,0 +1,30 @@
+details {
+ background-color: #f4f4f4;
+ border: 1px solid #d7dde3;
+ border-radius: 5px;
+ padding: 0.5em;
+
+ summary {
+ h1,
+ h2,
+ h3,
+ h4,
+ h5,
+ h6 {
+ margin: none;
+ padding: none;
+ border: none;
+ display: inline;
+ }
+
+ &:hover {
+ cursor: pointer;
+ }
+ }
+
+ & > :nth-child(2) {
+ margin-top: 0.5em;
+ padding-top: 0.5em;
+ border-top: 1px solid #d7dde3;
+ }
+}
diff --git a/sass/elements/text.scss b/sass/elements/text.scss
index f3c4ef6..03a1b56 100644
--- a/sass/elements/text.scss
+++ b/sass/elements/text.scss
@@ -1,7 +1,7 @@
p,
li,
span {
- font-family: "Open Sans", serif;
+ font-family: sans-serif;
}
p {
@@ -10,6 +10,12 @@ p {
text-align: justify;
}
+.no-justify {
+ p {
+ text-align: left !important;
+ }
+}
+
sub,
sup {
font-size: 75%;
diff --git a/sass/styles.scss b/sass/styles.scss
index 8e9fd3b..842c3d3 100644
--- a/sass/styles.scss
+++ b/sass/styles.scss
@@ -73,6 +73,7 @@ main {
@import "elements/table.scss";
@import "elements/text.scss";
@import "elements/image.scss";
+ @import "elements/details.scss";
}
footer {
diff --git a/static/functions/_middleware.js b/static/functions/_middleware.js
index 39891e8..e13786f 100644
--- a/static/functions/_middleware.js
+++ b/static/functions/_middleware.js
@@ -3,7 +3,7 @@ async function redirect_secondary_domains(context) {
let url = new URL(context.request.url);
// If the request is for any of the secondary domains, redirect to the primary domain
- var secondary_domains = ['test.ewp.fyi', 'va3zza.com', 'evan.pratten.ca', 'evan.warren.pratten.ca'];
+ var secondary_domains = ['va3zza.com', 'evan.pratten.ca', 'evan.warren.pratten.ca'];
if (secondary_domains.includes(url.hostname)) {
url.searchParams.set("utm_source", url.hostname);
url.searchParams.set("utm_campaign", "secondary_domains");