Fix invalid HTML code in Example 1 (#236)
Line 111 opened a headline with h5 but closed with h6. Both are h5 tags now.
This commit is contained in:
parent
ac43faf85f
commit
3d99045411
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ function formatDate(date) {
|
|||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h5>Results {collection.start + 1}–{collection.end + 1} of {collection.total}</h6>
|
||||
<h5>Results {collection.start + 1}–{collection.end + 1} of {collection.total}</h5>
|
||||
{collection.data.map((post) => (
|
||||
<h1>{post.title}</h1>
|
||||
<time>{formatDate(post.published_at)}</time>
|
||||
|
|
Loading…
Reference in a new issue