]> git.dabkitsch.com - jekyll-site.git/commitdiff
cleaned up head tag and title
authorequilet <2237372+equilet@users.noreply.github.com>
Tue, 13 Dec 2022 00:40:38 +0000 (16:40 -0800)
committerequilet <2237372+equilet@users.noreply.github.com>
Tue, 13 Dec 2022 00:40:38 +0000 (16:40 -0800)
_layouts/default.html

index 97f54de32b4f70fbec9fd61e9dfecbb681615eb7..f0df06314e5df729a61aabf8da66462515b2357a 100644 (file)
@@ -2,18 +2,25 @@
 
 <html lang="en">
        <head>
-
-           <meta charset="utf-8">
-           <title>{{ page.title }}</title>     <!-- title of the tab or window in browser -->
-
+               <!-- mainly here to include fonts, make initializations, etc -->
+               <meta charset="utf-8">
+               <meta http-equiv="X-UA-Compatible" content="IE=edge">
+               <meta name="viewport" content="width=device-width, initial-scale=1.0">
+               <link rel="stylesheet" href="{{ "/style-layout.css" | prepend: site.baseurl }}">
+               <link rel="stylesheet" href="{{ "/style-colors.css" | prepend: site.baseurl }}">
+               <link rel="shortcut icon" type="image/jpg" href="/assets/favicon.jpg">
+
+               <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=Noto+Sans+Mono:wght@100&display=swap" rel="stylesheet">
+               <link href="https://fonts.googleapis.com/css2?family=Poiret+One&display=swap" rel="stylesheet">
+
+               <title>{{ page.title }}</title>
        </head>
 
        <body>
-
-               {%- include head.html -%}                       <!-- styling and includes; init -->
-
                <div class="flex-container">
-
                        <div class="nav">
                                {%- include nav.html -%}                        <!-- navigation -->
                        </div>
@@ -21,7 +28,6 @@
                        <div class="content">
                                {{ content }}
                        </div>
-
                </div>
 
                {%- include footer.html -%}