Files
big_tim/templates/base.html.tera
Arthur Roberts 846a9b94c7 Added blocktime generation
Also refactored the "base" template stuff - really should've done that in
a separate commit
2024-07-15 20:47:32 +01:00

23 lines
416 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Big Tim</title>
<style>
.blockchain_infos {
display: flex;
flex-wrap: wrap;
}
.blockchain_info {
margin: 20px;
}
.result {
font-family: monospace, monospace;
}
</style>
</head>
<body>
{% block content %}{% endblock content %}
</body>
</html>