htmxapp / templates /layout.html
rahuketu86's picture
Fixed ContactErrors state issue during new and edit
c8daf53
raw
history blame contribute delete
564 Bytes
<!doctype html>
<html>
<head>
<title>Contact.App</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
<link rel="stylesheet" href="/static/css/site.css">
<script src="https://unpkg.com/htmx.org@2.0.1"></script>
</head>
<body hx-boost="true">
<main class="container">
<h1> CONTACTS.APP</h1>
<h2> A demo contact application </h2>
<hr>
{% block content %}
{% endblock %}
</main>
</body>
</html>