Added blocktime generation
Also refactored the "base" template stuff - really should've done that in a separate commit
This commit is contained in:
22
templates/base.html.tera
Normal file
22
templates/base.html.tera
Normal file
@@ -0,0 +1,22 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user