Remove blog page content enclosing paragraph tags in Overview (#1267)

This commit is contained in:
jfranklin9000 2020-12-24 03:03:30 -06:00 committed by GitHub
parent 358446a65f
commit 35e9f2bbc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -173,7 +173,7 @@ We now need to make the `blog-page.html` template. In the `templates` directory,
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
<p>{{ page.content | safe }}</p>
{{ page.content | safe }}
{% endblock content %}
```