File size: 4,988 Bytes
53873ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Archive | IA Hospital Hub</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
    <link rel="stylesheet" href="/assets/css/main.css">
</head>
<body class="bg-gradient-to-br from-gray-900 to-gray-800 text-white min-h-screen" data-language="es">
    <!-- Include shared nav -->
    <include src="/templates/nav.html"></include>

    <main class="container mx-auto px-4 py-8">
        <div class="flex items-center mb-8">
            <a href="/papers.html" class="text-blue-400 hover:text-blue-300 mr-4">
                <i class="fas fa-arrow-left"></i>
                <span lang="es">Volver a Papers</span>
                <span lang="en">Back to Papers</span>
            </a>
            <h1 class="text-4xl font-bold text-blue-400">
                <span lang="es">Archivo</span>
                <span lang="en">Archive</span>
            </h1>
        </div>

        <div class="space-y-8">
            <section>
                <h2 class="text-2xl font-bold mb-4 text-blue-300">
                    <span lang="es">Papers de Investigación</span>
                    <span lang="en">Research Papers</span>
                </h2>
                <div class="grid gap-4">
                    <a href="papers/research/fermed-vlm-paper-v3_archived.html" class="block bg-gray-800 bg-opacity-50 p-4 rounded-lg hover:bg-opacity-70 transition-all">
                        <h3 class="font-semibold text-blue-400">FERMED VLM Paper v3</h3>
                        <p class="text-gray-400 text-sm">Version 3 of the FERMED VLM research paper</p>
                    </a>
                    <a href="papers/research/fermed-vlm-paper-v2_archived.html" class="block bg-gray-800 bg-opacity-50 p-4 rounded-lg hover:bg-opacity-70 transition-all">
                        <h3 class="font-semibold text-blue-400">FERMED VLM Paper v2</h3>
                        <p class="text-gray-400 text-sm">Version 2 of the FERMED VLM research paper</p>
                    </a>
                    <a href="papers/research/fermed-vlm-paper_archived.html" class="block bg-gray-800 bg-opacity-50 p-4 rounded-lg hover:bg-opacity-70 transition-all">
                        <h3 class="font-semibold text-blue-400">FERMED VLM Paper v1</h3>
                        <p class="text-gray-400 text-sm">Initial version of the FERMED VLM research paper</p>
                    </a>
                </div>
            </section>

            <section>
                <h2 class="text-2xl font-bold mb-4 text-blue-300">
                    <span lang="es">Borradores</span>
                    <span lang="en">Drafts</span>
                </h2>
                <div class="grid gap-4">
                    <a href="papers/drafts/fermed-vlm-draft-2_archived.html" class="block bg-gray-800 bg-opacity-50 p-4 rounded-lg hover:bg-opacity-70 transition-all">
                        <h3 class="font-semibold text-blue-400">FERMED VLM Draft 2</h3>
                        <p class="text-gray-400 text-sm">Second draft of the FERMED VLM paper</p>
                    </a>
                    <a href="papers/drafts/fermed-vlm-draft-1_archived.html" class="block bg-gray-800 bg-opacity-50 p-4 rounded-lg hover:bg-opacity-70 transition-all">
                        <h3 class="font-semibold text-blue-400">FERMED VLM Draft 1</h3>
                        <p class="text-gray-400 text-sm">First draft of the FERMED VLM paper</p>
                    </a>
                </div>
            </section>

            <section>
                <h2 class="text-2xl font-bold mb-4 text-blue-300">
                    <span lang="es">Otros Documentos</span>
                    <span lang="en">Other Documents</span>
                </h2>
                <div class="grid gap-4">
                    <a href="papers/root/paper copy.html" class="block bg-gray-800 bg-opacity-50 p-4 rounded-lg hover:bg-opacity-70 transition-all">
                        <h3 class="font-semibold text-blue-400">Previous Paper Version</h3>
                        <p class="text-gray-400 text-sm">Earlier version of the paper</p>
                    </a>
                    <a href="papers/root/paper copy 2.html" class="block bg-gray-800 bg-opacity-50 p-4 rounded-lg hover:bg-opacity-70 transition-all">
                        <h3 class="font-semibold text-blue-400">Previous Paper Version 2</h3>
                        <p class="text-gray-400 text-sm">Earlier version of the paper</p>
                    </a>
                </div>
            </section>
        </div>
    </main>

    <!-- Include shared footer -->
    <include src="/templates/footer.html"></include>

    <script src="/assets/js/main.js"></script>
</body>
</html>