|
1 | 1 | ---
|
2 |
| -layout: default |
| 2 | +layout: common |
3 | 3 | ---
|
4 | 4 |
|
5 | 5 | <!-- https://github.com/adafruit/circuitpython/issues/1246 -->
|
6 |
| -<div id="libraries-page" class="common-layout"> |
7 |
| - <div class="content"> |
8 |
| - <h1>Contributing</h1> |
9 |
| - <p> |
10 |
| - If you'd like to contribute to the CircuitPython project, the CircuitPython |
11 |
| - libraries are a great way to begin. This page is updated with daily status |
12 |
| - information from the CircuitPython libraries, including open pull requests, |
13 |
| - open issues and library infrastructure issues. |
14 |
| - </p> |
15 |
| - <p> |
16 |
| - Do you write a language other than English? Another great way to contribute |
17 |
| - to the project is to contribute new localizations (translations) of |
18 |
| - CircuitPython, or update current localizations, using |
19 |
| - <a href="https://hosted.weblate.org/engage/circuitpython/">Weblate</a>. |
20 |
| - </p> |
21 |
| - <p> |
22 |
| - If this is your first time contributing, or you'd |
23 |
| - like to see our recommended contribution workflow, we have a guide on |
24 |
| - <a href="https://learn.adafruit.com/contribute-to-circuitpython-with-git-and-github">Contributing to CircuitPython with Git and Github</a>. |
25 |
| - You can also find us in the #circuitpython channel on the |
26 |
| - <a href="https://adafru.it/discord">Adafruit Discord</a>. |
27 |
| - </p> |
28 |
| - <p> |
29 |
| - Have an idea for a new driver or library? |
30 |
| - <a href="https://github.com/adafruit/circuitpython/issues">File an issue on the CircuitPython repo!</a> |
31 |
| - </p> |
32 |
| - <h2>Current Status for {{ site.data.libraries.updated_at | date: "%a, %b %d, %Y" }}</h2> |
| 6 | +<div id="libraries-page"> |
| 7 | + <h1>Contributing</h1> |
| 8 | + <p> |
| 9 | + If you'd like to contribute to the CircuitPython project, the CircuitPython |
| 10 | + libraries are a great way to begin. This page is updated with daily status |
| 11 | + information from the CircuitPython libraries, including open pull requests, |
| 12 | + open issues and library infrastructure issues. |
| 13 | + </p> |
| 14 | + <p> |
| 15 | + Do you write a language other than English? Another great way to contribute |
| 16 | + to the project is to contribute new localizations (translations) of |
| 17 | + CircuitPython, or update current localizations, using |
| 18 | + <a href="https://hosted.weblate.org/engage/circuitpython/">Weblate</a>. |
| 19 | + </p> |
| 20 | + <p> |
| 21 | + If this is your first time contributing, or you'd |
| 22 | + like to see our recommended contribution workflow, we have a guide on |
| 23 | + <a href="https://learn.adafruit.com/contribute-to-circuitpython-with-git-and-github">Contributing to CircuitPython with Git and Github</a>. |
| 24 | + You can also find us in the #circuitpython channel on the |
| 25 | + <a href="https://adafru.it/discord">Adafruit Discord</a>. |
| 26 | + </p> |
| 27 | + <p> |
| 28 | + Have an idea for a new driver or library? |
| 29 | + <a href="https://github.com/adafruit/circuitpython/issues">File an issue on the CircuitPython repo!</a> |
| 30 | + </p> |
| 31 | + <h2>Current Status for {{ site.data.libraries.updated_at | date: "%a, %b %d, %Y" }}</h2> |
33 | 32 |
|
34 |
| - {% assign current = page.url | downcase | split: '/' %} |
35 |
| - <ul class='tabbed-navigation'> |
36 |
| - <li> |
37 |
| - <a href="/contributing" {% if current[2] == |
38 |
| - nil %}class='active'{% endif %}>Pull Requests</a> |
39 |
| - </li> |
40 |
| - <li> |
41 |
| - <a href="/contributing/open-issues" {% if current[2] == |
42 |
| - 'open-issues' %}class='active'{% endif %}>Open Issues</a> |
43 |
| - </li> |
44 |
| - <li> |
45 |
| - <a href="/contributing/library-infrastructure-issues" {% if |
46 |
| - current[2] == |
47 |
| - 'library-infrastructure-issues' %}class='active'{% endif %}>Library Infrastructure Issues</a> |
48 |
| - </li> |
49 |
| - <li> |
50 |
| - <a href="/contributing/weblate" {% if current[2] == |
51 |
| - 'weblate' %}class='active'{% endif %}>CircuitPython Localization</a> |
52 |
| - </li> |
53 |
| - </ul> |
54 |
| - <div class="clear"></div> |
55 |
| - {{ content }} |
56 |
| - </div> |
| 33 | + {% assign current = page.url | downcase | split: '/' %} |
| 34 | + <ul class='tabbed-navigation'> |
| 35 | + <li> |
| 36 | + <a href="/contributing" {% if current[2] == |
| 37 | + nil %}class='active'{% endif %}>Pull Requests</a> |
| 38 | + </li> |
| 39 | + <li> |
| 40 | + <a href="/contributing/open-issues" {% if current[2] == |
| 41 | + 'open-issues' %}class='active'{% endif %}>Open Issues</a> |
| 42 | + </li> |
| 43 | + <li> |
| 44 | + <a href="/contributing/library-infrastructure-issues" {% if |
| 45 | + current[2] == |
| 46 | + 'library-infrastructure-issues' %}class='active'{% endif %}>Library Infrastructure Issues</a> |
| 47 | + </li> |
| 48 | + <li> |
| 49 | + <a href="/contributing/weblate" {% if current[2] == |
| 50 | + 'weblate' %}class='active'{% endif %}>CircuitPython Localization</a> |
| 51 | + </li> |
| 52 | + </ul> |
| 53 | + <div class="clear"></div> |
| 54 | + {{ content }} |
57 | 55 | </div>
|
58 | 56 |
|
59 | 57 | <script src="/assets/javascript/contributing.js"></script>
|
0 commit comments