File size: 2,097 Bytes
4cf63e7 46085b3 4cf63e7 46085b3 4cf63e7 46085b3 4cf63e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Dataset Papers on ArXiv{% endblock %}</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- HTMX -->
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
<!-- Alpine.js (for expand/collapse) -->
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
<style>
/* Alpine.js cloak (hide until loaded) */
[x-cloak] { display: none !important; }
/* Loading indicator - subtle */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator { display: inline; }
/* Content fades during load */
.htmx-request #paper-list { opacity: 0.5; transition: opacity 0.15s; }
</style>
</head>
<body class="bg-white min-h-screen text-gray-900">
<header class="border-b border-gray-200">
<div class="max-w-3xl mx-auto px-4 py-6">
<h1 class="text-xl font-semibold">Dataset Papers on ArXiv</h1>
<p class="text-sm text-gray-500 mt-1">CS papers predicted to introduce new ML datasets by <a href="https://huggingface.co/davanstrien/ModernBERT-base-is-new-arxiv-dataset" class="inline-flex items-center gap-1 text-gray-700 hover:text-blue-600 font-medium">this model <span class="text-base">🤗</span></a></p>
</div>
</header>
<main class="max-w-3xl mx-auto px-4 py-6">
{% block content %}{% endblock %}
</main>
<footer class="border-t border-gray-100 mt-12">
<div class="max-w-3xl mx-auto px-4 py-4 text-gray-400 text-xs">
<a href="https://huggingface.co/datasets/librarian-bots/arxiv-cs-papers-lance" class="hover:text-gray-600">Data source</a>
<span class="mx-2">·</span>
<a href="https://huggingface.co/davanstrien/ModernBERT-base-is-new-arxiv-dataset" class="hover:text-gray-600">Model</a>
</div>
</footer>
</body>
</html>
|