Skip to content

Commit a6ac3e6

Browse files
committed
1 parent 7cd73ca commit a6ac3e6

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

_includes/post-meta.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 itemprop="name">{{ page.title }}{% if page.subtitle %}
1+
<h1 itemprop="name" lang={{ page.language | default: "en-GB" }}>{{ page.title }}{% if page.subtitle %}
22
<span class="post-subtitle">{{ page.subtitle }}</span>
33
{% endif %}
44
</h1>

_layouts/post.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% assign authors = authors | push: site.data.authors[auth] %}
44
{% endfor %}
55
<!DOCTYPE html>
6-
<html lang="en">
6+
<html lang="en-GB">
77
<head>
88
{% include head.html %}
99
</head>
@@ -30,7 +30,7 @@
3030
</div>
3131
</header>
3232

33-
<article class="notepad-post-content post tag-simple">
33+
<article class="notepad-post-content post tag-simple" lang={{ page.language | default: "en-GB" }}>
3434
<div class="article-body" itemprop="description articleBody">{{ content }}</div>
3535
</article>
3636
<div class="cf"></div>

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</div>
2020
<div class="small-12 medium-9 large-10 columns">
2121
<header class="notepad-post-header">
22-
<h3 class="notepad-post-title">
22+
<h3 class="notepad-post-title" lang={{ post.language | default: "en-GB" }}>
2323
<a href="{{ post.url }}">{{ post.title }}{% if post.subtitle %}
2424
<span class="post-subtitle">{{ post.subtitle }}</span>
2525
{% endif %}</a>
@@ -38,7 +38,7 @@ <h3 class="notepad-post-title">
3838
By {{ authornames | join: ', ' }}
3939
</p>
4040
</header>
41-
<section class="notepad-post-excerpt">
41+
<section class="notepad-post-excerpt" lang={{ post.language | default: "en-GB" }}>
4242
<p>
4343
{% if post.summary %}
4444
{{ post.summary }}

0 commit comments

Comments
 (0)