FontAwesome CSS bug in the Freelancer template

@gabby It appears that the page is rendering the unicode value (f005) as plain text instead of the star icon. See area circled in red below.

The CSS in the template is

hr.star-light:after, hr.star-dark:after {
  position: relative;
  top: -0.8em;
  display: inline-block;
  padding: 0 .25em;
  content: "f005";
  font-family: FontAwesome;
  font-size: 2em;
}

Adding a \ before the unicode resolves the problem.

content "\f005";

Maybe it’s got something to do with the template using an older version of FontAwesome? FontAwesome has some warnings on this page CSS Pseudo-elements | Font Awesome Docs

Thank you for reporting this! We will fix it in our next release.