feedless/app/views/index.ejs

21 lines
475 B
Plaintext
Raw Normal View History

2020-04-04 15:32:27 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Social</title>
</head>
<body>
<form action="publish" method="POST">
<textarea name="message"></textarea>
<input type="submit" value="Send" />
</form>
2020-04-04 16:01:11 +02:00
<p>
Whoami: <%= profile.id %>
</p>
<% posts.map(post => { %>
<div><%= post.text %></div>
<% }) %>
2020-04-04 15:32:27 +02:00
</body>
</html>