base.html (459B)
1 {# base.html #} 2 <!DOCTYPE html> 3 <html lang="en"> 4 <head> 5 <title>{% block title %}{% endblock %}</title> 6 <meta charset="UTF-8"> 7 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 8 <link rel="stylesheet" href="stylesheet.css"> 9 <link rel="icon" type="image/png" href="data:image/png;base64,"> 10 </head> 11 <body> 12 {% block content %} 13 {% endblock %} 14 </body> 15 </html>