houtmarkt-jeremy/markt/templates/base_generic.html

36 lines
937 B
HTML
Raw Normal View History

2020-05-25 05:15:12 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
{% block title %}<title>Houtmarkt</title>{% endblock %}
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Add additional CSS in static file -->
{% load static %}
<link rel="stylesheet" href="{% static 'css/styles.css' %}">
2020-05-26 14:14:38 +00:00
<style>
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
padding: 0.5em;
}
td:nth-child(3),
td:nth-child(2) {
text-align: right;
}
</style>
2020-05-25 05:15:12 +00:00
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-2">
</div>
<div class="col-sm-10 ">{% block content %}{% endblock %}</div>
</div>
</div>
</body>
</html>