You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
669 B
24 lines
669 B
extends @/layout/layout
|
|
|
|
block var
|
|
-title="首页" // 网页标题
|
|
//- -hideHeader=true
|
|
|
|
block head
|
|
|
|
block content
|
|
section.section
|
|
.container
|
|
h1.title
|
|
| Hello World
|
|
p.subtitle
|
|
| My first website with
|
|
strong Bulma
|
|
| !
|
|
if isLogin
|
|
button(hx-get="/htmx/clicked" hx-push-url="/about" hx-trigger="click" hx-target="this" hx-swap="outerHTML") Click Me!
|
|
<form action="/api/v1/upload/upload" method="post" enctype="multipart/form-data">
|
|
<input type="file" name="file" id="file" multiple />
|
|
+security
|
|
<button type="submit" id="upload">上传</button>
|
|
</form>
|
|
|