summaryrefslogtreecommitdiff
path: root/web/kvm/window-about.pug
blob: cf23595b2c9f502e732ecc0903e3cefc7f8ba078 (plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
mixin about_tab(name, title, checked=false)
	- let button_id = `about-tab-${name}-button`
	input(checked=checked type="radio" name="about-tab-button", id=button_id)
	label(for=button_id) #{title}
	div(class="tab")
		div(id=`about-${name}` class="code")
			if block
				block
			else
				span(class="code-comment") No data

+window("about-window", "About", false)
	div(id="about")
		table
			tr
				td(valign="top" class="logo")
					img(class="svg-gray" src="../share/svg/logo.svg" alt="Pi-KVM" height="40")
				td(valign="top")
					table
						tr #[td(colspan="2" class="title") The Open Source IP-KVM]
						tr
							td(colspan="2" class="copyright")
								| Copyright © 2018 #[a(target="_blank" href="mailto:[email protected]") Maxim Devaev]
		br
		div(class="tabs-box")
			+about_tab("meta", "Meta", true)
			+about_tab("hw", "Hardware")
			+about_tab("version", "Version")

			+about_tab("thanks", "Thanks")
				span(class="code-comment")
					| // These kind people donated money to the Pi-KVM project#[br]
					| // and supported the work on it. We are very grateful#[br]
					| // for their help, and memorializing their names#[br]
					| // is the least we can do in gratitude.#[br]
					| // If you also want to support this project,#[br]
					| // you can use one of these services:
					| #[a(target="_blank" href="https://www.patreon.com/pikvm") Patreon]
					| or #[a(target="_blank" href="https://www.paypal.me/mdevaev") PayPal].
				ul
					li Alberto Bassi
					li Aleksei Brusianskii
					li Alucard
					li Andrzej V
					li Anton Kovalenko
					li Aron Perelman
					li Arthur Woimbée
					li Augusto Becciu
					li baddog
					li Bao Tin Hoang
					li Ben Gordon
					li Branden Shaulis
					li Brian White
					li Bruno Gomes
					li Bryan Adams
					li Carl Mercier
					li Christian Schlögl
					li Christof Maluck
					li Christoffer Lund
					li Corey Layton
					li Corey Lista
					li Clifford Coleman
					li Clinton Lee Taylor
					li Damon Meledones
					li David Howell
					li Denis Andreev
					li Denis Yatsenko
					li Dmitry Shilov
					li Eric Phenix
					li Fergus McKay
					li Foamy
					li Fredrik Idréus
					li Ge Men
					li Grey Cynic
					li Guido Bernacchi
					li Heikki Tiittanen
					li HimKo
					li Ivan Shapovalov
					li Jacob Morgan
					li James Cadd
					li Jan Niehusmann
					li Jari Hiltunen
					li Jason Toland
					li Jeff Bowman
					li Jennifer Rowlett
					li Joachim Bruening
					li John Kelley
					li John McGovern
					li Jonathan Vaughn
					li Jordi Pakey-Rodriguez
					li Josh Ricker
					li Jozef Riha
					li Justin Waters
					li Krzysztof Żelaśkiewicz
					li Lars
					li Lothar Schweikle-Droll
					li Lukas Söder
					li Malcolm Cameron
					li Mark Gilbert
					li Mark Robinson
					li Markus Schicker
					li Markus Sobczack
					li Martin Gasser
					li Mauricio Allende
					li Mehmet Aydoğdu
					li Michael Kovacs
					li Michael Lynch
					li Morgan Helton
					li Nicholas Jeppson
					li Nils Orbat
					li Nithin Philips
					li Nod Swal
					li nybble
					li pozitron03
					li Quentin Peten
					li Ranc1d
					li Robin Gfatter
					li Samed Ozoglu
					li Scott
					li Scott Spicola
					li Sergey Lukjanov
					li Stefan Bautz
					li Stefan Müller
					li Stefan Stemmer
					li Steve Ovens
					li Steven Richter
					li Tejun Heo
					li Truman Kilen
					li Tyler
					li Walter_Ego
					li YURI LEE
					li zgen
					li Zsombor Vari
		br
		p(class="text")
			| Full documentation, source code, hardware schematics and legal information
			| can be found in our #[a(target="_blank" href="https://pikvm.org") official website].