1
0
Fork 0

Initial commit

This commit is contained in:
Jordan Johnson-Doyle 2019-02-10 21:35:04 +00:00
parent 0676fb3cd5
commit 2aeb2d5e19
No known key found for this signature in database
GPG key ID: A95F87B578CE79B6
11 changed files with 1761 additions and 4 deletions

View file

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>bin.</title>
<style>
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
min-height: 100vh;
padding: 2rem;
background: #263238;
color: #B0BEC5;
display: flex;
}
{% block styles %}
{% endblock styles %}
</style>
</head>
<body>
{% block content %}
{% endblock content %}
</body>
</html>