use extra abbr field for navbar links

This commit is contained in:
Yan Lin 2026-02-01 10:12:21 +01:00
parent b752591c39
commit b64c9f4d26
5 changed files with 16 additions and 4 deletions

View file

@ -1,7 +1,10 @@
+++ +++
title = "AIsys" title = "AI Systems & Infrastructure"
sort_by = "date" sort_by = "date"
paginate_by = 10 paginate_by = 10
[extra]
abbr = "AIsys"
+++ +++
Basics of streamlined interaction with AI systems, peripherals that enable such interaction, and deployment of AI systems on real-world infrastructure. Basics of streamlined interaction with AI systems, peripherals that enable such interaction, and deployment of AI systems on real-world infrastructure.

View file

@ -1,7 +1,10 @@
+++ +++
title = "DL4traj" title = "Deep Learning for Trajectory"
sort_by = "date" sort_by = "date"
paginate_by = 10 paginate_by = 10
[extra]
abbr = "DL4traj"
+++ +++
Deep learning approaches for analysis and utilization of spatiotemporal trajectories. Deep learning approaches for analysis and utilization of spatiotemporal trajectories.

View file

@ -2,6 +2,9 @@
title = "Homelab" title = "Homelab"
sort_by = "date" sort_by = "date"
paginate_by = 10 paginate_by = 10
[extra]
abbr = "Homelab"
+++ +++
My experience and stories tinkering with home servers, personal cloud, etc. My experience and stories tinkering with home servers, personal cloud, etc.

View file

@ -1,7 +1,10 @@
+++ +++
title = "MLtech" title = "Machine Learning Techniques"
sort_by = "date" sort_by = "date"
paginate_by = 10 paginate_by = 10
[extra]
abbr = "MLtech"
+++ +++
Investigation of certain topics of machine learning techniques and discussion of their motivation, design, and applications. Investigation of certain topics of machine learning techniques and discussion of their motivation, design, and applications.

View file

@ -32,7 +32,7 @@
{% set root = get_section(path="_index.md") %} {% set root = get_section(path="_index.md") %}
{% for path in root.subsections | sort %} {% for path in root.subsections | sort %}
{% set s = get_section(path=path) %} {% set s = get_section(path=path) %}
<a href="{{ s.permalink }}">{{ s.title }}</a> <a href="{{ s.permalink }}">{{ s.extra.abbr | default(value=s.title) }}</a>
{% endfor %} {% endfor %}
</nav> </nav>
</header> </header>