Primer Commit. Este codigo fue escrito en el año 2022

This commit is contained in:
2025-12-09 11:31:20 -05:00
commit 294e96fc74
104 changed files with 73771 additions and 0 deletions

22
js/actualizar.js Executable file
View File

@@ -0,0 +1,22 @@
import { carga, recarga } from "./lib/sys.js"
var entradas
carga()
.then(resp => {
entradas = resp
init()
})
function init(){
let titulo_b = document.createTextNode(entradas[0][0].sitio)
titulo_blog.appendChild(titulo_b)
//descripcion del blog
let descripcion_b = document.createTextNode(entradas[0][0].descripcion)
descripcion_blog.appendChild(descripcion_b)
}
actualizar_local.addEventListener("mousedown",e=>{
recarga()
window.location.href="/"
})