Merge pull request 'Add no content' (#5) from add_no_content into main
continuous-integration/drone/push Build is passing Details

This commit is contained in:
luca 2020-11-15 00:33:37 +01:00
commit 0106c60956
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,14 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #000;
}
#no-content {
display: block;
margin: 0 auto;
}

View File

@ -1,2 +1,5 @@
{{ define "main" }} {{ define "main" }}
<main>
<img id="no-content" src="https://http.cat/204" alt="Picture of two cats in front of an empty bowl; the caption reads &quot;204 No Content&quot;">
</main>
{{ end }} {{ end }}