summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2025-10-25 12:12:15 +0800
committerSadeep Madurange <sadeep@asciimx.com>2025-10-25 12:12:15 +0800
commit6d80c9b4be3cc4ace918f0546e1238a680116042 (patch)
tree87648e96d5eeebf63ded4183b8a7bc542348d8b6
parent47fc631c289adb367cf25479c693b5aa8500a6be (diff)
downloadwww-6d80c9b4be3cc4ace918f0546e1238a680116042.tar.gz
Fix active attribute of navlinks.
-rw-r--r--_site/assets/css/main.css6
-rw-r--r--_site/index.html47
-rw-r--r--assets/css/main.css6
-rw-r--r--index.html4
4 files changed, 15 insertions, 48 deletions
diff --git a/_site/assets/css/main.css b/_site/assets/css/main.css
index 127c9c6..621e0a5 100644
--- a/_site/assets/css/main.css
+++ b/_site/assets/css/main.css
@@ -155,6 +155,12 @@ hr.simple {
padding-right: 20px;
}
+
+#navlist > .active > a {
+ font-weight: 600;
+ text-decoration: none;
+}
+
@media only screen
and (min-device-width : 768px) {
.threecol {
diff --git a/_site/index.html b/_site/index.html
index 22feae3..7e4c4f3 100644
--- a/_site/index.html
+++ b/_site/index.html
@@ -29,56 +29,11 @@
<li>
- <h2><a href="/blog/post-1/index/">Index</a></h2>
+ <h5><a href="/blog/post-1/index/">Index</a></h2>
<p>An apple is a sweet, edible fruit produced by an apple tree.</p>
</li>
- <li>
- <h2><a href="/projects/e-reader/index/">Prototype e-reader</a></h2>
- <p>This project features a prototype e-reader powered by a 7.5-inch Waveshare e-paper display and an
-ESP-WROOM-32 development board.</p>
-
- </li>
-
- <li>
- <h2><a href="/projects/matrix-digital-rain/index/">The Matrix digital rain for Unix terminals</a></h2>
- <p>The famous digital rain from the movie The Matrix implemented in C for
-the Unix terminal without using any GUI/TUI kits:</p>
-
- </li>
-
- <li>
- <h2><a href="/projects/etlas/index/">Etlas: e-paper display for news, stocks, and the weather</a></h2>
- <p>Etlas is a news, stock market, and weather tracker powered by an ESP32 NodeMCU
-D1, featuring a 7.5-inch Waveshare e-paper display and a DHT22 sensor module.</p>
-
- </li>
-
- <li>
- <h2><a href="/projects/bumblebee/index/">Bumblebee: turn browser sessions to code</a></h2>
- <p>Bumblebee is a web browser that turns browser sessions into C# scripts. Its
-objective is to eliminate the need for authoring scripts for testing, web
-scraping, and other browser automation tasks.</p>
-
- </li>
-
- <li>
- <h2><a href="/projects/desktop-unix/index/">Unix for the desktop</a></h2>
- <p>The year 2020 transformed my personal computing experience. In March 2020, I
-stumbled upon Arch Linux and discovered that I could customize my desktop
-environment to look and work any way I liked. I exercised that newfound freedom
-to create a Matrix-themed setup:</p>
-
- </li>
-
- <li>
- <h2><a href="/projects/fpm-door-lock/index/">Prototype fingerprint door lock</a></h2>
- <p>This project features a fingerprint door lock powered by an ATmega328P
-microcontroller.</p>
-
- </li>
-
</ul>
</div>
diff --git a/assets/css/main.css b/assets/css/main.css
index 127c9c6..621e0a5 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -155,6 +155,12 @@ hr.simple {
padding-right: 20px;
}
+
+#navlist > .active > a {
+ font-weight: 600;
+ text-decoration: none;
+}
+
@media only screen
and (min-device-width : 768px) {
.threecol {
diff --git a/index.html b/index.html
index e6f1bb3..9a7b227 100644
--- a/index.html
+++ b/index.html
@@ -4,11 +4,11 @@ title: ASCIIMX
---
<ul>
- {% assign docs = site.blog | concat: site.projects %}
+ {% assign docs = site.blog %}
{% assign latest = docs | sort: 'date' | reverse %}
{% for item in docs %}
<li>
- <h2><a href="{{ item.url }}">{{ item.title }}</a></h2>
+ <h5><a href="{{ item.url }}">{{ item.title }}</a></h2>
{{ item.excerpt }}
</li>
{% endfor %}