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

49 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-02-11 13:21:06 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<%- include('../_layout/base') -%>
2023-02-21 17:58:09 +08:00
<%- include('../_layout/styles') -%>
2023-02-11 13:21:06 +08:00
<title>home页面</title>
</head>
<body>
<p>home</p>
<a href="/signup">去 注册 页面</a>
2023-02-21 17:58:09 +08:00
<p class="muted">
Placeholder text to demonstrate some
<a href="#" data-bs-toggle="tooltip" data-bs-title="Default tooltip"
>inline links</a
>
with tooltips. This is now just filler, no killer. Content placed here
just to mimic the presence of
<a href="#" data-bs-toggle="tooltip" data-bs-title="Another tooltip"
>real text</a
>. And all that just to give you an idea of how tooltips would look when
used in real-world situations. So hopefully you've now seen how
<a href="#" data-bs-toggle="tooltip" data-bs-title="Another one here too"
>these tooltips on links</a
>
can work in practice, once you use them on
<a href="#" data-bs-toggle="tooltip" data-bs-title="The last tip!"
>your own</a
>
site or project.
</p>
2023-02-11 13:21:06 +08:00
<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
2023-02-21 17:58:09 +08:00
<%- include('../_layout/footer') -%> <%- include('../_layout/scripts') -%>
2023-02-11 13:21:06 +08:00
</body>
</html>