We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If someone is interested in a talk or have a suggestion -> just open an issue here.
We can than use the github api, and list the ideas easily on the website. The more comments -> the more interest 😄
The text was updated successfully, but these errors were encountered:
https://api.github.com/repos/VlbgWebDev/vlbgwebdev.github.io/issues?labels=talk%20idea
Sorry, something went wrong.
Todo:
<section> <h2>Ideen für Vorträge</h2> <ol id="ideas"></ol> </section>
var http = new XMLHttpRequest(); http.open('GET', 'https://api.github.com/repos/VlbgWebDev/vlbgwebdev.github.io/issues?labels=talk%20idea', true); http.onreadystatechange = function() { if (http.readyState == 4) { var html = ''; var result = JSON.parse(http.responseText); result.forEach(function(issue) { html += '<li><a href="' + issue.html_url + '">'; html += issue.title + '</a> Kommentare: ' + issue.comments; html += '</li>'; }); document.getElementById('ideas').innerHTML = html; } } http.send(null);
No branches or pull requests
If someone is interested in a talk or have a suggestion -> just open an issue here.
We can than use the github api, and list the ideas easily on the website.
The more comments -> the more interest 😄
The text was updated successfully, but these errors were encountered: