Skip to content

Commit

Permalink
fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ketankshukla committed Sep 11, 2024
1 parent 7847946 commit accdbc7
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions newapp/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,26 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" /
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>
{% block title %}My New Project{% endblock %}
</title>
<!-- Load specific CSS files -->
<link rel="stylesheet" href="{% static 'css/header.css' %}" />
<link rel="stylesheet" href="{% static 'css/main.css' %}" />
<link rel="stylesheet" href="{% static 'css/footer.css' %}" />
</head>
<body>
<header>
{% include 'partials/header.html' %}
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer>
{% include 'partials/footer.html' %}
</footer>
</body>
</html>
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>
{% block title %}My New Project{% endblock %}
</title>
<!-- Load specific CSS files -->
<link rel="stylesheet" href="{% static 'css/header.css' %}" />
<link rel="stylesheet" href="{% static 'css/main.css' %}" />
<link rel="stylesheet" href="{% static 'css/footer.css' %}" />
</head>
<body>
<header>
{% include 'partials/header.html' %}
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer>
{% include 'partials/footer.html' %}
</footer>
</body>
</html>

0 comments on commit accdbc7

Please sign in to comment.