diff options
Diffstat (limited to '_layouts/page.html')
-rw-r--r-- | _layouts/page.html | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/_layouts/page.html b/_layouts/page.html index 5dd9fab..c093f58 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -2,22 +2,16 @@ layout: default --- -<article itemtype="http://schema.org/WebPage" itemscope> - <link itemprop="mainEntityOfPage" itemscope href="{{ page.url | absolute_url | uri_escape }}" /> - <link itemprop="image" itemscope href="{{ page.image | default: site.image | absolute_url | uri_escape }}" /> +<article> - <!-- Header --> - <header class="page-header"> - <h1 class="text-muted"> - <span itemprop="name">{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</span> - </h1> - </header> + <!-- Header --> + <header> + <h1>{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</h1> + </header> - <!-- Description --> - <meta itemprop="description" content="{{ page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" /> + <!-- Content --> + <section> + {{ content }} + </section> - <!-- Content --> - <section itemprop="mainContentOfPage"> - {{ content }} - </section> -</article>
\ No newline at end of file +</article> |