-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathhead.html
More file actions
executable file
·35 lines (30 loc) · 2.14 KB
/
Copy pathhead.html
File metadata and controls
executable file
·35 lines (30 loc) · 2.14 KB
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
34
35
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if page.title %}{{ page.title | escape }} | {% endif %}CalConnect DEVGUIDE</title>
<meta name="description"
content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}" />
<link rel="icon" type="image/png" href="{{ '/assets/images/favicon-96x96.png' | relative_url }}" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="{{ '/assets/images/favicon.svg' | relative_url }}" />
<link rel="shortcut icon" href="{{ '/assets/images/favicon.ico' | relative_url }}" type="image/vnd.microsoft.icon" />
<link rel="apple-touch-icon" sizes="180x180" href="{{ '/assets/images/apple-touch-icon.png' | relative_url }}" />
<link rel="manifest" href="{{ '/assets/site.webmanifest' | relative_url }}" />
<!-- Google Fonts - Inter + JetBrains Mono -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<!-- Critical CSS to prevent flash of unstyled content -->
<style>
html{scroll-behavior:smooth!important}
body{font-feature-settings:"kern" 1,"liga" 1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#fff!important;color:#1e293b!important;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,sans-serif!important;opacity:1!important}
html.dark body{background-color:#0f172a!important;color:#f1f5f9!important}
#nav-header{position:fixed!important;top:0!important;left:0!important;right:0!important;z-index:50!important;height:64px!important;background-color:#fff!important}
html.dark #nav-header{background-color:#0f172a!important}
main{padding-top:64px!important}
</style>
<!-- Vite Stylesheet (Tailwind CSS) -->
{% vite_stylesheet_tag application %}
{% if jekyll.environment == 'production' and site.google_analytics %}
{% include google-analytics.html %}
{% endif %}
</head>