Creating a menu navigation list that changes content on the same page

So If i just use this:

	{{ range $.Page.Pages }}
					<li class="custom-list-item ">
						<a href="{{ .URL }}">
							{{ .Title }}
						</a>
					</li>
	{{ end }}

By pressing on one of the nav links it takes me to a seperate page, but I want it to change the content while inside the list.html page,