File tree 5 files changed +39
-0
lines changed
content/contributing-code/issue-finder
themes/vocabulary_theme/templates
5 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ _ model: page
2
+ ---
3
+ _ template: issue_finder.html
4
+ ---
5
+ title: Issues for the Community
Original file line number Diff line number Diff line change
1
+ {% extends "layout.html" %}
2
+
3
+ {% block title %}{{ this.title }}{% endblock %}
4
+
5
+ {% block body %}
6
+ < div class ="issue-finder ">
7
+ < div class ="header ">
8
+ < div class ="container ">
9
+ < h1 > Issue Finder</ h1 >
10
+ < p class ="description "> Welcome to the CC developer community! It's wonderful to have you here.</ p >
11
+ </ div >
12
+ </ div >
13
+ < div class ="body container ">
14
+ < div id ="vue-app "> Loading...</ div >
15
+ </ div >
16
+ </ div >
17
+ {% endblock %}
Original file line number Diff line number Diff line change 77
77
{% for href, title in [
78
78
['/contributing-code', 'Contribution Guidelines'],
79
79
['/contributing-code/projects', 'Project List'],
80
+ ['/contributing-code/issue-finder', 'Issue Finder'],
80
81
['/contributing-code/pr-guidelines', 'Pull Request Guidelines'],
81
82
['/contributing-code/github-repo-guidelines', 'GitHub Repo Guidelines'],
82
83
['/contributing-code/usability', 'Usability'],
Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ <h1>{{ this.title }}</h1>
23
23
< a class ="{% if this.path == '/contributing-code/projects' %} is-active {% endif%} link " href ="{{ '/contributing-code/projects'|url }} "> Project List</ a >
24
24
</ li >
25
25
< hr class ="divider ">
26
+ < li >
27
+ < a class ="{% if this.path == '/contributing-code/issue-finder' %} is-active {% endif%} link " href ="{{ '/contributing-code/issue-finder'|url }} "> Issue Finder</ a >
28
+ </ li >
29
+ < hr class ="divider ">
26
30
< li >
27
31
< a class ="{% if this.path == '/contributing-code' %} is-active {% endif%} link " href ="{{ '/contributing-code'|url }} "> Contribution Guidelines</ a >
28
32
< ul >
Original file line number Diff line number Diff line change @@ -550,6 +550,18 @@ pre {
550
550
}
551
551
}
552
552
553
+ // Issue Finder page
554
+ .issue-finder {
555
+ .body {
556
+ @extend .padding-horizontal-big ;
557
+ @extend .body-big ;
558
+ @extend .padding-top-larger ;
559
+ @extend .padding-bottom-xxl ;
560
+
561
+ line-height : 1.8125 ;
562
+ }
563
+ }
564
+
553
565
// CC Search Guidelines page
554
566
.cc-search-guide {
555
567
.body {
You can’t perform that action at this time.
0 commit comments