21 lines
752 B
HTML
21 lines
752 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% load static %}
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="shortcut icon" href="{% static 'favicon.ico'%}" type="image/x-icon" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="{% static 'css/style.css' %}" />
|
|
<title>Bacaan</title>
|
|
</head>
|
|
|
|
<body>
|
|
{% include "navbar.html" %}
|
|
{% block content %}
|
|
{% comment %} sini content {% endcomment %}
|
|
{% endblock content %}
|
|
<script src="{% static 'js/script.js' %}"></script>
|
|
</body>
|
|
</html> |