Skip to content

Fix some HTML errors #431

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions templates/boilerplate.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,8 @@
<!-- metadata -->
<title>$title$</title>
<meta property="og:title" content="$title$">
</meta>
$if(description)$
<meta property="og:description" content="$description$">
</meta>
$endif$

</head>
Expand Down
2 changes: 1 addition & 1 deletion templates/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

<div class="flex flex-row">
<div class="mt-16 flex flex-col text-center flex-grow lg:flex-row lg:space-x-8 lg:space-y-0">
<img src="/assets/images/logos/hf-logo-100-alpha.png" class="h-8" />
<img src="/assets/images/logos/hf-logo-100-alpha.png" class="h-8" alt="Logo of the Haskell Foundation"/>
<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>
</div>

Expand Down
2 changes: 1 addition & 1 deletion templates/mobile-nav-flyout.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="pt-6 flex justify-between">

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

Expand Down
2 changes: 1 addition & 1 deletion templates/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<div>
<a href="/">
<img src="/assets/images/logos/hf-logo-100-alpha.png" />
<img src="/assets/images/logos/hf-logo-100-alpha.png" alt="The Haskell Foundation homepage"/>
<div class="text-sm mt-2 text-gray-500"></div>
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion templates/news/frontpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="bg-gray-100 px-6 sm:px-12 lg:px-16 py-6 lg:py-24 h-full">
<div class="space-y-4">
<h2 class="text-center text-2xl-4xl font-normal">$title$</h2>
<p>$body$</p>
$body$

$if(link)$
<div class="mt-4">
Expand Down
Loading