fortune-as-a-service/app/templates/fortune.j2
2025-04-06 00:27:00 -05:00

16 lines
No EOL
542 B
Django/Jinja

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>fortune as a service</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<h1>fortune as a service</h1>
<p>
your fortune is: {{ fortune }}
</p>
<a href="/fortune">get a new fortune</a>
</body>