Convert nav bar page titles to lowercase

This commit is contained in:
Santiago Lo Coco 2022-02-10 18:44:19 -03:00
parent 20d8386f7b
commit a4e084b58b
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@
{%- for p in sorted_pages -%}
{%- if p.nav and p.autogen == nil -%}
<li class="nav-item {% if page.title == p.title %}active{% endif %}">
<a class="nav-link" href="{{ p.url | relative_url }}">{{ p.title }}
<a class="nav-link" href="{{ p.url | relative_url }}">{{ p.title | downcase }}
{%- if page.title == p.title -%}
<span class="sr-only">(current)</span>
{%- endif -%}

View File

@ -1,6 +1,6 @@
---
layout: page
title: projects
title: Projects
permalink: /projects/
description: University and personal projects.
nav: true