Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • tobiasff3200/django-core
1 result
Select Git revision
Loading items
Show changes
Commits on Source (2)
{% 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>
<body class="break-words hyphens-auto">
{% block content %}
{% endblock %}
</body>
......
{% 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">
<div class="drawer break-words hyphens-auto">
<input id="drawer" type="checkbox" class="drawer-toggle" />
<div class="drawer-content flex flex-col">
<!-- Navbar -->
......@@ -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 %}
......