aboutsummaryrefslogtreecommitdiffstats
path: root/template.go
blob: 6fb116247a8fcb5e0b0842df09f8932b978d8140 (plain) (blame)
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
package gopherproxy

var tpltext = `<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{.Title}}</title>
<style>
* {
  font-family: Monospace;
}
</style>
</head>
<body>
<pre>
{{range .Lines}} {{if .Link}}({{.Type}}) <a class="{{ .Type }}" href="{{.Link}}">{{.Text}}</a>{{else}}      {{.Text}}{{end}}
{{end}}</pre>
<script src="https://code.jquery.com/jquery-3.1.0.slim.min.js" integrity="sha256-cRpWjoSOw5KcyIOaZNo4i6fZ9tKPhYYb6i5T9RSVJG8=" crossorigin="anonymous"></script>
<script type="text/javascript">
$(document).ready(function () {
  $(".QRY").click(function (e) {
    e.preventDefault();
    var query = prompt("Please enter required input: ", "");
    if (query != null) {
      window.location = e.target.href + "?" + query;
    }
  });
});
</script>
</body>
</html>`