What's the best way to create HTML Sitemap?

Hey Guys, What’s the best way to create a HTML sitemap which supports pagination? And also each page will have 500 links on each page.

The html sitemap gets paginated, and will have multiple pages.

Here is my config.toml file

baseURL = “”
languageCode = “en-us”
title = “My New Hugo Site”
theme = “statecitytheme”

[params]
knowmore = false
layout = “services”
sitemapMax = 999999
published = “2016-08-21T00:00:00Z”
dateFormatLong = “2006-01-02 15:04”
dateFormatShort = “2006-01-02”
dateFormatYear = “2006”
dateFormatFeed = “2006-01-02T15:04:05Z”
digest = “sha256”

[mediaTypes]
[mediaTypes.“application/atom+xml”]
suffixes = [“xml”]
[mediaTypes.“application/rss+xml”]
suffixes = [“rss”]
[mediaTypes.“application/manifest+json”]
suffixes = [“webmanifest”]

[outputFormats.HTML]
baseName = “index”
NoUgly = true
IsHTML = true

[outputFormats.ATOM]
MediaType = “application/atom+xml”
BaseName = “feed”
IsHTML = false
IsPlainText = false
noUgly = true
Rel = “alternate”

[outputFormats.RSS]
MediaType = “application/rss+xml”
BaseName = “feed”
IsHTML = false
IsPlainText = false
noUgly = true
Rel = “alternate”

[outputFormats.SITEMAP]
MediaType = “application/xml”
BaseName = “sitemap”
IsHTML = false
IsPlainText = false
noUgly = true
Rel = “sitemap”

[outputFormats.JSON]
MediaType = “application/json”
BaseName = “feed”
IsHTML = false
IsPlainText = true
noUgly = false
Rel = “alternate”

[outputFormats.MANIFEST]
MediaType = “application/manifest+json”
BaseName = “manifest”
suffix = “webmanifest”
IsHTML = false
IsPlainText = true
noUgly = false
Rel = “manifest”

[outputs]
section = [ “HTML”, “ATOM”, “JSON”, “RSS”, “MANIFEST”, “SITEMAP”]
# city = [ “HTML”, “ATOM”, “JSON”, “RSS”, “MANIFEST”, “SITEMAP”]
# state = [ “HTML”, “ATOM”, “JSON”, “RSS”, “MANIFEST”, “SITEMAP”]
# services = [ “HTML”, “ATOM”, “JSON”, “RSS”, “MANIFEST”, “SITEMAP”]
# page = [ “HTML”, “ATOM”, “JSON”, “RSS”, “MANIFEST”, “SITEMAP” ]
# taxonomy = [ “HTML”, “ATOM”, “JSON”, “RSS”, “MANIFEST”, “SITEMAP” ]
# taxonomyTerm = [ “HTML”, “ATOM”, “JSON”, “RSS”, “MANIFEST”, “SITEMAP” ]

I did checked the previous posts on the forum. Found this one, Sitemap HTML