1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { fetchJSON } from "https://esm.town/v/stevekrouse/fetchJSON?v=41";
export async function TodayForAnnalisa(req: express.Request, res: express.Response) {
const { activity } = await fetchJSON(
"https://www.boredapi.com/api/activity",
);
return res.send(`
<html>
<head>
<title>Today for Annalisa 🥹</title>
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-width%3D%222%22%20
<meta name="description" content="Today for Annalisa 🥹" />
<meta name="description" content="Today for Annalisa 🥹" />
<meta name="author" content="Matt" />
<meta name="keywords" content="activity, recommendation, Annalisa" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Today for Annalisa 🥹" />
<meta property="og:description" content="Today for Annalisa 🥹" />
<meta property="og:image" content="https://picsum.photos/1200/630" />
<meta property="og:url" content="https://mttlws-todayforannalisa.express.val.run" />
<meta property="og:type" content="website" />
<meta property="twitter:title" content="Today for Annalisa 🥹" />
<meta property="twitter:description" content="Today for Annalisa 🥹" />
<meta property="twitter:image" content="https://picsum.photos/1200/630" />
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
flex-direction: column
}
p {
font-size: 2em;
text-align: center;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<p>
Hey Annalisa, today you should ${activity.toLowerCase()}.
</p>
<p>
Love, Matt ❤️
</p>
</body>
</html>
`);
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
mttlws-todayforannalisa.express.val.run
October 23, 2023