This commit is contained in:
nora 2025-02-13 23:03:41 +01:00
parent 108e6e9662
commit 51cbd2d55d
3 changed files with 6 additions and 6 deletions

View file

@ -33,10 +33,10 @@
<div class="center">
<ol class="lessons-list">
<li class="lesson-list-item">
<a href="/lesson-0.html">C names</a>
<a href="lesson-0.html">C names</a>
</li>
<li class="lesson-list-item">
<a href="/lesson-1.html">Basics</a>
<a href="lesson-1.html">Basics</a>
</li>
</ol>
</div>

View file

@ -109,7 +109,7 @@ extern "C" {
wish you good luck for the rest!
</p>
<div class="center">
<a href="/lesson-1.html" class="action-button">
<a href="lesson-1.html" class="action-button">
Lesson 1: Basics
</a>
</div>
@ -119,6 +119,6 @@ extern "C" {
<script>
window.LESSON = 0;
</script>
<script type="module" src="./lessons.js"></script>
<script type="module" src=".lessons.js"></script>
</body>
</html>

View file

@ -218,7 +218,7 @@ namespace cats {
identifiers for any C++ code you enter on the left.
</p>
<div class="center">
<a href="/lesson-2.html" class="action-button">
<a href="lesson-2.html" class="action-button">
Lesson 2: something that has not been written yet.
</a>
</div>
@ -228,6 +228,6 @@ namespace cats {
<script>
window.LESSON = 1;
</script>
<script type="module" src="./lessons.js"></script>
<script type="module" src=".lessons.js"></script>
</body>
</html>