Skip to content

Commit 311666b

Browse files
committed
Create the Issue Finder page and add links to it
1 parent b027754 commit 311666b

File tree

5 files changed

+39
-0
lines changed

5 files changed

+39
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_model: page
2+
---
3+
_template: issue_finder.html
4+
---
5+
title: Issues for the Community
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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 %}

themes/vocabulary_theme/templates/layout.html

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
{% for href, title in [
7878
['/contributing-code', 'Contribution Guidelines'],
7979
['/contributing-code/projects', 'Project List'],
80+
['/contributing-code/issue-finder', 'Issue Finder'],
8081
['/contributing-code/pr-guidelines', 'Pull Request Guidelines'],
8182
['/contributing-code/github-repo-guidelines', 'GitHub Repo Guidelines'],
8283
['/contributing-code/usability', 'Usability'],

themes/vocabulary_theme/templates/page-with-toc.html

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ <h1>{{ this.title }}</h1>
2323
<a class="{% if this.path == '/contributing-code/projects' %} is-active {% endif%} link" href="{{ '/contributing-code/projects'|url }}">Project List</a>
2424
</li>
2525
<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">
2630
<li>
2731
<a class="{% if this.path == '/contributing-code' %} is-active {% endif%} link" href="{{ '/contributing-code'|url }}">Contribution Guidelines</a>
2832
<ul>

webpack/sass/main.scss

+12
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,18 @@ pre {
550550
}
551551
}
552552

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+
553565
// CC Search Guidelines page
554566
.cc-search-guide {
555567
.body {

0 commit comments

Comments
 (0)