forked from creativecommons/ccos-website-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissue_finder.html
42 lines (40 loc) · 1.35 KB
/
issue_finder.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
37
38
39
40
41
42
{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
<div class="issue-finder">
<div class="header">
<div class="container is-paddingless">
<h1>{{ this.title }}</h1>
<div class="description column is-9 is-paddingless">
{{ this.description }}
</div>
</div>
</div>
<div class="body container">
<div id="vue-app">
{{ this.body }}
<noscript>
The issue finder requires JavaScript. You can try searching on GitHub
using the links below.
<ul class="gh-links">
<li>
<a href="https://github.com/search?q=org%3Acreativecommons+is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22+-linked%3Apr">
issues labeled "good first issue"
</a>
</li>
<li>
<a href="https://github.com/search?q=org%3Acreativecommons+is%3Aissue+is%3Aopen+label%3A%22help+wanted%22+-linked%3Apr">issues
labeled "help wanted"
</a>
</li>
<li>
<a href="https://github.com/search?q=org%3Acreativecommons+is%3Apr+is%3Aopen+label%3A%22help+wanted%22">
PRs labeled "help wanted"
</a>
</li>
</ul>
</noscript>
</div>
</div>
</div>
{% endblock %}