Django_Basic_Manufacturing_3/templates/base.html
2025-08-22 17:05:22 +07:00

50 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Manufacturing App{% endblock %}</title>
<!-- Bootstrap CSS -->
{% load django_bootstrap5 %}
{% bootstrap_css %}
{% bootstrap_javascript %}
<!-- Custom CSS -->
{% load static %}
<link rel="stylesheet" href="{% static 'css/custom.css' %}">
{% block extra_css %}{% endblock %}
</head>
<body>
<!-- Navigation Bar -->
{% include 'includes/navbar.html' %}
<div class="container-fluid">
<div class="row">
<!-- Sidebar -->
{% include 'includes/sidebar.html' %}
<!-- Main Content -->
<main class="col-md-9 ms-sm-auto col-lg-10 px-md-4">
<!-- Breadcrumb -->
{% comment %} {% include 'includes/breadcrumb.html' %} {% endcomment %}
<!-- Messages -->
{% include 'includes/messages.html' %}
<!-- Page Content -->
{% block content %}
{% endblock %}
</main>
</div>
</div>
<!-- Footer -->
{% include 'includes/footer.html' %}
<!-- Scripts -->
<script src="{% static 'js/custom.js' %}"></script>
{% block extra_js %}{% endblock %}
</body>
</html>