Skip to content
Snippets Groups Projects
Commit 4842ce8d authored by Tobias Mieves's avatar Tobias Mieves :sparkles:
Browse files

Merge branch 'develop' into 'main'

Add word-break and hyphens-auto to better deal with text

See merge request !26
parents ba624a39 65908df2
No related branches found
No related tags found
1 merge request!26Add word-break and hyphens-auto to better deal with text
Pipeline #206647 passed
{% load static %} {% load static %}
<!DOCTYPE html> <!DOCTYPE html>
<html> <html lang="de">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Core{% endblock %}</title> <title>{% block title %}Core{% endblock %}</title>
<link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css"> <link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css">
{# <meta http-equiv="refresh" content="10">#} {% block head %}{% endblock %}
</head> </head>
<body> <body class="break-words hyphens-auto">
{% block content %} {% block content %}
{% endblock %} {% endblock %}
</body> </body>
......
{% load static %} {% load static %}
<!DOCTYPE html> <!DOCTYPE html>
<html> <html lang="de">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Core{% endblock %}</title> <title>{% block title %}Core{% endblock %}</title>
<link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css"> <link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css">
{#<meta http-equiv="refresh" content="10">#}
{% block head %}{% endblock %} {% block head %}{% endblock %}
</head> </head>
<body> <body>
<div class="drawer"> <div class="drawer break-words hyphens-auto">
<input id="drawer" type="checkbox" class="drawer-toggle" /> <input id="drawer" type="checkbox" class="drawer-toggle" />
<div class="drawer-content flex flex-col"> <div class="drawer-content flex flex-col">
<!-- Navbar --> <!-- Navbar -->
...@@ -69,7 +68,7 @@ ...@@ -69,7 +68,7 @@
</div> </div>
</div> </div>
<!-- Page content here --> <!-- Page content here -->
<main class="p-4 w-full"> <main class="p-4 w-full break-words hyphens-auto">
{% block content %} {% block content %}
Content Content
{% endblock %} {% endblock %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment