diff --git a/templates/base-clear.html b/templates/base-clear.html
index 944a75479a103873090f564c27474611a6dec1ba..0595e6c92e4ae58ea92826606d65e067b7e85597 100644
--- a/templates/base-clear.html
+++ b/templates/base-clear.html
@@ -1,14 +1,14 @@
 {% load static %}
 <!DOCTYPE html>
-<html>
+<html lang="de">
 <head>
-    <meta charset="utf-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>{% block title %}Core{% endblock %}</title>
-    <link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css">
-    {#    <meta http-equiv="refresh" content="10">#}
+	<meta charset="utf-8">
+	<meta name="viewport" content="width=device-width, initial-scale=1.0">
+	<title>{% block title %}Core{% endblock %}</title>
+	<link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css">
+	{% block head %}{% endblock %}
 </head>
-<body>
+<body class="break-words hyphens-auto">
 {% block content %}
 {% endblock %}
 </body>
diff --git a/templates/base.html b/templates/base.html
index 394d9277082d8909538ffdcf8930d59f0c6965f3..a1f50eebc1bacda6944ebf0e16b2ecb3137f4de8 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -1,17 +1,16 @@
 {% load static %}
 <!DOCTYPE html>
-<html>
+<html lang="de">
 <head>
 	<meta charset="utf-8">
 	<meta name="viewport" content="width=device-width, initial-scale=1.0">
 	<title>{% block title %}Core{% endblock %}</title>
 	<link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css">
-	{#<meta http-equiv="refresh" content="10">#}
 	{% block head %}{% endblock %}
 </head>
 <body>
-<div class="drawer">
-	<input id="drawer" type="checkbox" class="drawer-toggle"/>
+<div class="drawer break-words hyphens-auto">
+	<input id="drawer" type="checkbox" class="drawer-toggle" />
 	<div class="drawer-content flex flex-col">
 		<!-- Navbar -->
 		<div class="navbar w-full bg-neutral rounded-box" data-theme="dark">
@@ -51,7 +50,7 @@
 				{% block account_picture %}
 					<label tabindex="0" class="btn btn-ghost btn-circle avatar">
 						<div class="w-10 rounded-full">
-							<img src="https://placeimg.com/80/80/people"/>
+							<img src="https://placeimg.com/80/80/people" />
 						</div>
 					</label>
 				{% endblock %}
@@ -69,7 +68,7 @@
 			</div>
 		</div>
 		<!-- Page content here -->
-		<main class="p-4 w-full">
+		<main class="p-4 w-full break-words hyphens-auto">
 			{% block content %}
 				Content
 			{% endblock %}