-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
325 lines (316 loc) · 11.6 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
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="description"
content="A modern publishing platform for building your online brand and growing your audience. Features an extensible editor, robust content management, and state-of-the-art infrastructure."
/>
<meta
name="keywords"
content="blog, publishing, content management, editor, infrastructure, free, open source"
/>
<meta name="author" content="Styn1s" />
<link rel="preload" href="styles.css" as="style" />
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
/>
<title>Blogr</title>
</head>
<body>
<header class="header">
<img
class="header__background"
src="./images/bg-pattern-intro-desktop.svg"
alt=""
aria-hidden="true"
/>
<img
class="header__logo"
src="./images/logo.svg"
alt="Blogr logo"
loading="lazy"
/>
<nav class="header__nav" aria-label="Main navigation">
<ul class="nav__list">
<li class="nav__item">
<a href="#product"
>Product<img
class="nav__arrow"
src="./images/icon-arrow-light.svg"
alt=""
aria-hidden="true"
loading="lazy"
/></a>
</li>
<li class="nav__item">
<a href="#company"
>Company<img
class="nav__arrow"
src="./images/icon-arrow-light.svg"
alt=""
aria-hidden="true"
loading="lazy"
/></a>
</li>
<li class="nav__item">
<a
class="nav__link"
href="#"
aria-haspopup="true"
aria-expanded="false"
>Connect<img
class="nav__arrow"
src="./images/icon-arrow-light.svg"
alt=""
aria-hidden="true"
loading="lazy"
/></a>
<div class="dropdown" role="menu">
<ul class="dropdown__list">
<li class="dropdown__item"><a href="#contact">Contact</a></li>
<li class="dropdown__item">
<a href="#newsletter">Newsletter</a>
</li>
<li class="dropdown__item"><a href="#linkedIn">LinkedIn</a></li>
</ul>
</div>
</li>
</ul>
<div class="auth">
<ul class="auth__list">
<li class="auth__item"><a href="#login">Login</a></li>
<li class="auth__item"><a href="#sign-up">Sign Up</a></li>
</ul>
</div>
<button
class="nav__burger-btn"
aria-label="Open menu"
aria-expanded="false"
aria-controls="mobile-menu"
>
<img
src="./images/icon-hamburger.svg"
alt="Burger button"
loading="lazy"
/>
</button>
<button
class="nav__exit-btn"
aria-label="Close menu"
aria-expanded="false"
aria-controls="mobile-menu"
>
<img src="./images/icon-close.svg" alt="Exit button" loading="lazy" />
</button>
<div class="mobile-menu" id="mobile-menu">
<ul class="mobile-menu__nav-list">
<li class="mobile-menu__nav-item">
<a href="#product" aria-expanded="false"
>Product<img
class="nav__arrow"
src="./images/icon-arrow-dark.svg"
alt=""
aria-hidden="true"
loading="lazy"
/></a>
</li>
<li class="mobile-menu__nav-item">
<a href="#company" aria-expanded="false"
>Company<img
class="nav__arrow"
src="./images/icon-arrow-dark.svg"
alt=""
aria-hidden="true"
loading="lazy"
/></a>
</li>
<li class="mobile-menu__nav-item">
<a
id="mobile-connect-btn"
href="#connect"
aria-haspopup="true"
aria-expanded="false"
>Connect<img
class="nav__arrow"
src="./images/icon-arrow-dark.svg"
alt=""
aria-hidden="true"
loading="lazy"
/></a>
</li>
</ul>
<div class="mobile-menu__dropdown" role="menu">
<ul class="mobile-menu__dropdown-list">
<li class="mobile-menu__dropdown-item">
<a href="#contact">Contact</a>
</li>
<li class="mobile-menu__dropdown-item">
<a href="#newsletter">Newsletter</a>
</li>
<li class="mobile-menu__dropdown-item">
<a href="#linkedIn">LinkedIn</a>
</li>
</ul>
</div>
<div class="mobile-menu__divider"></div>
<ul class="mobile-menu__auth-list">
<li class="mobile-menu__auth-item"><a href="#login">Login</a></li>
<li class="mobile-menu__auth-item">
<a href="#sign-up">Sign Up</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<section class="hero">
<h1 class="hero__title">A modern publishing platform</h1>
<h2 class="hero__subtitle">
Grow your audience and build your online brand
</h2>
<ul class="hero__cta-list">
<li class="hero__cta-item">
<a href="#start-for-free">Start for Free</a>
</li>
<li class="hero__cta-item">
<a href="#learn-more">Learn More</a>
</li>
</ul>
</section>
<section class="features-section" aria-labelledby="features-title">
<h2 class="features-section__title" id="features-title">
Designed for the future
</h2>
<img
class="features-section__image"
src="./images/illustration-editor-desktop.svg"
alt="Illustration of the editor"
loading="lazy"
/>
<div class="features-section__content">
<ul class="features-section__list">
<li class="features-section__item">
<h3 class="features-section__item-title">
Introducing an extensible editor
</h3>
<p class="features-section__item-description">
Blogr features an exceedingly intuitive interface which lets you
focus on one thing: creating content. The editor supports
management of multiple blogs and allows easy manipulation of
embeds such as images, videos, and Markdown. Extensibility with
plugins and themes provide easy ways to add functionality or
change the looks of a blog.
</p>
</li>
<li class="features-section__item">
<h3 class="features-section__item-title">
Robust content management
</h3>
<p class="features-section__item-description">
Flexible content management enables users to easily move through
posts. Increase the usability of your blog by adding customized
categories, sections, format, or flow. With this functionality,
you're in full control.
</p>
</li>
</ul>
</div>
</section>
<section
class="infrastructure-section"
aria-labelledby="infrastructure-title"
>
<img
class="infrastructure-section__background-image"
src="./images/bg-pattern-circles.svg"
alt=""
aria-hidden="true"
/>
<div class="infrastructure-section__content">
<h2 class="infrastructure-section__title" id="infrastructure-title">
State of the Art Infrastructure
</h2>
<p class="infrastructure-section__description">
With reliability and speed in mind, worldwide data centers provide
the backbone for ultra-fast connectivity. This ensures your site
will load instantly, no matter where your readers are, keeping your
site competitive.
</p>
</div>
</section>
<section class="tools-section">
<img
class="tools-section__image--phones"
src="./images/illustration-phones.svg"
alt="Illustration of phones"
loading="lazy"
/>
<img
class="tools-section__image--laptop"
src="./images/illustration-laptop-desktop.svg"
alt="Illustration of a laptop"
/>
<ul class="tools-section__list">
<li class="tools-section__item">
<h2 class="tools-section__item-title">Free, open, simple</h2>
<p class="tools-section__item-description">
Blogr is a free and open source application backed by a large
community of helpful developers. It supports features such as code
syntax highlighting, RSS feeds, social media integration,
third-party commenting tools, and works seamlessly with Google
Analytics. The architecture is clean and is relatively easy to
learn.
</p>
</li>
<li class="tools-section__item">
<h2 class="tools-section__item-title">Powerful tooling</h2>
<p class="tools-section__item-description">
Batteries included. We built a simple and straightforward CLI tool
that makes customization and deployment a breeze, but capable of
producing even the most complicated sites.
</p>
</li>
</ul>
</section>
</main>
<footer class="footer">
<div class="footer__logo">
<img
class="footer__logo-image"
src="./images/logo.svg"
alt="Footer logo"
loading="lazy"
/>
</div>
<div class="footer__content">
<ul class="footer__list">
<li class="footer__item">Product</li>
<li class="footer__item"><a href="#overview">Overview</a></li>
<li class="footer__item"><a href="#pricing">Pricing</a></li>
<li class="footer__item"><a href="#marketplace">Marketplace</a></li>
<li class="footer__item"><a href="#features">Features</a></li>
<li class="footer__item"><a href="#integrations">Integrations</a></li>
</ul>
<ul class="footer__list">
<li class="footer__item">Company</li>
<li class="footer__item"><a href="#about">About</a></li>
<li class="footer__item"><a href="#team">Team</a></li>
<li class="footer__item"><a href="#blog">Blog</a></li>
<li class="footer__item"><a href="#careers">Careers</a></li>
</ul>
<ul class="footer__list">
<li class="footer__item">Connect</li>
<li class="footer__item"><a href="#contact">Contact</a></li>
<li class="footer__item"><a href="#newsletter">Newsletter</a></li>
<li class="footer__item"><a href="#linkedIn">LinkedIn</a></li>
</ul>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>