-
Notifications
You must be signed in to change notification settings - Fork 4
/
apx_modshop.html
82 lines (81 loc) · 2.86 KB
/
apx_modshop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="/css/shop.css" />
<link rel="stylesheet" href="/css/octicons/octicons.css" />
</head>
<body>
<div class="container-lg">
<div class="d-flex flex-wrap flex-items-start flex-md-items-center mb-4">
<img
itemprop="image"
class="avatar flex-shrink-0 mb-3 mr-3 mr-md-4"
src="https://avatars.githubusercontent.com/u/79590596?s=200&v=4"
width="100"
height="100"
alt="Module Listing"
/><!--src="/css/placeholder.jpg"-->
<div class="flex-1">
<h1 class="h2 lh-condensed">
Dynamite
<span class="tag" style="background: rgb(165, 12, 12)"
>backend</span
>
</h1>
<div class="color-text-tertiary">
<div>The Official TrailBlaze Backend</div>
<a href="#">Read more...</a>
</div>
</div>
<div class="action-button">
<details class="position-relative details-overlay details-reset">
<summary class="btn btn-primary">
<span class="octicon octicon-cloud-download"></span>
Install
<span class="dropdown-caret"></span>
</summary>
<div class="position-relative">
<div
class="dropdown-menu dropdown-menu-switch"
style="top: 6px; width: 378px"
>
<div>
<ul class="list-style-none">
<li class="radio--hover-gray" style="padding: 0">
<a
class="d-flex flex-items-center color-text-primary text-bold no-underline p-3"
href="#"
>
<span
class="octicon octicon-bookmark"
style="padding-right: 0.5vh"
></span>
View Store Page
</a>
</li>
<li class="separator"></li>
<li class="radio--hover-gray" style="padding: 0">
<a
class="d-flex flex-items-center color-text-primary text-bold no-underline p-3"
href="#"
>
<span
class="octicon octicon-package"
style="padding-right: 0.5vh"
></span>
Update
</a>
</li>
</ul>
</div>
</div>
</div>
</details>
</div>
</div>
</div>
</body>
</html>