Update style and first post
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tyler Perkins 2023-09-11 22:45:24 -04:00
parent 786d8b3fcc
commit dfa985812f
4 changed files with 10 additions and 7 deletions

View File

@ -4,8 +4,6 @@ date: 2023-09-11T21:30:41-04:00
draft: false
---
# First Post
This is my first post from the rewrite! I decided to rewrite my website in [Hugo](https://gohugo.io) this time instead of PHP. The real innovation here is the new tech stack underpinning the process of hosting this thing.
So previously, I had no clue about "real" server hosting (like what actual companies do). But now that I have some experience under my belt in both my professional environment and in my hobby hosting, I now know a bit more about how to host in a more durable manner. Over engineering? Probably. But that's where the fun lies!

View File

@ -0,0 +1 @@
<center><img src="{{ .Destination }}" title="{{ with .Title }}{{ . }} {{ else }}{{ .Text }}{{ end }}" alt="{{ .Text }}" /></center>

View File

@ -0,0 +1 @@
<a href="{{ .Destination }}" title="{{ .Title }}" data-value="{{ .Text | safeHTML }}" class="scramble">{{ .Text | safeHTML }}</a>

View File

@ -185,7 +185,7 @@ html {
object-fit: contain;
}
article a {
article > a {
text-decoration: none;
display: flex;
padding: 50px;
@ -196,12 +196,15 @@ article a {
transition: background 200ms linear;
}
article a:hover {
article > a:hover {
background: black;
}
.post {
margin: 10px;
margin-right: 10vw;
margin-left: 10vw;
margin-top: 3vh;
margin-bottom: 1vh;
}
img {