mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-26 23:24:39 +01:00
28 lines
598 B
Go
28 lines
598 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"sort"
|
|
|
|
"github.com/osteele/gojekyll/site"
|
|
)
|
|
|
|
var routes = app.Command("routes", "Display site permalinks and associated files")
|
|
var dynamicRoutes = routes.Flag("dynamic", "Only show routes to non-static files").Bool()
|
|
|
|
func routesCommand(site *site.Site) error {
|
|
logger.label("Routes:", "")
|
|
var urls []string
|
|
for u, p := range site.Routes {
|
|
if !(*dynamicRoutes && p.IsStatic()) {
|
|
urls = append(urls, u)
|
|
}
|
|
}
|
|
sort.Strings(urls)
|
|
for _, u := range urls {
|
|
filename := site.Routes[u].Source()
|
|
fmt.Printf(" %s -> %s\n", u, filename)
|
|
}
|
|
return nil
|
|
}
|