diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | favicon.ico | bin | 0 -> 16958 bytes | |||
-rw-r--r-- | templates/index.html/header.html | 4 | ||||
-rw-r--r-- | templates/page/header.html | 2 |
4 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 78f9724..2af8206 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ generate: mkdir -p output + cp favicon.ico output find pages -type f -name '*.cfg' -print0 | sort -zr | xargs -0 saait cp style.css print.css output/ zip -r kronika.zip output diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..c28af68 --- /dev/null +++ b/favicon.ico Binary files differdiff --git a/templates/index.html/header.html b/templates/index.html/header.html index 5e642f3..02d642c 100644 --- a/templates/index.html/header.html +++ b/templates/index.html/header.html @@ -8,12 +8,12 @@ <meta name="description" content="${description}" /> <meta name="author" content="${author}" /> <meta name="generator" content="${sitegenerator}" /> - <title>Posts - ${sitetitle}</title> + <title>Kronika - ${sitetitle}</title> <link rel="stylesheet" href="style.css" type="text/css" media="screen" /> <link rel="stylesheet" href="print.css" type="text/css" media="print" /> <link rel="alternate" href="atom.xml" type="application/atom+xml" title="${sitetitle} Atom Feed" /> <link rel="alternate" href="atom_content.xml" type="application/atom+xml" title="${sitetitle} Atom Feed with content" /> - <link rel="icon" href="/favicon.png" type="image/png" /> + <link rel="icon" href="/favicon.ico" type="image/x-icon" /> </head> <body> <nav id="menuwrap"> diff --git a/templates/page/header.html b/templates/page/header.html index 8679cc2..b9535f9 100644 --- a/templates/page/header.html +++ b/templates/page/header.html @@ -13,7 +13,7 @@ <link rel="stylesheet" href="print.css" type="text/css" media="print" /> <link rel="alternate" href="atom.xml" type="application/atom+xml" title="${sitetitle} Atom Feed" /> <link rel="alternate" href="atom_content.xml" type="application/atom+xml" title="${sitetitle} Atom Feed with content" /> - <link rel="icon" href="/favicon.png" type="image/png" /> + <link rel="icon" href="/favicon.ico" type="image/x-icon" /> </head> <body> <nav id="menuwrap"> |