This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
logtracker/logtracker/journal/templates/base.html

14 lines
253 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block title %}Logtracker{% endblock %}</title>
<style>td {white-space: nowrap}</style>
</head>
<body>
<div id="content">
{% block content %}{% endblock %}
</div>
</body>
</html>