hbnet/scripts/dashboard/templates/about.html

21 lines
299 B
HTML
Raw Normal View History

2021-01-01 17:35:15 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{title}}</title>
<style>
body {background-color: D3D3D3;}
h1 {color: green;}
p {
padding: 10px;
margin: 20px;
}
</style>
</head>
<body>
2021-01-02 17:58:38 -05:00
{% include 'header.html' %}
2021-01-01 18:10:12 -05:00
{{description}}
2021-01-02 17:58:38 -05:00
{% include 'footer.html' %}
2021-01-01 18:10:12 -05:00