comparison src/instagram.html.luan @ 0:8f4df159f06b

start public repo
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 11 Jul 2025 20:57:49 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:8f4df159f06b
1 local Luan = require "luan:Luan.luan"
2 local error = Luan.error
3 local Io = require "luan:Io.luan"
4 local Http = require "luan:http/Http.luan"
5 local Shared = require "site:/lib/Shared.luan"
6 local head = Shared.head or error()
7
8
9 return function()
10 Io.stdout = Http.response.text_writer()
11 %>
12 <!doctype html>
13 <html lang="en">
14 <head>
15 <% head() %>
16 <script>
17 setTimeout(function(){
18 location = 'https://www.instagram.com/linkmy.style/';
19 },1000);
20 </script>
21 </head>
22 <body>
23 </body>
24 </html>
25 <%
26 end