summaryrefslogtreecommitdiffstats
path: root/src/hp.php
blob: cffa4699b29af4518caa953a0175317d9e3366eb (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang=sl>
	<!-- this file is a printf format. be sure to escape percent signs with percent percent. -->
	<!-- this format requires the following types (in order): html title (query string), search box contents (query string), additional form elements, textual title (result info string), textual body (results html string) --> 
	<head>
		<meta charset=UTF-8 />
		<title>
			%s :: sear.c
		</title>
		<meta name=viewport content="width=device-width, initial-scale=1.0">
		<style>
			<?php
				echo file_get_contents("tmp/hp.css");
			?>
		</style>
		<link rel="shortcut icon" href=data:image/x-icon;, type=image/x-icon> <!-- prevents favicon lookups -->
		<link rel=icon href="data:;base64,iVBORw0KGgo=">
		<link title=sear.c rel=search type=application/opensearchdescription+xml href=/osdd.xml>
		<style>
			input[type=password], input[type=text], input[type=submit], input[type=button] {
				height: 1cm;
				font-size: large;
			}
			.result:hover {
				background: var(--bgc2);
			}
			.container {
				display: flex;
				flex-direction: row;
				flex-wrap: nowrap;
				justify-content: center;
				align-items: stretch;
			}
			input[name=q] {
				flex-grow: 4;
			}
			input[type=submit] {
				flex-basis: 12.5%%;
			}
			.SC_LOG_ERROR {
				color: red;
			}
			.SC_LOG_WARNING {
				color: orange;
			}
			.SC_LOG_INFO {
				color: lightgreen;
			}
			.SC_LOG_DEBUG {
				color: magenta;
			}
			.breadcrumb {
				color: var(--fgc2);
				font-size: small; /* small is relative to parent (h4) size */
			}
			.result h4 {
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
				margin-bottom: 0.314159265358em;
			}
			.result p {
				margin-top: 0.314159265358em;
			}
			.result img {
				height: 10em;
			}
		</style>
	</head>
	<body>
		<form class=container action=.>
			<input accesskey=s type=text name=q value="%s" placeholder="sear.c ..." />
			<input type=submit value=🔍 /> <!-- magnifying glass emoji -->
			<input accesskey=f type=submit name=f value=Ʊ /> <!-- horseshoe unicode character -->
			<input accesskey=i type=submit name=i value=🖼 /> <!-- framed picture emoji - img search -->
			<!-- <input type=submit name=v value=🎬/> --> <!-- that thing they use in movies - vid search N/I -->
			%s
		</form>
		<h3>
			%s
		</h3>
		%s
		<hr>
		<h4 align=center>
			<a href=//git.sijanec.eu/sijanec/sear.c >sear.c</a>
			<?php
				echo `git describe --always`;
			?>
		</h4>
	</body>
</html>