Files
blog/www/now.html
Daniel Cortes 47df38c768 Cambiado de laravel a flask
Todo es mas simple~
2020-05-22 01:57:45 -04:00

28 lines
838 B
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<title>Daniel Cortés</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width-device-width, initial-scale=1">
<meta name="author" content="Daniel Cortés">
<link rel="stylesheet" href="/assets/style.css" type="text/css">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
</head>
<body>
<div class="container">
<h1>Now</h1>
<p>(En Construccion!)</p>
</div>
<script>
function makeImagesClickeable() {
document.querySelectorAll("img").forEach(img => {
img.addEventListener("click", e => window.open(e.target.src))
});
}
window.addEventListener('DOMContentLoaded', (event) => {
makeImagesClickeable();
});
</script>
</body>
</html>