Edit core/templates/base.html via Editor

This commit is contained in:
admin 2025-11-24 13:36:26 +00:00
parent bf364bd9a3
commit 2c76b3f0b2

View File

@ -1,25 +1,39 @@
{% load static %}
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>{% block title %}Knowledge Base{% endblock %}</title> <meta http-equiv="X-UA-Compatible" content="IE=edge">
{% if project_description %} <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ project_description }}">
<meta property="og:description" content="{{ project_description }}"> {% if project_description %}
<meta property="twitter:description" content="{{ project_description }}"> <meta name="description" content="{{ project_description }}">
{% endif %} <meta property="og:description" content="{{ project_description }}">
{% if project_image_url %} <meta property="twitter:description" content="{{ project_description }}">
<meta property="og:image" content="{{ project_image_url }}"> {% endif %}
<meta property="twitter:image" content="{{ project_image_url }}"> {% if project_image_url %}
{% endif %} <meta property="og:image" content="{{ project_image_url }}">
{% load static %} <meta property="twitter:image" content="{{ project_image_url }}">
<link rel="stylesheet" href="{% static 'css/custom.css' %}"> {% endif %}
{% block head %}{% endblock %}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="{% static 'css/custom.css' %}?v=1.1">
<title>{% block title %}Inventory Dashboard!!!{% endblock %}</title>
{% block head %}{% endblock %}
</head> </head>
<body> <body>
{% block content %}{% endblock %} {% block content %}{% endblock %}
</body> </body>
</html> </html>