don't set border on img, text-encoding before <title> - swerc - anselm's simpler werc fork
 (HTM) git clone git://git.suckless.org/swerc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit f452c18e02cec0e25fbacad3f275d78b5a22ab4e
 (DIR) parent 70bc88b16783cc9f3a8031ef68e845534493fb88
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Tue, 21 Nov 2017 20:12:49 +0100
       
       don't set border on img, text-encoding before <title>
       
       Diffstat:
         M tpl/master.tpl                      |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/tpl/master.tpl b/tpl/master.tpl
       @@ -1,13 +1,13 @@
        <!doctype html>
        <html>
        <head> 
       +        <meta charset="utf-8">
                <title>%($pageTitle%)</title>
                <link rel="stylesheet" type="text/css" href="/pub/style.css">
       -        <meta charset="utf-8"> 
        </head> 
        <body>
                <div id="header">
       -                <a href="/"><img src="//suckless.org/logo.png" width="23" height="15" /></a>
       +                <a href="/"><img src="//suckless.org/logo.png" width="23" height="15" border="0" /></a>
                        <a id="headerLink" href="/">%($"siteTitle%)</a> <span id="headerSubtitle">%($"siteSubtitle%)</span>
                </div>