Update style and first post
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
786d8b3fcc
commit
dfa985812f
@ -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!
|
||||
|
1
layouts/_default/_markup/render-image.html
Normal file
1
layouts/_default/_markup/render-image.html
Normal file
@ -0,0 +1 @@
|
||||
<center><img src="{{ .Destination }}" title="{{ with .Title }}{{ . }} {{ else }}{{ .Text }}{{ end }}" alt="{{ .Text }}" /></center>
|
1
layouts/_default/_markup/render-link.html
Normal file
1
layouts/_default/_markup/render-link.html
Normal file
@ -0,0 +1 @@
|
||||
<a href="{{ .Destination }}" title="{{ .Title }}" data-value="{{ .Text | safeHTML }}" class="scramble">{{ .Text | safeHTML }}</a>
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user