This commit is contained in:
parent
863c840991
commit
b796aaa294
16
layouts/404.html
Normal file
16
layouts/404.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<div class="centered top-fade" style="height:100vh">
|
||||||
|
<div class="intro-content">
|
||||||
|
<h1 data-value="command not found" data-show="error-message" class="typewriter"></h1>
|
||||||
|
<div id="error-message">
|
||||||
|
<p data-value="Page not found, sorry about that"></p>
|
||||||
|
</div>
|
||||||
|
<div class="link-block">
|
||||||
|
<a href="javascript:history.back()"><-- Go back</a>
|
||||||
|
<p> | </p>
|
||||||
|
<a href="{{ .Site.BaseURL }}">Home --></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ end }}
|
16
layouts/500.html
Normal file
16
layouts/500.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<div class="centered top-fade" style="height:100vh">
|
||||||
|
<div class="intro-content">
|
||||||
|
<h1 data-value="kernel panic!" data-show="error-message" class="typewriter"></h1>
|
||||||
|
<div id="error-message">
|
||||||
|
<p data-value="Error on our side, my bad"></p>
|
||||||
|
</div>
|
||||||
|
<div class="link-block">
|
||||||
|
<a href="javascript:history.back()"><-- Go back</a>
|
||||||
|
<p> | </p>
|
||||||
|
<a href="{{ .Site.BaseURL }}">Home --></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ end }}
|
@ -185,6 +185,12 @@ html {
|
|||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.link-block {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
article > a {
|
article > a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -198,13 +204,17 @@ article > a {
|
|||||||
|
|
||||||
article > a:hover {
|
article > a:hover {
|
||||||
background: black;
|
background: black;
|
||||||
|
transition: background 200ms linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post {
|
.post {
|
||||||
margin-right: 10vw;
|
margin-right: 7vw;
|
||||||
margin-left: 10vw;
|
margin-left: 7vw;
|
||||||
margin-top: 3vh;
|
margin-top: 3vh;
|
||||||
margin-bottom: 1vh;
|
margin-bottom: 1vh;
|
||||||
|
padding: 3vh 3vw;
|
||||||
|
background-color: rgba(11,11,12,0.4);
|
||||||
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
img {
|
img {
|
||||||
|
Loading…
Reference in New Issue
Block a user