Spaces:
Running
Running
File size: 3,407 Bytes
ce15103 ff0623b |
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 92 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Índice de Guías PROA (Datos)</title>
<style>
/* Estilos para las etiquetas pediátricas si se necesitaran aquí (aunque JS las busca) */
.pediatric-tag { display: none; } /* Oculto por defecto, JS lo puede leer */
</style>
</head>
<body>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5">
<a href="bacteremia_cateter.html" class="category-card">
<span class="category-text">Bacteremia Asociada a Catéter</span>
</a>
<a href="digestivo.html" class="category-card">
<span class="category-text">Digestivo</span>
</a>
<a href="digestivo_pediatrico.html" class="category-card">
<span class="category-text">Digestivo <span class="pediatric-tag">PED</span></span>
</a>
<a href="endocarditis_infecciosa.html" class="category-card">
<span class="category-text">Endocarditis Infecciosa</span>
</a>
<a href="embarazadas.html" class="category-card">
<span class="category-text">Embarazadas</span>
</a>
<a href="ginecologia.html" class="category-card">
<span class="category-text">Ginecología</span>
</a>
<a href="neutropenia.html" class="category-card">
<span class="category-text">Neutropenia Febril</span>
</a>
<a href="oftalmologia.html" class="category-card">
<span class="category-text">Oftalmología</span>
</a>
<a href="orl.html" class="category-card">
<span class="category-text">ORL</span>
</a>
<a href="orl_pediatrico.html" class="category-card">
<span class="category-text">ORL <span class="pediatric-tag">PED</span></span>
</a>
<a href="osteoarticular.html" class="category-card">
<span class="category-text">Osteoarticular</span>
</a>
<a href="osteoarticulares_pediatrico.html" class="category-card">
<span class="category-text">Osteoarticular <span class="pediatric-tag">PED</span></span>
</a>
<a href="piel_partes_blandas.html" class="category-card">
<span class="category-text">Piel y Partes Blandas</span>
</a>
<a href="respiratorio.html" class="category-card">
<span class="category-text">Respiratorio</span>
</a>
<a href="respiratorio_pediatrico.html" class="category-card">
<span class="category-text">Respiratorio <span class="pediatric-tag">PED</span></span>
</a>
<a href="sistema_nervioso_central_pediatrico.html" class="category-card">
<span class="category-text">Sistema Nervioso Central <span class="pediatric-tag">PED</span></span>
</a>
<a href="sindrome_febril_agudo_pediatrico.html" class="category-card">
<span class="category-text">Síndrome Febril Agudo sin Foco <span class="pediatric-tag">PED</span></span>
</a>
<a href="infecciones_tracto_urinario_adultos.html" class="category-card">
<span class="category-text">Urología (ITU Adultos)</span>
</a>
<a href="urologia_pediatrica.html" class="category-card">
<span class="category-text">Urología (ITU <span class="pediatric-tag">PED</span>)</span>
</a>
</div>
</body>
</html> |