File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ interface Props {
8
8
const { link, title, class : className } = Astro .props ;
9
9
---
10
10
11
- <a class:list ={ [" header-link" , className ]} href ={ link } title ={ title } >
11
+ <a class:list ={ [" header-link" , className ]} href ={ link } title ={ title } aria-label = { title } >
12
12
<slot />
13
13
</a >
14
14
Original file line number Diff line number Diff line change @@ -6,9 +6,10 @@ import TabletHeader from "../components/header/tablet/Menu.astro";
6
6
import MobileHeader from " ../components/header/mobile/Menu.astro" ;
7
7
8
8
interface Props {
9
- frontmatter? : { title: string };
10
9
title: string ;
11
10
isBlogPost: boolean ;
11
+ frontmatter? : { title: string };
12
+ description: string ;
12
13
}
13
14
14
15
const { frontmatter, isBlogPost } = Astro .props ;
Original file line number Diff line number Diff line change @@ -31,9 +31,9 @@ We are grateful to the Gemstone program for giving us the opportunity to work on
31
31
32
32
<div style = " display: flex; width: 100%; align-items: center; justify-content: space-around;" >
33
33
<Sponsor name = " Gemstone Program" url = " https://gemstone.umd.edu/" >
34
- <img src = " /img/gemstone.png" alt = " Gemstone logo" />
34
+ <img loading = " lazy " src = " /img/gemstone.png" alt = " Gemstone logo" />
35
35
</Sponsor >
36
36
<Sponsor name = " Honors College" url = " https://honors.umd.edu/" >
37
- <img src = " /img/umdhonors.png" alt = " Honors College logo" />
37
+ <img loading = " lazy " src = " /img/umdhonors.png" alt = " Honors College logo" />
38
38
</Sponsor >
39
39
</div >
You can’t perform that action at this time.
0 commit comments