summaryrefslogtreecommitdiff
path: root/stagit.c
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2020-10-17 00:03:01 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2020-10-17 00:03:01 -0400
commit53c834d9b83c59e9d64f426f5359cf8e565befff (patch)
tree8e10db7656ac9cbdae76e66ff9686604512e3978 /stagit.c
parent854bb3b66167ccd7e150a18557824f8992bbe25e (diff)
Initial Commit
Diffstat (limited to 'stagit.c')
-rw-r--r--stagit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stagit.c b/stagit.c
index 8b51f3f..a394a69 100644
--- a/stagit.c
+++ b/stagit.c
@@ -474,15 +474,15 @@ writeheader(FILE *fp, const char *title)
if (description[0])
fputs(" - ", fp);
xmlencode(fp, description, strlen(description));
- fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/svg+xml\" href=\"../%slogo.svg\"/>\n", relpath);
- fprintf(fp, "<link rel=\"alternate icon\" href=\"../%sfavicon.ico\"/>\n", relpath);
+ fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/svg+xml\" href=\"../%slogo.png\"/>\n", relpath);
+ fprintf(fp, "<link rel=\"alternate icon\" href=\"../%sfavicon.png\"/>\n", relpath);
fprintf(fp, "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"%s Atom Feed\" href=\"%satom.xml\" />\n",
name, relpath);
fprintf(fp, "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"%s Atom Feed (tags)\" href=\"%stags.xml\" />\n",
name, relpath);
fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"../%sstyle.css\" />\n", relpath);
fputs("</head>\n<body>\n<div id=\"head\"><table><tr><td>", fp);
- fprintf(fp, "<a class=\"logo\" href=\"../%s\"><img src=\"../%slogo.svg\" alt=\"\" width=\"32\" height=\"32\" /></a>",
+ fprintf(fp, "<a class=\"logo\" href=\"../%s\"><img src=\"../%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></a>",
relpath, relpath);
fputs("</td><td><strong>", fp);
xmlencode(fp, strippedname, strlen(strippedname));