|
1 | 1 | {% extends "layout.html" %}
|
2 | 2 | {% block title %}{{ this.title }}{% endblock %}
|
3 | 3 | {% block body %}
|
4 |
| - <p>This is a list of all active open source software projects that Creative Commons maintains.</p> |
5 |
| - <p>Please read the <a href="/contributing-code">Contributing Code</a> page for general information on how to get involved. Contribution guidelines specific to an individual project can be found in the <code>README</code> and the <code>CONTRIBUTING</code> files in the root folder of every repository. If you have any questions, don't hesistate to reach out to us through <a href="/community">one of our community forums</a> or open a GitHub issue.</p> |
6 |
| - <h2>Featured Projects</h2> |
7 |
| - <p>We are actively looking for help with these projects and each project has open GitHub issues that are ready for external contribution.</p> |
8 |
| - <div class="card-deck"> |
9 |
| - {% for repo in bag('repos.repos') %} |
10 |
| - {% if repo.featured %} |
11 |
| - <div class="card featured-project-card border-dark mb-4"> |
12 |
| - <div class="card-body"> |
13 |
| - <h5 class="card-title"><strong>{{ repo.english_name }}</strong> |
14 |
| - <div class="float-right"> |
15 |
| - <a class="btn btn-outline-secondary" href="{{ repo.url }}"><img src="{{ this.attachments.get('mark-github.svg')|url }}" alt="GitHub"/></a> |
16 |
| - {% if repo.website %} |
17 |
| - <a class="btn btn-outline-secondary" href="{{ repo.website }}"><img src="{{ this.attachments.get('link-external.svg')|url }}" alt="website"/></a> |
18 |
| - {% endif %} |
| 4 | + <div class="project-list"> |
| 5 | + <div class="title"> |
| 6 | + <div class="container"> |
| 7 | + <h1>Project List</h1> |
| 8 | + <p class="description">This is a list of all active open source software projects that Creative Commons maintains.</p> |
| 9 | + </div> |
| 10 | + </div> |
| 11 | + <div class="body container"> |
| 12 | + <p>Please read the <a href="/contributing-code">Contributing Code</a> page for general information on how to get involved. Contribution guidelines specific to an individual project can be found in the <code>README</code> and the <code>CONTRIBUTING</code> files in the root folder of every repository. If you have any questions, don't hesistate to reach out to us through <a href="/community">one of our community forums</a> or open a GitHub issue.</p> |
| 13 | + <div class="featured-projects"> |
| 14 | + <h2 class="is-paddingless level-left"> |
| 15 | + Featured Projects |
| 16 | + </h2> |
| 17 | + <div class="project-list columns"> |
| 18 | + {% for repo in bag('repos.repos') %} |
| 19 | + {% if repo.featured %} |
| 20 | + <div class=" column is-one-third"> |
| 21 | + <article class="card entry-post vertical project-index"> |
| 22 | + <div class="card-content"> |
| 23 | + <h4 class="card-title b-header"><a href="{{ repo.url }}">{{ repo.english_name }}</a></h4> |
| 24 | + <a class="button is-text tiny site-link" href="{{ repo.website }}"> |
| 25 | + <span>Visit site</span> |
| 26 | + <i class="icon external-link"></i> |
| 27 | + </a> |
| 28 | + <div class="content"> |
| 29 | + {{ repo.description }} |
| 30 | + </div> |
| 31 | + <div class="labels"> |
| 32 | + {% for technology in repo.technologies %} |
| 33 | + <button class="button tag">{{ technology }}</button> |
| 34 | + {% endfor %} |
| 35 | + </div> |
| 36 | + <div class="external-links"> |
| 37 | + <a class="button is-text tiny" href="{{ repo.url }}"> |
| 38 | + <i class="icon github"></i> |
| 39 | + <span class="link-content">Github Repository</span> |
| 40 | + </a> |
| 41 | + <br> |
| 42 | + <a class="button is-text tiny"> |
| 43 | + <i class="icon slack"></i> |
| 44 | + <span class="link-content">Slack channel (#{{ repo.slack }})</span> |
| 45 | + </a> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + </article> |
19 | 49 | </div>
|
20 |
| - </h5> |
21 |
| - <p class="card-text">{{ repo.description }}</p> |
22 |
| - {% for technology in repo.technologies %} |
23 |
| - <span class="badge badge-featured-project mr-1 mb-1">{{ technology }}</span> |
| 50 | + {% endif %} |
| 51 | + {% endfor %} |
| 52 | + </div> |
| 53 | + </div> |
| 54 | + <div class="active-project"> |
| 55 | + <h2>All Active Projects</h2> |
| 56 | + <p class="padding-vertical-big">This is a complete list of active Creative Commons software projects. Archived projects are not documented here and can be found on the <strong><a href="https://github.com/cc-archive">CC Archive GitHub organization</a>.</strong></p> |
| 57 | + <div class="table-container"> |
| 58 | + <table class="table is-bordered is-striped"> |
| 59 | + <thead> |
| 60 | + <tr> |
| 61 | + <th scope="col">#</th> |
| 62 | + <th scope="col">Name</th> |
| 63 | + <th scope="col">Description</th> |
| 64 | + <th scope="col">Language</th> |
| 65 | + <th scope="col">License</th> |
| 66 | + <th scope="col">Links</th> |
| 67 | + </tr> |
| 68 | + </thead> |
| 69 | + {% for repo in bag('repos.repos') %} |
| 70 | + <tr> |
| 71 | + <td class="padding-vertical-normal padding-right-xl padding-left-normal">{{ loop.index }}</td> |
| 72 | + <td class="padding-vertical-normal padding-right-xl padding-left-normal"> |
| 73 | + <div class="text-bigger has-text-weight-bold padding-bottom-smaller">{{ repo.name }}</div> |
| 74 | + </td> |
| 75 | + {% if repo.description %} |
| 76 | + <td class="padding-vertical-normal padding-right-xl padding-left-normal">{{ repo.description }}</td> |
| 77 | + {% else %} |
| 78 | + <td class="padding-vertical-normal padding-right-xl padding-left-normal"></td> |
| 79 | + {% endif %} |
| 80 | + <td class="padding-vertical-normal padding-right-xl padding-left-normal"> |
| 81 | + {% if repo.language %}{{ repo.language }}{% endif %} |
| 82 | + </td> |
| 83 | + {% if repo.license %} |
| 84 | + <td class="padding-vertical-normal padding-right-xl padding-left-normal"> |
| 85 | + <a href="{{ repo.license.url }}" class="is-block">{{ repo.license.name }}</a> |
| 86 | + </td> |
| 87 | + {% else %} |
| 88 | + <td>Not specified</td> |
| 89 | + {% endif %} |
| 90 | + <td class="padding-vertical-normal padding-right-xl padding-left-normal"> |
| 91 | + {% if repo.website %} |
| 92 | + <a href="{{ repo.website }}" class="is-block has-color-dark-slate-gray">Website</a> |
| 93 | + {% endif %} |
| 94 | + <a href="{{ repo.url }}" class="is-block has-color-dark-slate-gray"><i class="icon github padding-right-small"></i>Github</a> |
| 95 | + {% if repo.slack %} |
| 96 | + <a href="{{ repo.url }}" class="is-block has-color-dark-slate-gray"><i class="icon slack padding-right-small"></i>Slack</a> |
| 97 | + {% endif %} |
| 98 | + </td> |
| 99 | + </tr> |
24 | 100 | {% endfor %}
|
25 |
| - </div> |
| 101 | + </table> |
26 | 102 | </div>
|
27 |
| - {% endif %} |
28 |
| - {% endfor %} |
| 103 | + </div> |
| 104 | + </div> |
29 | 105 | </div>
|
30 |
| - <h2>All Active Projects</h2> |
31 |
| - <p>This is a complete list of active Creative Commons software projects. Archived projects are not documented here and can be found on the <strong><a href="https://github.com/cc-archive">CC Archive GitHub organization</a>.</strong></p> |
32 |
| - <table class="table table-striped"> |
33 |
| - <thead class="thead-dark"> |
34 |
| - <tr> |
35 |
| - <th scope="col">#</th> |
36 |
| - <th scope="col">Name</th> |
37 |
| - <th scope="col">Description</th> |
38 |
| - <th scope="col">Language</th> |
39 |
| - <th scope="col">License</th> |
40 |
| - <th scope="col">Links</th> |
41 |
| - </tr> |
42 |
| - </thead> |
43 |
| - <tbody> |
44 |
| - {% for repo in bag('repos.repos') %} |
45 |
| - <tr> |
46 |
| - <th scope="row">{{ loop.index }}</th> |
47 |
| - <th scope="row">{{ repo.name }}</th> |
48 |
| - {% if repo.description %} |
49 |
| - <td>{{ repo.description }}</td> |
50 |
| - {% else %} |
51 |
| - <td></td> |
52 |
| - {% endif %} |
53 |
| - <td>{% if repo.language %}{{ repo.language }}{% endif %}</td> |
54 |
| - {% if repo.license %} |
55 |
| - <td><a href="{{ repo.license.url }}">{{ repo.license.name }}</a></td> |
56 |
| - {% else %} |
57 |
| - <td>Not specified</td> |
58 |
| - {% endif %} |
59 |
| - <td style="min-width: 16rem;"> |
60 |
| - <a class="btn btn-outline-secondary btn-sm" href="{{ repo.url }}"><img src="{{ this.attachments.get('mark-github.svg')|url }}" alt="GitHub"/> GitHub</a>{% if repo.website %} <a class="btn btn-outline-secondary btn-sm" href="{{ repo.website }}"><img src="{{ this.attachments.get('link-external.svg')|url }}" alt="website"/> Website</a>{% endif %} {% if repo.slack %} <a class="btn btn-outline-secondary btn-sm" href="https://creativecommons.slack.com/channels/{{ repo.slack }}"><img src="{{ this.attachments.get('mark-slack.svg')|url }}" alt="slack"/> Slack</a>{% endif %} |
61 |
| - </td> |
62 |
| - </tr> |
63 |
| - {% endfor %} |
64 |
| - </tbody> |
65 |
| - </table> |
66 | 106 | {% endblock %}
|
0 commit comments