This commit is contained in:
Luiz Otávio
2023-04-17 08:29:26 -03:00
parent 476988f861
commit 33b24dfe03
5 changed files with 21 additions and 36 deletions

View File

@@ -1,12 +1,6 @@
<!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" />
<title>Document</title>
</head>
<body>
<h1>{% block texto %} BASE {% endblock texto %}</h1>
</body>
{% include 'global/partials/head.html' %}
<h1>{% block texto %}{% endblock texto %}</h1>
</body>
</html>

View File

@@ -0,0 +1,9 @@
<!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" />
<title>Document</title>
</head>
<body>

View File

@@ -1,12 +1,3 @@
<!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">
<title>Document</title>
</head>
<body>
<h1>EXEMPLO 2</h1>
</body>
</html>
{% extends 'global/base.html' %}
{% block texto %} Exemplo {% endblock texto %}

View File

@@ -1,12 +1,3 @@
<!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">
<title>Document</title>
</head>
<body>
<h1>BLOG 2</h1>
</body>
</html>
{% extends 'global/base.html' %}
{% block texto %} Blog {% endblock texto %}

View File

@@ -1,3 +1,3 @@
{% extends 'global/base.html' %}
{% block texto %} MUDAR O TEXTO {% endblock texto %}
{% block texto %} MUDAR O TEXTO {% endblock texto %}