-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhead-includes.pug
More file actions
33 lines (28 loc) · 926 Bytes
/
head-includes.pug
File metadata and controls
33 lines (28 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
meta(charset="utf-8")
meta(name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no")
// Tailwind
script(src="https://cdn.tailwindcss.com")
|<script>
| tailwind.config = {
| theme: {
| container: {
| center: true,
| },
| extend: {
| colors: {
| clifford: '#da373d',
| }
| }
| }
| };
|</script>
// Font Awesome
link(rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous")
// Custom CSS
link(rel="stylesheet" href="/style.css")
// Fonts (Inter)
link(rel="preconnect" href="https://fonts.googleapis.com")
link(rel="preconnect" href="https://fonts.gstatic.com" crossorigin)
link(rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap")
// jekyll-seo-tag
| {% seo %}