Remove conversion to lowercase
This commit is contained in:
parent
a4e084b58b
commit
6f7ec9151e
|
@ -39,7 +39,7 @@
|
||||||
{%- for p in sorted_pages -%}
|
{%- for p in sorted_pages -%}
|
||||||
{%- if p.nav and p.autogen == nil -%}
|
{%- if p.nav and p.autogen == nil -%}
|
||||||
<li class="nav-item {% if page.title == p.title %}active{% endif %}">
|
<li class="nav-item {% if page.title == p.title %}active{% endif %}">
|
||||||
<a class="nav-link" href="{{ p.url | relative_url }}">{{ p.title | downcase }}
|
<a class="nav-link" href="{{ p.url | relative_url }}">{{ p.title }}
|
||||||
{%- if page.title == p.title -%}
|
{%- if page.title == p.title -%}
|
||||||
<span class="sr-only">(current)</span>
|
<span class="sr-only">(current)</span>
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
layout: page
|
layout: page
|
||||||
title: Projects
|
title: projects
|
||||||
permalink: /projects/
|
permalink: /projects/
|
||||||
description: University and personal projects.
|
description: University and personal projects.
|
||||||
nav: true
|
nav: true
|
||||||
|
|
Loading…
Reference in New Issue