index.html (1974B)
1 <!DOCTYPE html>
2 <html lang="en">
3
4 <head>
5 <meta charset="UTF-8">
6 <meta http-equiv="X-UA-Compatible" content="IE=edge">
7 <meta name="viewport" content="width=device-width, initial-scale=1.0">
8 <link rel=stylesheet type=text/css href=/assets/css/simple.min.css />
9 <link rel=icon href=/assets/img/favicon.ico>
10 <link rel=icon type=img/png sizes=128x128 href=/assets/img/favicon_128.png>
11 <link rel=icon type=img/png sizes=64x64 href=/assets/img/favicon_64.png>
12 <link rel=icon type=img/png sizes=32x32 href=/assets/img/favicon_32.png>
13 <link rel=icon type=img/png sizes=16x16 href=/assets/img/favicon_16.png>
14 <title>pastesrv</title>
15 </head>
16
17 <body>
18
19 <header>
20 <h1>pastesrv</h1>
21 <a class="button" href="/">
22 Home
23 </a>
24 <a class="button" href="#about">
25 About
26 </a>
27 <a class="button" href="#how">
28 How
29 </a>
30 <a class="button" href="https://src.jayvii.de/pub/pastesrv">
31 Source
32 </a>
33 </header>
34
35 <!-- About Section -->
36 <section id="about">
37 <h2>About pastesrv</h2>
38 <p>
39 Super simple selfhosted paste server, based around minimal and basic
40 tools, which you can selfhost within seconds without much effort.
41 </p>
42 </section>
43
44 <!-- How To Use -->
45 <section id="how">
46 <h2>How to use</h2>
47 <p>
48 The original functionality is described in a blogpost on
49 <a
50 href="https://www.codemadness.org/paste-service.html"
51 target="_blank"
52 >
53 codemadness.org
54 </a>
55 </p>
56 <p>
57 Using the
58 <code>
59 <a
60 href="https://src.jayvii.de/pub/pastesrv/file/pastesrv.sh.html"
61 target="_blank"
62 >
63 pastesrv.sh
64 </a>
65 </code>
66 function, you can pipe any content to the paste service through SSH.
67 </p>
68 </section>
69
70 </body>
71
72 </html>