Convert nav bar page titles to lowercase
This commit is contained in:
parent
20d8386f7b
commit
a4e084b58b
|
@ -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 -%}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
layout: page
|
||||
title: projects
|
||||
title: Projects
|
||||
permalink: /projects/
|
||||
description: University and personal projects.
|
||||
nav: true
|
||||
|
|
Loading…
Reference in New Issue