diff --git a/publichealth/home/templates/puput/blog_page.html b/publichealth/home/templates/puput/blog_page.html
index 8aa819e..c18dd6b 100644
--- a/publichealth/home/templates/puput/blog_page.html
+++ b/publichealth/home/templates/puput/blog_page.html
@@ -10,22 +10,6 @@
{% endif %}
{% endblock title %}
-{% block meta_title %}
- {% if search_term %}
- {% trans 'Entries for' %} {{ search_type }} {{ search_term }}
- {% else %}
- {{ block.super }}
- {% endif %}
-{% endblock meta_title %}
-
-{% block meta_description %}
- {% if search_term %}
- {% trans 'Entries for' %} {{ search_type }} {{ search_term }}
- {% else %}
- {{ block.super }}
- {% endif %}
-{% endblock meta_description %}
-
{% block social_share %}
{% image blog_page.header_image fill-800x450 as share_image %}
@@ -47,7 +31,7 @@
{# 'paginate' tag cannot render dotted variables, so we need to create a context var #}
{% paginate per_page entries %}
{% if search_term %}
-
{% trans 'Entries for' %} {{ search_type }} "{{ search_term }}"
+ {{ search_term }}
{% endif %}
{% for entry in entries %}
{% entry_url entry blog_page as post_url %}
diff --git a/publichealth/static/css/main.scss b/publichealth/static/css/main.scss
index 5213dac..d98881a 100644
--- a/publichealth/static/css/main.scss
+++ b/publichealth/static/css/main.scss
@@ -59,14 +59,20 @@ $slider-nav: 200px;
.blog-page .sidebar .meta { display: none; }
.blog-page section { padding: 0; }
.blog-page .blog-tags ul { padding: 0; }
-.blog-page ul.sidebar { min-height: 12em; }
+.blog-page ul.sidebar { background: transparent; }
+.blog-page .searchTerm { text-transform: uppercase; }
.blog-page .social-item {
- font-size: 70%; background: #2643A9 !important;
+ font-size: 70%;
+ background: #2643A9 !important;
}
.blog-header a {
color: white !important;
text-shadow: 1px 1px 2px black;
text-decoration: none;
}
+.blog-header .lead {
+ color: white;
+ font-size: 100%;
+}
@import "subsites";