0
|
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
|