@@ -4,14 +4,14 @@ <h2 id="sponsors_platinum">Platinum Sponsors</h2>
4
4
< div class ="grid grid-cols-2 lg:grid-cols-4 gap-4 mb-8 ">
5
5
{% for sponsor in sponsors['Platinum'] %}
6
6
< div title ="{{ sponsor.name }} ">
7
- < a href ="{{ sponsor.website }} "
7
+ < a href ="{{ sponsor.website ?? sponsor.profile }} "
8
8
class ="block no-underline " target ="_blank " rel ="noopener noreferrer ">
9
9
< div class ="mb-2 p-2 ">
10
10
< img class ="h-32 rounded w-full object-contain object-center "
11
11
src ="{{ sponsor.image }} " alt ="{{ sponsor.name }} "/>
12
12
</ div >
13
13
< div class ="overflow-hidden overflow-ellipsis whitespace-nowrap text-gray-900 font-medium mb-4 text-center ">
14
- < a class ="no-underline text-inherit " href ="{{ sponsor.website }} "> {{ sponsor.name }}</ a >
14
+ < a class ="no-underline text-inherit " href ="{{ sponsor.website ?? sponsor.profile }} "> {{ sponsor.name }}</ a >
15
15
</ div >
16
16
</ a >
17
17
</ div >
@@ -24,14 +24,14 @@ <h2 id="sponsors_gold">Gold Sponsors</h2>
24
24
< div class ="grid grid-cols-2 lg:grid-cols-5 gap-4 text-base mb-8 ">
25
25
{% for sponsor in sponsors['Gold'] %}
26
26
< div title ="{{ sponsor.name }} ">
27
- < a href ="{{ sponsor.website }} "
27
+ < a href ="{{ sponsor.website ?? sponsor.profile }} "
28
28
class ="block no-underline " target ="_blank " rel ="noopener noreferrer ">
29
29
< div class ="mb-2 p-2 ">
30
30
< img class ="h-24 rounded w-full object-contain object-center "
31
31
src ="{{ sponsor.image }} " alt ="{{ sponsor.name }} "/>
32
32
</ div >
33
33
< div class ="overflow-hidden overflow-ellipsis whitespace-nowrap text-gray-900 font-medium mb-4 text-center ">
34
- < a class ="no-underline text-inherit " href ="{{ sponsor.website }} "> {{ sponsor.name }}</ a >
34
+ < a class ="no-underline text-inherit " href ="{{ sponsor.website ?? sponsor.profile }} "> {{ sponsor.name }}</ a >
35
35
</ div >
36
36
</ a >
37
37
</ div >
@@ -44,14 +44,14 @@ <h2 id="sponsors_silver">Silver Sponsors</h2>
44
44
< div class ="grid grid-cols-3 lg:grid-cols-6 gap-4 text-base mb-8 ">
45
45
{% for sponsor in sponsors['Silver'] | filter(sponsor => sponsor.name) %}
46
46
< div title ="{{ sponsor.name }} ">
47
- < a href ="{{ sponsor.website }} "
47
+ < a href ="{{ sponsor.website ?? sponsor.profile }} "
48
48
class ="block no-underline " target ="_blank " rel ="noopener noreferrer ">
49
49
< div class ="mb-2 p-2 ">
50
50
< img class ="h-20 rounded w-full object-contain object-center "
51
51
src ="{{ sponsor.image }} " alt ="{{ sponsor.name }} "/>
52
52
</ div >
53
53
< div class ="overflow-hidden overflow-ellipsis whitespace-nowrap text-gray-900 font-medium mb-4 text-center ">
54
- < a class ="no-underline text-inherit " href ="{{ sponsor.website }} "> {{ sponsor.name }}</ a >
54
+ < a class ="no-underline text-inherit " href ="{{ sponsor.website ?? sponsor.profile }} "> {{ sponsor.name }}</ a >
55
55
</ div >
56
56
</ a >
57
57
</ div >
@@ -62,6 +62,6 @@ <h2 id="sponsors_silver">Silver Sponsors</h2>
62
62
< h3 id ="past_sponsors "> Past Sponsors</ h3 >
63
63
< div class ="text-base mb-8 ">
64
64
{{ sponsors['Past'] | map((sponsor) =>
65
- "< a class =\ "no-underline text-inherit\" href=\"#{sponsor.website}\"> #{sponsor.name}</ a > ")
65
+ "< a class =\ "no-underline text-inherit\" href=\"#{sponsor.website ?? sponsor.profile }\"> #{sponsor.name}</ a > ")
66
66
| join(', ') | raw }}.
67
67
</ div >
0 commit comments