@@ -20,32 +20,39 @@ <h2>Open Source Projects</h2>
20
20
<!-- See include below for logic and color.scss for available themes -->
21
21
{% include project-color-logic.html %}
22
22
23
- < li class ="card theme-{{ theme | default: "white " }}">
23
+ < li class ="card theme-{{ theme | default: "midnight " }}">
24
24
< header class ="card__header ">
25
25
26
26
<!-- Project title -->
27
- < h2 class ="card__header-title m-0 ">
28
- < a class ="card__header-link stretched-link " href ='{{ repository.html_url }} '> {{ repository.name }}</ a >
27
+ < h2 class ="card__header-title ">
28
+ < a class ="card__header-link stretched-link " href ='{{ repository.html_url }} '>
29
+ {{ repository.name }}
30
+ </ a >
29
31
</ h2 >
30
32
31
33
<!-- Project metadata -->
32
- < ul class ="list--inline fs-md monospace ">
34
+ < ul class ="card__header-list list--inline fs-md monospace ">
33
35
{% if repository.language %}
34
36
< li >
35
- < svg class ="svg-icon "> < use xlink:href ="{{ '/assets/images/icons/icons .svg#code' | relative_url }} "> </ use > </ svg > < span class ="visually-hidden "> Language: </ span > {{ repository.language }}
37
+ < svg class ="svg-icon "> < use xlink:href ="{{ '/assets/images/icons/icon-sprite .svg#code' | relative_url }} "> </ use > </ svg > < span class ="visually-hidden "> Language: </ span > {{ repository.language }}
36
38
</ li >
37
39
{% endif %}
38
40
39
41
{% if repository.license.spdx_id %}
40
42
< li >
41
- < svg class ="svg-icon "> < use xlink:href ="{{ '/assets/images/icons/icons .svg#license' | relative_url }} "> </ use > </ svg > < span class ="visually-hidden "> License: </ span > {{ repository.license.spdx_id }}
43
+ < svg class ="svg-icon "> < use xlink:href ="{{ '/assets/images/icons/icon-sprite .svg#license' | relative_url }} "> </ use > </ svg > < span class ="visually-hidden "> License: </ span > {{ repository.license.spdx_id }}
42
44
</ li >
43
45
{% endif %}
44
46
</ ul >
47
+
48
+ <!-- External Link Indicator -->
49
+ < div class ="card__external-indicator ">
50
+ < svg class ="svg-icon "> < use xlink:href ="{{ '/assets/images/icons/icon-sprite.svg#arrow-external' | relative_url }} "> </ use > </ svg >
51
+ </ div >
45
52
</ header >
46
53
47
54
<!-- Project description -->
48
- < div class ="card__body fs-md monospace ">
55
+ < div class ="card__body fs-md monospace " aria-hidden =" true " >
49
56
{% if repository.description %}
50
57
< p class ="m-0 clamp-3 "> {{ repository.description }}</ p >
51
58
{% endif %}
0 commit comments