diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-06-21 18:29:50 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-06-21 18:29:51 -0400 |
commit | 430cec050b168c7b16edeba4c5269c3edea3f2eb (patch) | |
tree | 4af7ba3912073dfceb7eeaa5c009074d1fa66c2a /theme/templates/base.html | |
parent | 9b1522ca2fe6046dfbea44782e79774f5c428850 (diff) | |
download | bnewnet-430cec050b168c7b16edeba4c5269c3edea3f2eb.tar.gz bnewnet-430cec050b168c7b16edeba4c5269c3edea3f2eb.zip |
small template fixes for CSS and XHTML validation
Thanks W3C validation tools!
Diffstat (limited to 'theme/templates/base.html')
-rw-r--r-- | theme/templates/base.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/theme/templates/base.html b/theme/templates/base.html index 9ad8a1e..dedf4ab 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -1,10 +1,11 @@ +<?xml version="1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> {% block head %} <title>{% block title %}{{ SITENAME }}{% endblock title %}</title> -<meta charset="utf-8" /> +<!-- <meta charset="utf-8" /> --> {% if FEED_RSS %} <link href="{{ FEED_DOMAIN }}//feeds/posts.atom.xml" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Posts RSS Feed" /> {% endif %} |