46 lines
1.5 KiB
HTML
46 lines
1.5 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="public-layout">
|
|
<header class="public-header">
|
|
<div class="logo">
|
|
<h2>webFirma</h2>
|
|
</div>
|
|
<div class="public-actions">
|
|
<a href="{% url 'login' %}" class="btn">Login</a>
|
|
<a href="{% url 'register' %}" class="btn btn-primary">Register</a>
|
|
</div>
|
|
</header>
|
|
<main class="public-content">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|