diff --git a/index.html b/index.html
index 2fc77f7..0097877 100755
--- a/index.html
+++ b/index.html
@@ -107,11 +107,24 @@
Felipe Moreira
const container = document.getElementById("links-container");
arquivos.forEach(arquivo => {
- const caminhoArquivo = `${pasta}CV_FelipeMoreira${arquivo.sufixo}`;
- const link = document.createElement("a");
- link.href = caminhoArquivo;
- link.innerHTML = ``;
- container.appendChild(link);
+ fetch(pasta)
+ .then(response => response.text())
+ .then(data => {
+ // Usando uma expressão regular para encontrar o arquivo com o sufixo correspondente
+ const regex = new RegExp(`href="([^"]*${arquivo.sufixo})"`, "i");
+ const match = data.match(regex);
+
+ if (match && match[1]) {
+ const caminhoArquivo = match[1];
+ const link = document.createElement("a");
+ link.href = caminhoArquivo;
+ link.innerHTML = ``;
+ container.appendChild(link);
+ } else {
+ console.warn(`Arquivo com sufixo ${arquivo.sufixo} não encontrado.`);
+ }
+ })
+ .catch(error => console.error("Erro ao carregar os arquivos:", error));
});
}