Academicons is an icon font for academics, designed to be used alongside Font Awesome. It would be awesome (and relatively easy to implement) if we could get Academicons support in the profile page.
Their website has a section on how to use it alongside Font Awesome but the jist is:
- Import their CSS
- Use
i
tags withai
in theclass
property instead offa
, like so:
<i class="ai ai-ciencia-vitae"></i>
<!-- Displays the ciencia-vitae icon -->
The backend could have some sort of code like this pseudocode:
if icon in academicons:
return <i "ai ai-${icon}"></i>
Thanks!