generated from astariul/github-hosted-pypi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkg_template.html
76 lines (76 loc) · 1.93 KB
/
pkg_template.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/>
<!-- Skeleton CSS -->
<link crossorigin="anonymous" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" rel="stylesheet"/>
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet" type="text/css"/>
<!-- Favicon -->
<link href="https://gist.githubusercontent.com/astariul/c09af596e802e945d3032774e10e1047/raw/f693a2e2b65966494da082887bc4be2917f615e4/random_icon.svg" rel="icon"/>
<style>
body { font-family: "Montserrat"; }
code {
font-size: 100%;
display: inline-block !important;
font-size: 1.4rem; }
.header {
margin-top: 15rem;
font-size: 3.6rem;
font-weight: 400;
letter-spacing: -.1rem; }
.text-header {
text-transform: uppercase;
font-size: 1.4rem;
letter-spacing: .2rem;
font-weight: 600; }
.version {
font-size: 2.3rem;
font-style: italic;
font-weight: 300; }
.elem { margin: 1rem 0rem; }
</style>
<title>
Pypi - YourCompany
</title>
</head>
<body>
<div class="container">
<section class="header">
_package_name
<span>
</span>
<span class="version">
_version
</span>
</section>
<pre><code>pip install _package_name --extra-index-url https://astariul.github.io/github-hosted-pypi/</code></pre>
<a href="_link">
</a>
<hr/>
<div class="row">
<div class="three columns">
<button onclick="location.href='_homepage'">
Homepage
</button>
<p class="elem">
<b>
Author :
</b>
_author
</p>
</div>
<div class="nine columns">
<h6 class="text-header">
Description
</h6>
<p>
_long_description
</p>
</div>
</div>
</div>
</body>
</html>