Add config option to README

 - Also makes a small formatting change to the <title> string
diff --git a/README.md b/README.md
index cadeb5d..7572040 100644
--- a/README.md
+++ b/README.md
@@ -53,6 +53,7 @@
 
 - `GOOGLE_ANALYTICS_ID`: Your Google Analytics UA-XXXXXXXX-X code (`None` to disable analytics).
 - `GOOGLE_ANALYTICS_PROP`: Your Google Analytics property name (`None` to disable analytics).
+- `DISPLAY_META_ABOVE_ARTICLE`: Set to `True` to display article information above the article (default is below).
 - `DISQUS_SITENAME`: Set this to enable Disqus comments on articles.
 - `DISQUS_COLLAPSED`: Set to `True` to have article comments hidden by default. Clicking a link on the page will load them.
 - `USER_LOGO_URL`: The image to display as the profile image. Can be local or a remote URL.
diff --git a/templates/base.html b/templates/base.html
index a456134..3d69679 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -34,9 +34,7 @@
     {{tags|join(', ', attribute='0') }}">
   {% endblock %}
 
-  <title>
-    {% block title %}{{ SITENAME }}{% endblock %}
-  </title>
+  <title>{% block title %}{{ SITENAME }}{% endblock %}</title>
 
   {% include "modules/analytics.html" %}
 </head>