Also refactored the "base" template stuff - really should've done that in a separate commit
23 lines
416 B
Plaintext
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>
|