Files
51l3nt51n-blog/templates/base.html

28 lines
478 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}CMS{% endblock %}</title>
<style>
* {
font-family: monospace !important;
}
body {
max-width: 780px;
}
img {
max-width: 100%;
}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000EE" vlink="#551A8B" alink="#FF0000">
{% block content %}{% endblock %}
</body>
</html>