stagit

personal fork of static git page generator
git clone https://a3nm.net/git/stagit/
Log | Files | Refs | README | LICENSE

commit b323da74261809715f31f2d663354dab0654bef5
parent 538e2d6358428de6b0ce86ff847dd706c82acd02
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Wed,  9 May 2018 21:17:43 +0200

fix path problem

Diffstat:
stagit.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/stagit.c b/stagit.c @@ -360,7 +360,7 @@ writeheader(FILE *fp, const char *title) fputs("</a></td></tr>", fp); } fputs("<tr><td></td><td>\n", fp); - fprintf(fp, "<a href=\"%s\">Log</a> | ", relpath); + fprintf(fp, "<a href=\"%slog.html\">Log</a> | ", relpath); fprintf(fp, "<a href=\"%sfiles.html\">Files</a> | ", relpath); fprintf(fp, "<a href=\"%srefs.html\">Refs</a>", relpath); if (hassubmodules)