-
Notifications
You must be signed in to change notification settings - Fork 0
/
members.html
222 lines (211 loc) Β· 7.98 KB
/
members.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Members | Coding Cabin</title>
<link
rel="shortcut icon"
href="https://64.media.tumblr.com/avatar_5766c7a243de_128.pnj"
/>
<link rel="stylesheet" href="css/main.min.css" />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=DM+Serif+Display:ital@0;1&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.3/tiny-slider.css"
/>
<!--[if (lt IE 9)
]><script src="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.3/min/tiny-slider.helper.ie8.js"></script
><![endif]-->
</head>
<body class="permalink-page">
<a href="#main" class="skip-link">Jump directly to main content</a>
<header class="nav">
<div class="nav__inner">
<div class="nav__inner--logo" aria-label="Coding Cabin Logo">
<img
role="presentation"
src="https://64.media.tumblr.com/avatar_5766c7a243de_128.pnj"
alt=""
/>
</div>
<nav
role="navigation"
class="nav__inner--links"
aria-label="Primary Navigation"
>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/members.html">Members</a></li>
<li><a href="/contact">Contact</a></li>
<li><a href="/awards">Coding Awards</a></li>
<li><a href="/blog.html">Blog</a></li>
<li class="btn-follow">
<a
role="button"
tabindex="0"
href="https://tumblr.com/follow/{name}"
>Follow Us</a
>
</li>
<li class="btn-dark">
<a href="#" aria-label="Dark mode"
><svg
viewBox="0 0 15 15"
fill="none"
xmlns="http://www.w3.org/2000/svg"
width="15"
height="15"
>
<path
d="M7.5 1.5v-1m0 13.99v-.998m6-5.997h1m-13 0h-1m2-4.996l-1-1m12 0l-1 1m-10 9.993l-1 1m12 0l-1-1m-2-4.997a2.999 2.999 0 01-3 2.998 2.999 2.999 0 113-2.998z"
stroke="currentColor"
stroke-linecap="square"
></path></svg
></a>
</li>
</ul>
</nav>
<nav
role="navigation"
class="nav__inner--mobile"
aria-label="Primary Mobile Navigation"
>
<button aria-label="Button mobile navigation" aria-expanded="false">
<svg
role="presentation"
xmlns="http://www.w3.org/2000/svg"
width="28"
height="28"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</button>
<ul class="wrapper__mobile">
<li class="close-btn">
<a href="#">
<svg
xmlns="http://www.w3.org/2000/svg"
width="35"
height="35"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
</svg>
<div class="sr-only">Close</div>
</a>
</li>
<li><a href="/">Home</a></li>
<li><a href="/members">Members</a></li>
<li><a href="/contact">Contact</a></li>
<li><a href="/awards">Coding Awards</a></li>
<li class="btn-follow">
<a
role="button"
tabindex="0"
href="https://tumblr.com/follow/{name}"
>
<span>Follow Us</span>
</a>
</li>
</ul>
</nav>
</div>
</header>
<main class="wrapper">
<header class="hero">
<div class="hero__inner">
<h1 class="hero__heading">Members page</h1>
<ul class="hero__breadcrumbs">
<li><a href="/">Home</a></li>
<li><a href="#">Page</a></li>
<li class="is-current"><a href="#">Members page</a></li>
</ul>
</div>
</header>
<section class="wrapper__members" id="members">
<div class="members">
<!-- <div class="members__pagination">
<button class="load-more">
Load more members...
</button>
</div> -->
<input type="text" id="search_bar" class="members__search" placeholder="Search member....">
</div>
</section>
</main>
<footer class="footer" role="contentinfo">
<div class="footer__inner">
<div class="footer__inner--grid">
<h2>Quick Links</h2>
<ul aria-label="A group of quick links">
<li><a href="/faqs">Frequently Asked Question</a></li>
<li><a href="/rss">RSS</a></li>
<li><a href="/credits">Credits</a></li>
<li><a href="/members">Members</a></li>
<li><a href="/tagged/answered">Answered</a></li>
</ul>
</div>
<div class="footer__inner--grid">
<h2>Affiliates</h2>
<figure role="group" aria-labelledby="affiliates" class="footer__inner--grid__groupimg">
<figcaption id="affiliates" class="sr-only">
The lists of affiliates respectively
</figcaption>
<figure role="group" aria-labelledby="fig1">
<a href="https://margotofrph.tumblr.com" aria-label="Margot of RPH">
<img src="https://api.tumblr.com/v2/blog/margotofrph.tumblr.com/avatar/96" alt="" />
</a>
<figcaption id="fig1" class="sr-only">Margot of RPH</figcaption>
</figure>
<figure role="group" aria-labelledby="fig2">
<a href="https://paletteworld.tumblr.com" aria-label="Pallete World">
<img src="https://api.tumblr.com/v2/blog/paletteworld.tumblr.com/avatar/96" alt="" /></a>
<figcaption id="fig2" class="sr-only">Pallete World</figcaption>
</figure>
<figure role="group" aria-labelledby="fig3">
<a href="https://yeahps.tumblr.com" aria-label="Yeah PS">
<img src="https://api.tumblr.com/v2/blog/yeahps.tumblr.com/avatar/96" alt="" />
</a>
<figcaption id="fig3" class="sr-only">Yeah PS</figcaption>
</figure>
</figure>
</div>
<div class="footer__inner--grid">
<h2>Cabin Content</h2>
<ul aria-label="A group of cabin content links" class="capsule-links">
<li><a href="/tagged/cabin themes">Themes</a></li>
<li><a href="/tagged/cabin pages">Pages</a></li>
<li><a href="/tagged/cabin widgets">Widgets</a></li>
<li><a href="/tagged/cabin resources">Resources</a></li>
<li><a href="/tagged/cabin icons">Icons</a></li>
</ul>
</div>
</div>
<div class="footer__copyright">
Copyright © CodingCabin. Powered by Tumblr
</div>
</footer>
<script src="js/navigation.js"></script>
<!-- <script src="https://unpkg.com/infinite-scroll@3/dist/infinite-scroll.pkgd.min.js"></script> -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="js/members.js"></script>
</body>
</html>