This repository has been archived on 2022-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
public-web/layouts/partials/styles.html
2022-10-30 21:24:17 +01:00

24 lines
666 B
HTML

<style>
@font-face {
font-family: "Spline Sans";
src: url({{ "fonts/SplineSans-Regular.woff2" | relURL }}) format('woff');
font-weight: 400;
}
@font-face {
font-family: "Spline Sans";
src: url({{ "fonts/SplineSans-Medium.woff2" | relURL }}) format('woff');
font-weight: 500;
}
@font-face {
font-family: "Spline Sans";
src: url({{ "fonts/SplineSans-Bold.woff2" | relURL }}) format('woff');
font-weight: 700;
}
</style>
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet" />
{{ $style := resources.Get "style.css" }}
<link rel="stylesheet" href="{{ $style.Permalink }}" />