forked from willianjusten/will-jekyll-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
topics.html
51 lines (42 loc) · 1.84 KB
/
topics.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
---
layout: minimal
title: "Suggested #100DaysDX Topics"
permalink: /topics/index.html
description: "100DaysDX topic suggestions"
---
<div class="tags" id="topics">
<p>Future topics planning is handled with Github issues and labels. </p>
<h2>Already accepted future topics</h2>
<ul id="accepted-list" style="list-style-type: none;">
</ul>
<script>
var urlToGetAllOpenBugs = "https://api.github.com/repos/kyyberi/100daysofDX/issues?state=open&labels=Accepted";
$(document).ready(function() {
$.getJSON(urlToGetAllOpenBugs, function(allIssues) {
$.each(allIssues, function(i, issue) {
$("#accepted-list")
.append("<li><a style='font-size:1.1em;' href=" + issue.html_url + ">" + issue.title + "</a></li>");
});
});
});
</script>
</div>
<div class="tags" id="topics">
<h2>Suggested future topics</h2>
<ul id="topic-list" style="list-style-type: none;">
</ul>
<p style="font-size:1em;">Did not found what you wanted? Suggest a topic for a post! </p>
<script>
var urlToGetAllOpenBugs2 = "https://api.github.com/repos/kyyberi/100daysofDX/issues?state=open&labels=Topic-idea";
$(document).ready(function() {
$.getJSON(urlToGetAllOpenBugs2, function(allIssues) {
$.each(allIssues, function(i, issue) {
$("#topic-list")
.append("<li><a style='font-size:1.1em;' href=" + issue.html_url + ">" + issue.title + "</a></li>");
});
});
});
</script>
<h2>Suggest your own topic!</h2>
<p style="font-size:1.4em;"> <a href="https://github.com/kyyberi/100daysofDX/issues/new">Raise an issue in Github!</a> I will not promise to write about your suggestion, but I promise to consider it thoroughly.</p>
</div>