<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{% block title %}{{ title }} - What 2 Watch{% endblock %}</title> <link rel="stylesheet" href="/assets/ww.css"> {% block head %}{% endblock %} </head> <body> <div id="header"> {% block header %}{% include "header_with_user.html" %}{% endblock %} </div> <div id="content"> <hr /> {% block content %}{% endblock %} </div> <div id="footer"> {% block footer %}{% endblock %} </div> <script src="/assets/htmx.min.js"></script> </body> </html>