1

Improve layout

This commit is contained in:
Evan Pratten 2023-11-04 10:44:48 -04:00
parent b65d7944c6
commit 4d12ce5cb3
5 changed files with 58 additions and 14 deletions

View File

@ -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)
<br>
<details>
<summary>
<h2>Find me elsewhere</h2>
</summary>
- [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/)
<!--- [IETF Datatracker](https://datatracker.ietf.org/person/Evan%20Pratten) -->
## 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)
</details>

View File

@ -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;
}
}

View File

@ -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%;

View File

@ -73,6 +73,7 @@ main {
@import "elements/table.scss";
@import "elements/text.scss";
@import "elements/image.scss";
@import "elements/details.scss";
}
footer {

View File

@ -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");