gopherproxy/template.go

32 lines
783 B
Go
Raw Normal View History

2016-09-22 02:51:46 +00:00
package main
var tpltext = `<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{.Title}}</title>
<style>
* {
font-family: Monospace;
}
</style>
2016-09-22 02:51:46 +00:00
</head>
<body>
<pre>
2016-09-22 14:02:59 +00:00
{{range .Lines}} {{if .Link}}({{.Type}}) <a class="{{ .Type }}" href="{{.Link}}">{{.Text}}</a>{{else}} {{.Text}}{{end}}
2016-09-22 02:51:46 +00:00
{{end}}</pre>
2016-09-22 14:02:59 +00:00
<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 + "%09" + query;
}
});
});
</script>
2016-09-22 02:51:46 +00:00
</body>
</html>`