-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (55 loc) · 1.95 KB
/
index.html
File metadata and controls
63 lines (55 loc) · 1.95 KB
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
{% extends "_layout.html" %}
{% block meta_title %}Install Linux apps using the Snap Store | Snapcraft {% endblock %}
{% block content %}
<main id="root">
<section class="p-strip--dark">
<div class="row">
<div class="col-start-large-4 col-6">
<h1 class="p-heading--2">The app store for Linux</h1>
<form class="p-search-box" action="/store">
<label class="u-off-screen" for="search">Search snap store</label>
<input type="search" id="search" class="p-search-box__input" placeholder="Search snap store" name="q">
<button type="reset" class="p-button p-search-box__reset">
<i class="p-icon--close">Close</i>
</button>
<button type="submit" class="p-button p-search-box__button">
<i class="p-icon--search">Search</i>
</button>
</form>
</div>
</div>
</section>
{% if recent_snaps %}
{% include "explore/_updated-snaps.html" %}
{% endif %}
{% if popular_snaps %}
{% with snaps_list = popular_snaps, title = "Most popular snaps" %}
{% include "explore/_snaps-list.html" %}
{% endwith %}
{% endif %}
{% if categories %}
{% include "explore/_categories.html" %}
{% endif %}
{% if top_rated_snaps %}
{% with snaps_list = top_rated_snaps, title = "Top rated snaps" %}
{% include "explore/_snaps-list.html" %}
{% endwith %}
{% endif %}
{% if trending_snaps %}
{% include "explore/_trending-snaps.html" %}
{% endif %}
<section class="p-strip u-no-padding--top">
<div class="u-fixed-width">
<div class="explore-highlight-block">
<div class="row">
<div class="col-6">
<h2>Learn how to snap in 30 minutes</h2>
<p class="p-heading--4">Find out how to build and publish snaps</p>
<a class="p-button--positive" href="/docs/get-started">Get started</a>
</div>
</div>
</div>
</div>
</section>
</main>
{% endblock %}