Browse Source

Fixed stray text appearing on top of the navbar at small screen sizes (#8681)

main
Karthik Chintapalli 8 years ago
committed by Dan Abramov
parent
commit
49c4a363bc
  1. 2
      _layouts/default.html

2
_layouts/default.html

@ -1,7 +1,7 @@
{% if page.excerpt %}
{% assign type = 'article' %}
{% assign sectionTitle = 'React Blog' %}
{% assign description = page.excerpt | remove: '<p>' | remove: '</p>' %}
{% assign description = page.excerpt | strip_html %}
{% else %}
{% assign type = 'website' %}
{% assign sectionTitle = 'React' %}

Loading…
Cancel
Save