Allow specifying custom <meta> tags in HTML head
[geekigeeki.git] / geekigeeki.py
index 4e9e788e63a19f7c9520aa52b248dc9bc8fd7b72..1e2b065d05705ba8851177338d651429809590a4 100755 (executable)
@@ -126,6 +126,10 @@ def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=Fal
     if not name:
         print ' <meta name="robots" content="noindex,nofollow" />'
 
+    for meta in meta_urls:
+        http_equiv, content = meta
+        print ' <meta http-equiv="%s" content="%s" />' % (http_equiv, relative_url(content))
+
     for link in link_urls:
         rel, href = link
         print ' <link rel="%s" href="%s" />' % (rel, relative_url(href))