forked from creativecommons/ccos-website-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject-ideas.html
114 lines (112 loc) · 5.15 KB
/
project-ideas.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{% extends "layout.html" %}
{% block title %}Open Source Work Programs: Project Ideas{% endblock %}
{% block body %}
<div class="project-ideas">
<div class="header">
<div class="container">
<h1>Open Source Work Programs: Project Ideas</h1>
<p class="description">This is the project idea list for the <span class="has-color-forest-green">current round of open source collaborations at Creative Commons.</span></p>
{% set ideas = site.query('/programs/project-ideas-collection').include_undiscoverable(true) %}
<div class="filter-labels" id="project-list">
<button type="button" class="button tag btn-dark filter-btn" data-filter="all">
All Projects
</button>
<!--
<button type="button" class="button tag filter-btn" data-filter="difficulty-easy">
Difficulty: Easy
</button>
-->
<button type="button" class="button tag filter-btn" data-filter="difficulty-medium">
Difficulty: Medium
</button>
<button type="button" class="button tag filter-btn" data-filter="difficulty-hard">
Difficulty: Hard
</button>
<button type="button" class="button tag filter-btn" data-filter="skill-css">
Skill: CSS
</button>
<button type="button" class="button tag filter-btn" data-filter="skill-django">
Skill: Django
</button>
<button type="button" class="button tag filter-btn" data-filter="skill-javascript">
Skill: JavaScript
</button>
<button type="button" class="button tag filter-btn" data-filter="skill-php">
Skill: PHP
</button>
<button type="button" class="button tag filter-btn" data-filter="skill-python">
Skill: Python
</button>
<button type="button" class="button tag filter-btn" data-filter="skill-wordpress">
Skill: WordPress
</button>
<!--
<button type="button" class="button tag filter-btn" data-filter="skill-writing">
Skill: Writing
</button>
-->
</div>
<div class="project-ideas columns is-multiline">
{% for idea in ideas %}
<div class="column is-one-quarter filter filter-label {{ idea.filter_value }}">
<a href="#{{ idea._slug }}">
<article class="card entry-post horizontal">
<div class="card-content">
<h5 class="card-title">{{ idea.title }}</h5>
</div>
</article>
</a>
</div>
{% endfor %}
<div class="column is-one-quarter">
<a href="#original-ideas">
<article class="card entry-post horizontal">
<div class="card-content">
<h5 class="card-title">Original Ideas</h5>
</div>
</article>
</a>
</div>
</div>
</div>
</div>
<div class="body container">
{% for idea in ideas %}
<div class="project-idea">
<h2><a class="has-color-dark-slate-gray" name="{{ idea._slug }}">{{ idea.title }}</a></h2>
<div class="columns">
<div class="column is-one-quarter">
<h5 class="b-header padding-bottom-small">Difficulty</h5>
<p class="padding-bottom-big">{{ idea.difficulty }}</p>
<h5 class="b-header padding-bottom-small">Size</h5>
<p class="padding-bottom-big">{{ idea.size }}</p>
<h5 class="b-header padding-bottom-small">Skills recommended</h5>
{{ idea.skills_recommended }}
<h5 class="b-header padding-bottom-small padding-top-big">Project Lead</h5>
{{ idea.lead }}
</div>
<div class="column is-three-quarters">
<h3 class="padding-bottom-big">The Problem</h3>
<p>{{ idea.problem }}</p>
<h3 class="padding-bottom-big padding-top-large">Expected Outcome</h3>
<p>{{ idea.expected_outcome }}</p>
<h3 class="padding-bottom-big padding-top-large">Contributor Tasks</h3>
<p>{{ idea.contributor_tasks }}</p>
<h3 class="padding-bottom-big padding-top-large">Application Tips</h3>
<p>{{ idea.application_tips }}</p>
<h3 class="padding-bottom-big padding-top-large">Resources</h3>
<p>{{ idea.resources }}</p>
</div>
</div>
<a href="#project-list" class="back-to-list"><i class="icon angle-up"></i> Back to the Project list</a>
</div>
{% endfor %}
<div>
<h2 class="b-header"><a name="original-ideas" class="has-color-dark-slate-gray">Original Ideas</a></h2>
<p>We are open to original ideas for documentation improvements.</p>
<p>Please talk to us on the <code>#cc-dev-workprograms</code> channel on Slack or via the mailing list to find a mentor for the project before submitting your proposal.</p>
<a href="#project-list" class="back-to-list"><i class="icon angle-up"></i> Back to the Project list</a>
</div>
</div>
</div>
{% endblock %}