Files
jekyll/lib/site_template/_layouts/page.html
Chayoung You dafb25cbfe Escape title and description
Follows after #4307.
2016-02-28 22:07:10 +09:00

15 lines
218 B
HTML

---
layout: default
---
<article class="post">
<header class="post-header">
<h1 class="post-title">{{ page.title | escape }}</h1>
</header>
<div class="post-content">
{{ content }}
</div>
</article>