Semantic Nav

In my current project I have a header will be used to navigate to different pages on the website. I am currently using a nav element to surround it like this:
<header>
    <nav class="nav">
      <div class="header"> ...
      </div>  
    </nav>
  </header>

At the moment I want to make a sidebar that is also used for navigation, but the navigation will be page specific, synonymous to a page of contents to navigate to different sections of a page.
Should I wrap this sidebar in a nav as well or is it unnecessary because it's not the navigation for the website just the page?
Was this page helpful?