generated from ElnuDev/go-project
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.
32 lines
1.0 KiB
32 lines
1.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ with .Query }}{{ . }} search - {{ end }}jidict</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/missing.css@1.0.9/dist/missing.min.css">
|
|
<style>
|
|
li {
|
|
margin-top: 0.75em;
|
|
}
|
|
</style>
|
|
<script src="https://unpkg.com/htmx.org@1.9.3"></script>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<a href="/">
|
|
<img src="https://jichan.org/logo.svg" style="height: 4em; display: block; margin: 1em auto 1em auto">
|
|
</a>
|
|
<form
|
|
hx-get="/search"
|
|
hx-replace-url="true"
|
|
hx-target="#results">
|
|
<input type="text" name="q"{{ with .Query }} value="{{ . }}"{{ end }} placeholder="辞書をサーチする" class="width:100%" autocomplete="false">
|
|
</form>
|
|
<div id="results">
|
|
{{ if .Count }}{{ template "search" . }}{{ end }}
|
|
</div>
|
|
<br>
|
|
</main>
|
|
</body>
|
|
</html> |