summaryrefslogtreecommitdiffstats
path: root/templates/base_content.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/base_content.html')
-rw-r--r--templates/base_content.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/base_content.html b/templates/base_content.html
index 12297215..0ff4a9fd 100644
--- a/templates/base_content.html
+++ b/templates/base_content.html
@@ -10,7 +10,7 @@
<meta name="verify-v1" content="{{ settings.GOOGLE_SITEMAP_CODE }}" />
=======
{% if settings.GOOGLE_SITEMAP_CODE %}
- <meta name="verify-v1" content="{{ settings.GOOGLE_SITEMAP_CODE }}" />
+ <meta name="google-site-verification" content="{{ settings.GOOGLE_SITEMAP_CODE }}" />
{% endif %}
>>>>>>> 82d35490db90878f013523c4d1a5ec3af2df8b23:templates/base_content.html
<link rel="shortcut icon" href="{% href "/content/images/favicon.ico" %}" />
@@ -56,7 +56,7 @@
body { margin-top:2.4em; }
</style>
<script type="text/javascript">
- $().ready(function() {
+ $(document).ready(function() {
var element = $('#validate_email_alert')
element.click(function(){notify.close(true);setTimeout(function(){},1000)})
notify.show();
@@ -72,7 +72,7 @@
{% autoescape off %}
{% if user_messages %}
{% for message in user_messages %}
- <p class="darkred">{{ message }}<p>
+ <p class="darkred">{{ message }}</p>
{% endfor %}
{% endif %}
{% endautoescape %}