Skip to content

Commit 818d4b9

Browse files
authored
Merge pull request #105 from makeabilitylab/chore/tier0-quick-fixes
Tier-0 V2.0 quick fixes: sitemap, robots.txt, LaTeX + nav
2 parents aa68b30 + 648b1b2 commit 818d4b9

4 files changed

Lines changed: 18 additions & 4 deletions

File tree

_config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ url: "https://makeabilitylab.github.io" # the base hostname & protocol for your
4242
# For copy button on code
4343
enable_copy_code_button: true
4444

45+
# Jekyll plugins. jekyll-sitemap generates /sitemap.xml (submittable to search
46+
# engines) to help indexing. It ships with the github-pages gem and is on the
47+
# GitHub Pages plugin whitelist, so it works under both the legacy build and the
48+
# GitHub Actions build (#98).
49+
plugins:
50+
- jekyll-sitemap
51+
4552
# custom site variables
4653
arduino_github_baseurl: "https://makeabilitylab.github.io/physcomp/"
4754
comments: false

advancedio/smoothing-input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ $$
204204
S_{i} =
205205
\begin{cases}
206206
X_{1} & \text{if i = 1}\\
207-
\alpha \cdot X_{i} + (1 - \alpha) \cdot S_{i-1} & \text{if i $>$ 1}
207+
\alpha \cdot X_{i} + (1 - \alpha) \cdot S_{i-1} & \text{if i > 1}
208208
\end{cases}
209209
$$
210210

esp32/esp32-ide.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@ With your IDE set up, you're ready to start building ESP32 projects!
196196

197197
Head back to [Lesson 1: Introduction to the ESP32](esp32.md) to learn about the hardware, or jump straight to [Lesson 2: Blinking an LED](led-blink.md) if you're ready to write code.
198198

199-
<span class="fs-6">
200-
[Back to: Introduction to the ESP32](esp32.md){: .btn .btn-outline }
201-
</span>
199+
<nav class="lesson-nav" aria-label="Lesson navigation">
200+
<a href="esp32.html" class="nav-prev">
201+
<div class="nav-label">&larr; Previous Lesson</div>
202+
<div class="nav-title">Introduction to the ESP32</div>
203+
</a>
204+
</nav>

robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://makeabilitylab.github.io/physcomp/sitemap.xml

0 commit comments

Comments
 (0)