27 lines
780 B
HTML
27 lines
780 B
HTML
---
|
||
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="row">
|
||
{% for item in section.data %}
|
||
<div class="col-sm-6">
|
||
<h3><a href="{{item.url}}">{{ item.name }}</a></h3>
|
||
<p>{{ item.text }}</p>
|
||
</div>
|
||
{% endfor %}
|
||
</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 -->
|