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

26 lines
667 B
HTML
Raw Normal View History

2022-10-27 14:58:41 +02:00
<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>
2022-10-20 23:26:03 +02:00
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet" />
2022-10-20 19:51:21 +02:00
{{ $style := resources.Get "style.css" }}
<link rel="stylesheet" href="{{ $style.Permalink }}" />