File tree 4 files changed +12
-10
lines changed
4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -107,8 +107,6 @@ figure {
107
107
}
108
108
109
109
.social-links {
110
- list-style : none ;
111
- padding-inline-start : 0 ; // TODO: only style lists in content
112
110
display : grid ;
113
111
grid-template-columns : repeat (2 , auto );
114
112
gap : 0.2em 1.5em ;
@@ -117,3 +115,7 @@ figure {
117
115
grid-template-columns : auto ;
118
116
}
119
117
}
118
+
119
+ .link-with-icon {
120
+ svg { margin-right : .5ch ; }
121
+ }
Original file line number Diff line number Diff line change 1
- < footer class ="site-footer ">
1
+ < footer class ="site-footer " role =" contentinfo " >
2
2
< div class ="wrapper ">
3
3
{% if config.description %}
4
4
< p > {{ config.description }}</ p >
Original file line number Diff line number Diff line change 15
15
</ p >
16
16
< p >
17
17
Join us on
18
- < a href ="https://github.com/{{ social.github | urlencode }}/wg "> < svg class ="svg-icon "> < use xlink:href ="{{ get_url(path='minima- social-icons .svg#github ') }} "> </ use > </ svg > GitHub</ a >
18
+ < a href ="https://github.com/{{ social.github | urlencode }}/wg " class =" link-with-icon " > < svg class ="svg-icon " aria-hidden =" true " > < use xlink:href ="{{ get_url(path='social/github .svg#icon ') }} "> </ use > </ svg > < span > GitHub</ span > </ a >
19
19
or
20
- < a href ="https://discord.gg/{{ social.discord | urlencode }} "> < svg class ="svg-icon "> < use xlink:href ="{{ get_url(path='minima- social-icons .svg#discord ') }} "> </ use > </ svg > Discord</ a > ,
20
+ < a href ="https://discord.gg/{{ social.discord | urlencode }} " class =" link-with-icon " > < svg class ="svg-icon " aria-hidden =" true " > < use xlink:href ="{{ get_url(path='social/discord .svg#icon ') }} "> </ use > </ svg > < span > Discord</ span > </ a > ,
21
21
and help shape the future of game development in Rust!
22
22
</ p >
23
23
</ div >
Original file line number Diff line number Diff line change 1
1
{% set social = config.extra.social_links -%}
2
2
3
- < ul class ="social-links ">
4
- {% if social.github %}< li > < a href ="https://github.com/{{ social.github | urlencode }} " title =" {{ social.github }} "> < svg class ="svg-icon "> < use xlink:href ="{{ get_url(path='social/github.svg#icon') }} "> </ use > </ svg > GitHub ( rust-gamedev) </ a > </ li > {% endif %}
5
- {% if social.twitter %}< li > < a href ="https://twitter.com/{{ social.twitter | urlencode }} " title =" {{ social.twitter }} "> < svg class ="svg-icon "> < use xlink:href ="{{ get_url(path='social/twitter.svg#icon') }} "> </ use > </ svg > Twitter ( rust_gamedev) </ a > </ li > {% endif %}
6
- {% if social.discord %}< li > < a href ="https://discord.gg/{{ social.discord | urlencode }} " title =" Discord "> < svg class ="svg-icon "> < use xlink:href ="{{ get_url(path='social/discord.svg#icon') }} "> </ use > </ svg > Discord ( #wg-gamedev) </ a > </ li > {% endif %}
7
- {% if social.rss %}< li > < a href ="{{ get_url(path='rss.xml') }} " title =" {{ social.rss }} "> < svg class ="svg-icon "> < use xlink:href ="{{ get_url(path='social/rss.svg#icon') }} "> </ use > </ svg > RSS feed </ a > </ li > {% endif %}
3
+ < ul class ="social-links _semantic ">
4
+ {% if social.github %}< li > < a href ="https://github.com/{{ social.github | urlencode }} " class =" link-with-icon "> < svg class ="svg-icon " title =" GitHub " aria-label =" GitHub " role =" img " > < use xlink:href ="{{ get_url(path='social/github.svg#icon') }} " aria-hidden =" true " > </ use > </ svg > < span > rust-gamedev</ span > </ a > </ li > {% endif %}
5
+ {% if social.twitter %}< li > < a href ="https://twitter.com/{{ social.twitter | urlencode }} " class =" link-with-icon "> < svg class ="svg-icon " title =" Twitter " aria-label =" Twitter " role =" img " > < use xlink:href ="{{ get_url(path='social/twitter.svg#icon') }} " aria-hidden =" true " > </ use > </ svg > < span > rust_gamedev</ span > </ a > </ li > {% endif %}
6
+ {% if social.discord %}< li > < a href ="https://discord.gg/{{ social.discord | urlencode }} " class =" link-with-icon "> < svg class ="svg-icon " title =" Discord " aria-label =" Discord " role =" img " > < use xlink:href ="{{ get_url(path='social/discord.svg#icon') }} " aria-hidden =" true " > </ use > </ svg > #wg-gamedev</ span > </ a > </ li > {% endif %}
7
+ {% if social.rss %}< li > < a href ="{{ get_url(path='rss.xml') }} " class =" link-with-icon "> < svg class ="svg-icon " title =" RSS " aria-label =" RSS " role =" img " > < use xlink:href ="{{ get_url(path='social/rss.svg#icon') }} " aria-hidden =" true " > </ use > </ svg > < span > gamedev.rs </ span > </ a > </ li > {% endif %}
8
8
</ ul >
You can’t perform that action at this time.
0 commit comments