51 lines
1.7 KiB
HTML
51 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}webFirma{% endblock %}</title>
|
|
{% if project_description %}
|
|
<meta name="description" content="{{ project_description }}">
|
|
<meta property="og:description" content="{{ project_description }}">
|
|
<meta property="twitter:description" content="{{ project_description }}">
|
|
{% endif %}
|
|
{% if project_image_url %}
|
|
<meta property="og:image" content="{{ project_image_url }}">
|
|
<meta property="twitter:image" content="{{ project_image_url }}">
|
|
{% endif %}
|
|
{% load static %}
|
|
<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&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{% static 'css/custom.css' %}?v={{ deployment_timestamp }}">
|
|
<script src="https://unpkg.com/feather-icons"></script>
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="app-layout">
|
|
<div class="sidebar">
|
|
<div class="sidebar-header">
|
|
<h2>webFirma</h2>
|
|
</div>
|
|
<nav class="sidebar-nav">
|
|
<ul>
|
|
<li class="active"><a href="#"><i data-feather="home"></i> Dashboard</a></li>
|
|
<li><a href="#"><i data-feather="briefcase"></i> Projects</a></li>
|
|
<li><a href="#"><i data-feather="file-text"></i> Invoices</a></li>
|
|
<li><a href="#"><i data-feather="users"></i> Clients</a></li>
|
|
<li><a href="#"><i data-feather="settings"></i> Settings</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
<div class="main-content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|