Jaimodiji's picture
Upload folder using huggingface_hub
c001f24
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}DocuPDF{% endblock %}</title>
{% block styles %}{% endblock %}
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/tom-select@2.2.2/dist/css/tom-select.bootstrap5.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
/* Tom Select Dark Mode Fix */
.ts-control {
background-color: #2b3035 !important;
border-color: #495057 !important;
color: #fff !important;
}
.ts-control input {
color: #fff !important;
}
.ts-dropdown, .ts-dropdown .optgroup-header {
background-color: #2b3035 !important;
border-color: #495057 !important;
}
.ts-dropdown .option:hover, .ts-dropdown .active {
background-color: #0d6efd !important;
}
.ts-control .item {
background-color: #0d6efd !important;
color: #fff !important;
}
</style>
{% block head %}{% endblock %}
</head>
<body>
{% include '_navbar.html' %}
<div class="content-wrapper" style="min-height: calc(100vh - 56px); overflow-y: auto;">
{% block content %}{% endblock %}
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/tom-select@2.2.2/dist/js/tom-select.complete.min.js"></script>
{% block scripts %}{% endblock %}
</body>
</html>