forked from LineageOS/www
-
Notifications
You must be signed in to change notification settings - Fork 0
/
community.html
36 lines (32 loc) · 1015 Bytes
/
community.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
---
layout: default
permalink: /community/
---
<div class="jumbotron">
<div class="container">
<h1>Community</h1>
<p>Whether you’re an experienced Android user or you’re just getting started with open-source software, there are lots of ways to get involved with the LineageOS community.</p>
</div>
</div>
<div class="container">
{% for section in site.data.community %}
<h2>{{ section.name }}</h2>
<div class="community_wrapper">
<div class="community_section">
<div class="community_header">
</div>
<div class="row">
{% for item in section.data %}
<div class="col-sm-6">
<div class="community_item">
<a href="{{item.url}}"><h3>{{ item.name }}</h3></a>
<p>{{ item.text }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div><br />
{% endfor %}
</div>
<!-- Some parts of the text on this page are taken from the CyanogenMod Project. Licensed under Creative Commons Share Alike 3.0 -->