We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b00648 commit 3be5991Copy full SHA for 3be5991
1 file changed
src/pages/lectures.astro
@@ -32,15 +32,13 @@ for (const lec of lectures) {
32
<>
33
<h2>{course}</h2>
34
<div class="Items">
35
- {
36
- list.map((lec) => (
37
- <a href={lec.link} target="_blank">
38
- <RowCard title={lec.title} icon="mdi mdi-video" />
39
- </a>
40
- ))
41
- }
+ {list.map((lec) => (
+ <a href={lec.link} target="_blank">
+ <RowCard title={lec.title} icon="mdi mdi-video" />
+ </a>
+ ))}
42
</div>
43
- <div style="margin-top:2.5rem"></div>
+ <div style="margin-top:2.5rem" />
44
</>
45
))
46
}
0 commit comments