Skip to content

Commit

Permalink
include button
Browse files Browse the repository at this point in the history
  • Loading branch information
Ede1994 committed Feb 2, 2024
1 parent 9fb9c1d commit c4a3e58
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
9 changes: 9 additions & 0 deletions _includes/button.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<script>
var elements = document.querySelectorAll('a');
Array.prototype.forEach.call(elements, function(el, i){
if(el.innerHTML.substring(0,1)=='[' && el.innerHTML.substring(el.innerHTML.length-1)==']') {
el.innerHTML = el.innerHTML.substring(1,el.innerHTML.length-1);
el.classList.add('btn');
}
});
</script>
1 change: 1 addition & 0 deletions _layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
{% endif %}

{% include comments.html %}
{% include buttons.html %}
</div>
</div>
</main>
7 changes: 6 additions & 1 deletion courses/bootcamp_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ subtitle: Overview of the Bootcamp courses
- [πŸ“£ Current announcements](#-current-announcements)
- [❗ Course requirements](#-course-requirements)
- [πŸ“‹ Syllabus](#-syllabus)
- [❓ Feedback](#-feedback)
- [πŸ™ Credits](#-credits)


Expand Down Expand Up @@ -56,7 +57,11 @@ After the first part of this course, feel free to solve this ...

The chapters are available as Jupyter notebooks on <a href="https://github.com/University-Clinic-of-Neuroradiology/python-bootcamp/main"><img src="https://img.shields.io/badge/Go%20to-GitHub-green.svg" alt="Generic badge" /></a>, which can also be opened on <a href="https://colab.research.google.com/github/University-Clinic-of-Neuroradiology/python-bootcamp/blob/main"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a>.

---

## ❓ Feedback
Please give us feedback after you finished the skill track: [Feedback](https://forms.gle/oEtNoE6NVvW2CnM28).

{% include button.html url="https://forms.gle/oEtNoE6NVvW2CnM28" %}


## πŸ™ Credits
Expand Down
2 changes: 0 additions & 2 deletions courses/python_basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ By the end of these notebooks, you should feel more comfortable with:
- You can read and write basic Python code.
- Read and use error output from exceptions.

Please give us feedback after you finished the skill track: [Feedback](https://forms.gle/oEtNoE6NVvW2CnM28).


## πŸ“£ Current announcements
This directory contains a few basic notebooks to get you going. It is recommended to start with these before tackling any of the others.
Expand Down

0 comments on commit c4a3e58

Please sign in to comment.