init
This commit is contained in:
25
src/templates/person.ejs
Normal file
25
src/templates/person.ejs
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="stylesheet" href="/bootstrap.min.css" />
|
||||
<script src="/bootstrap.bundle.min.css"></script>
|
||||
<title>Person <%= person.name %></title>
|
||||
</head>
|
||||
|
||||
<body data-bs-theme="dark">
|
||||
<a href="/">Index</a>
|
||||
<a href="/gamble">gamble</a>
|
||||
<p>
|
||||
Name: <%= person.name %>
|
||||
</p>
|
||||
<p>
|
||||
Id: <%= person.id %>
|
||||
</p>
|
||||
<p>
|
||||
secret: <%= person.secret %>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user