How to create multiple views of same content?

Yes, the URLs will be:

  • http://localhost:1313/tags/north/
  • http://localhost:1313/tags/north/map/

That’s what web servers (e.g. Apache) look for when you browse to a directory.

With RSS and sitemap disabled, this is what hugo writes to the public directory:

public/
├── location/
│   ├── location-1/
│   │   └── index.html
│   ├── location-2/
│   │   └── index.html
│   └── index.html
├── tags/
│   ├── north/
│   │   ├── map/
│   │   │   └── index.html
│   │   └── index.html
│   ├── south/
│   │   ├── map/
│   │   │   └── index.html
│   │   └── index.html
│   └── index.html
└── index.html