diff options
Diffstat (limited to '_layouts/post.html')
| -rw-r--r-- | _layouts/post.html | 9 | 
1 files changed, 7 insertions, 2 deletions
| diff --git a/_layouts/post.html b/_layouts/post.html index c093f58..6273958 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -6,12 +6,17 @@ layout: default      <!-- Header -->      <header> -        <h1>{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</h1> +        <h1 aria-level="1" role="heading"> +            {{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }} +        </h1>      </header>      <!-- Content --> -    <section> +    <section role="article">          {{ content }}      </section> +    <!-- Comments --> +    {% include disqus.html %} +  </article> | 
