web-backset.cn/apps/server/view/page/home/index.ejs

27 lines
653 B
Plaintext
Raw Normal View History

2023-02-11 13:21:06 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<%- include('../_layout/base') -%>
<title>home页面</title>
</head>
<body>
<p>home</p>
<a href="/signup">去 注册 页面</a>
<span>当前assets: <%= assets %></span>
<editable-list
title="TODO"
list-item-0="First item on the list"
list-item-1="Second item on the list"
list-item-2="Third item on the list"
list-item-3="Fourth item on the list"
list-item-4="Fifth item on the list"
listItem="This will not appear"
add-item-text="Add new list item:"
></editable-list>
2023-02-11 13:21:06 +08:00
<%- include('../_layout/footer') -%>
</body>
</html>