-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.html.tmpl
34 lines (34 loc) · 1.33 KB
/
result.html.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>検索結果 - kdb2</title>
<style>
#copyright {
font-size: small;
}
</style>
</head>
<body>
<main>
<h1>kdb2 search</h1>
<form action="/result">
<input type="text" name="q" id="" />
<button type="submit">検索</button>
</form>
{{ range .}}
<section>
<h2>{{.Source.CourseID}}: {{.Source.Title}}</h2>
<p>{{.Source.Summary}}</p>
<a href="https://kdb.tsukuba.ac.jp/syllabi/2023/{{.Source.CourseID}}/jpn/">KdB</a>
<a href="https://www.aplus-tsukuba.net/threads/codes/{{.Source.CourseID}}">A+つくば</a>
</section>
{{ end }}
</main>
<footer>
<p>このサービス、ソフトウェアは筑波大学が提供、開発、関与するサービスではありません。</p>
<p id="copyright">このソフトウェアはMIT Licenseで<a href="https://github.com/until-tsukuba/kdb2-server/blob/trunk/LICENSE">ライセンス</a>されており、かつ誰でも開発に参加できます。ソースコードは<a href="https://github.com/until-tsukuba/kdb2-server">GitHub</a>から入手できます。</p>
</footer>
</body>
</html>