web-backset.cn/apps/server/view/page/home/index.ejs
2023-02-17 17:59:41 +08:00

27 lines
653 B
Plaintext

<!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>
<%- include('../_layout/footer') -%>
</body>
</html>