diff options
| author | Bobby <[email protected]> | 2024-08-24 21:13:22 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-08-24 21:13:22 -0400 |
| commit | f1080d42a297d75c6f7806049f83c6ac2ae3e7d6 (patch) | |
| tree | de6a4813c348ca6514ea8a5cc258b02ca3a12a3e /templates/partials | |
| parent | 95899e58cc86c774ee7b3d1ec53a2a88ee24cd27 (diff) | |
| download | yugen-f1080d42a297d75c6f7806049f83c6ac2ae3e7d6.tar.xz yugen-f1080d42a297d75c6f7806049f83c6ac2ae3e7d6.zip | |
discord auth
Diffstat (limited to 'templates/partials')
| -rw-r--r-- | templates/partials/base.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/partials/base.html b/templates/partials/base.html new file mode 100644 index 0000000..14e9c44 --- /dev/null +++ b/templates/partials/base.html @@ -0,0 +1,14 @@ +{% load static %} +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <link rel="icon" href="{% static 'icons/favicon.ico' %}" /> + <title>Yugen</title> + </head> + <body> + <main>{% block content %} {% endblock %}</main> + </body> +</html> |
