Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix cosmetic errors in <head>
  - Add correct mime type to favicon <link>
  - Remove redundant <style> type attribute
  - Fix a template variable name typo (but it was unused anyway)
  • Loading branch information
Anthony Parsons committed May 18, 2014
1 parent 3f0dcf6 commit 5993415
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions includes/header
Expand Up @@ -6,10 +6,11 @@
<head>
<title>[% readvar title %]</title>
[% ifvar more_header %] [% readvar more_header %] [%endifvar%]
<link rel="icon" href="/favicon.ico" />
<style type="text/css">
<link rel="icon" href="/favicon.ico" type="favicon.ico" />
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<style>
@import url("/style.css");
[% ifvar sitecss %][% readvar sitecsss %][% endifvar %]
[% ifvar sitecss %][% readvar sitecss %][% endifvar %]
</style>
</head>
<body>
Expand Down

0 comments on commit 5993415

Please sign in to comment.