I have my index.html thymeleaf page coming up but the CSS I am referencing on the page is not being found.
<link href="../css/bootstrap.min.css" rel="stylesheet" th:href="@{/css/bootstrap.min.css}" type="text/css"/>
Here is what the deployed WAR looks like in Tomcat:

The index.html is in the templates folder.
But I am getting the following error in the Chrome console:
GET http://localhost:8080/pocApp/css/bootstrap.min.css 404 (Not Found)
If I can get the index.html page fine why can't the thymeleaf servlet find that file? I've tried sticking the entire css directory into various places in the directory structure such as in WEB-INF and within WEB-INF/classes with no luck.
