Skip to content

Commit 56fab53

Browse files
authored
Merge pull request #431 from kukimik/htmlerrors
Fix some HTML errors
2 parents 3462069 + b11acdf commit 56fab53

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

templates/boilerplate.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,8 @@
4040
<!-- metadata -->
4141
<title>$title$</title>
4242
<meta property="og:title" content="$title$">
43-
</meta>
4443
$if(description)$
4544
<meta property="og:description" content="$description$">
46-
</meta>
4745
$endif$
4846

4947
</head>

templates/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
<div class="flex flex-row">
5555
<div class="mt-16 flex flex-col text-center flex-grow lg:flex-row lg:space-x-8 lg:space-y-0">
56-
<img src="/assets/images/logos/hf-logo-100-alpha.png" class="h-8" />
56+
<img src="/assets/images/logos/hf-logo-100-alpha.png" class="h-8" alt="Logo of the Haskell Foundation"/>
5757
<div class="font-medium">2024 © Haskell Foundation, <a href="https://github.com/haskellfoundation/haskellfoundation.github.io">submit website bug reports and fixes on GitHub</a></div>
5858
</div>
5959

templates/mobile-nav-flyout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="pt-6 flex justify-between">
66

77
<div>
8-
<img src="/assets/images/logos/hf-logo-100-alpha.png" width="68" height="52" />
8+
<img src="/assets/images/logos/hf-logo-100-alpha.png" width="68" height="52" alt="Logo of the Haskell Foundation"/>
99
<div class="text-sm mt-2 text-gray-500">The Haskell Foundation</div>
1010
</div>
1111

templates/nav.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div>
44
<a href="/">
5-
<img src="/assets/images/logos/hf-logo-100-alpha.png" />
5+
<img src="/assets/images/logos/hf-logo-100-alpha.png" alt="The Haskell Foundation homepage"/>
66
<div class="text-sm mt-2 text-gray-500"></div>
77
</a>
88
</div>

templates/news/frontpage.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="bg-gray-100 px-6 sm:px-12 lg:px-16 py-6 lg:py-24 h-full">
33
<div class="space-y-4">
44
<h2 class="text-center text-2xl-4xl font-normal">$title$</h2>
5-
<p>$body$</p>
5+
$body$
66

77
$if(link)$
88
<div class="mt-4">

0 commit comments

Comments
 (0)