Commit a1145b8b authored by Ysabella Panghulan's avatar Ysabella Panghulan

edited base.html

parent 13b1a0fc
<!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>{% block title %} {% endblock %}</title>
{% load static %}
<link rel="stylesheet" href="{% static 'stylesheets/base.css' %}" type="text/css">
{% block stylesheets %}{% endblock %}
</head>
<body>
<div class="container">
<header>
{% block header %}
{% endblock %}
</header>
<main>
{% block body %}
{% block content %}
{% endblock %}
{% endblock %}
</main>
</div>
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment