all repos — homestead @ ee73e935234cb2726946c6312acea41765987126

Code for my website

fix tags links

Alan Pearce
commit

ee73e935234cb2726946c6312acea41765987126

parent

38e68f53fd96802bde794722869753a6487c0539

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M internal/builder/builder.gointernal/builder/builder.go
@@ -91,10 +91,10 @@ matchingPosts = append(matchingPosts, post)
} } log.Debug("rendering tags page", "tag", tag) - url := "/tags/" + tag + url := path.Join("tags", tag) + "/" if err := storage.RenderToFile( templates.TagPage(config, tag, matchingPosts, url), - path.Join("tags", tag)+"/", + url, ); err != nil { return nil, err }