1
0
mirror of https://github.com/devolitalia/forty-jekyll-theme synced 2025-06-05 22:19:18 +02:00

Fix invalid HTML caused by doubly-nested <p> element.

This commit is contained in:
Meitar M
2020-01-31 13:27:27 -05:00
parent b8721c353e
commit 8c70ecf005

View File

@ -23,7 +23,7 @@
<h1>{{ page.title }}</h1> <h1>{{ page.title }}</h1>
</header> </header>
{% if page.image %}<span class="image main"><img src="{{ site.baseurl }}/{{ page.image }}" alt="" /></span>{% endif %} {% if page.image %}<span class="image main"><img src="{{ site.baseurl }}/{{ page.image }}" alt="" /></span>{% endif %}
<p>{{ content }}</p> {{ content }}
</div> </div>
</section> </section>
@ -33,4 +33,4 @@
</body> </body>
</html> </html>