aboutsummaryrefslogtreecommitdiff
path: root/_layouts/page.html
blob: 5dd9fab0603e3ada983998dd8cc9463d43f21d75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
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 }}" />

  <!-- 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>

  <!-- Description -->
  <meta itemprop="description" content="{{ page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}" />

  <!-- Content -->
  <section itemprop="mainContentOfPage">
    {{ content }}
  </section>
</article>