-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1.08 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
{% extends "layouts/base.html" %}
{% block title %} Home — {{ super() }}{% endblock %}
{% block meta %} {{ meta.open_graph_site("Home", "/") }} {% endblock meta %}
{% import "parts/package-item.html" as package_item %}
{% block main %}
<header>
<h1>Chum Web</h1>
</header>
<p>
The SailfishOS:Chum community repository provides a collection of applications, tools and libraries for the
mobile operating system <a href="https://sailfishos.org/">Sailfish OS</a>, compiled for
various hardware architectures and OS release versions.
</p>
<p>
The SailfishOS:Chum repository is located at the
<a href="https://build.sailfishos.org/project/show/sailfishos:chum">the Sailfish OS OBS</a>.
</p>
<section>
<header><h2>Featured apps</h2></header>
<ul class="app-list">
{% for pkg in featured_apps %}
{{ package_item.package_item(pkg, "li") }}
{% else %}
<p>Nothing found</p>
{% endfor %}
</ul>
</section>
{% endblock main %}