All of my categories are assigned ad lowercase like this:
taxonomy:
category:
- photography
- Admin
- Stuff
tag:
- aperture
- opinion
I have this block of code calling for category summary pages in my blog"
<li>
<a href="{{ base_url }}/category:Admin">Admin</a>
</li>
<li>
<a href="{{ base_url }}/category:Photography">Photography</a>
</li>
<li>
<a href="{{ base_url }}/category:Web Development">Web Development</a>
</li>
The Admin and Web Development links work as expected. But the Photography link brings up a blank page unless I do it like this:
<li>
<a href="{{ base_url }}/category:photography">Photography</a>
</li>
But if I call for the Admin category page like this:
<li>
<a href="{{ base_url }}/category:admin">Admin</a>
</li>
I get a blank page.
So Admin wants to be called as Admin but Photography wants to be called as photography.
Why should that be?