-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (97 loc) · 2.42 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simple AUR Helper (SAH) and Pacman wrapper</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<style>
body {
background: #e2e2e2;
font-family: 'Open Sans', sans-serif;
}
a {
text-decoration: none;
}
.links {
margin: 3ex auto;
width: 33%;
}
.latest {
border: 0px solid black;
height: 50px;
padding-top: 20px;
text-align: center;
background: #14ba40;
border-radius: 10px;
font-weight: bold;
color: White;
text-transform: uppercase;
}
.issue {
border: 0px solid black;
height: 50px;
padding-top: 20px;
text-align: center;
background: #f23737;
border-radius: 10px;
font-weight: bold;
color: White;
text-transform: uppercase;
}
.aur {
border: 0px solid black;
height: 50px;
padding-top: 20px;
text-align: center;
background: #3ad;
border-radius: 10px;
font-weight: bold;
color: White;
text-transform: uppercase;
}
.install {
border: 1px solid black;
width: 400px;
padding: 15px;
margin: 3ex auto;
background: #cccccc;
}
.terminal {
background: Black;
color: Green;
width: 600px;
height: 300px;
margin: 3ex auto;
}
</style>
</head>
<body>
<h1 align="center">Simple AUR Helper (SAH) and Pacman wrapper</h1>
<div class="links">
<a href="https://github.com/zurg3/sah/releases/tag/v0.9.4">
<div class="latest">Latest version</div>
</a>
<br>
<a href="https://github.com/zurg3/sah/issues/new">
<div class="issue">Report an issue</div>
</a>
<br>
<a href="https://aur.archlinux.org">
<div class="aur">AUR Packages</div>
</a>
</div>
<h3 align="center">Installation</h3>
<div class="install">
$ git clone https://github.com/zurg3/sah.git<br>
$ cd sah<br>
$ makepkg -si<br>
$ cd ..<br>
$ rm -rf sah<br>
</div>
<div class="terminal">
<pre>[user777@archlinux ~]$ sah --version
Simple AUR Helper (SAH) and Pacman wrapper v0.9.4
[user777@archlinux ~]$ █</pre>
</div>
</body>
</html>