logo

stagit

STAtic GIT web view generator (in C) git clone https://hacktivis.me/git/stagit.git
commit: df2162e91d9a6ce920dab81d3ebc4d662e7afe95
parent 779127e4874d41b182d8e6784081a3d19753093d
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Wed,  6 May 2020 12:40:06 +0200

stagit.c: link footer to git-send-email.io

Diffstat:

Mstagit-index.c2+-
Mstagit.c2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/stagit-index.c b/stagit-index.c @@ -129,7 +129,7 @@ writefooter(FILE *fp) { fputs("</tbody>\n</table>\n",fp); fputs("</main>\n", fp); - fputs("\t<footer>Here's my <a href=\"https://hacktivis.me/about\">contacts</a> for patches, issues (tracker will maybe be added oneday), …\n", fp); + fputs("\t<footer>Here's my <a href=\"https://hacktivis.me/about\">contacts</a> for <a href=\"https://git-send-email.io/\">patches</a>, issues (tracker will maybe be added oneday), …\n", fp); fputs("</body>\n</html>\n", fp); } diff --git a/stagit.c b/stagit.c @@ -561,7 +561,7 @@ void writefooter(FILE *fp) { fputs("</main>\n", fp); - fputs("\t<footer>Here's my <a href=\"https://hacktivis.me/about\">contacts</a> for patches, issues (tracker will maybe be added oneday), …\n", fp); + fputs("\t<footer>Here's my <a href=\"https://hacktivis.me/about\">contacts</a> for <a href=\"https://git-send-email.io/\">patches</a>, issues (tracker will maybe be added oneday), …\n", fp); fputs("</body>\n</html>\n", fp); }