diff options
Diffstat (limited to '')
| -rw-r--r-- | templates/base.html | 48 | 
1 files changed, 24 insertions, 24 deletions
| diff --git a/templates/base.html b/templates/base.html index 4f25c81..6b9f811 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,37 +1,37 @@  <!DOCTYPE html>  <html lang="en"> -  <head> +    <head> -    <meta charset="UTF-8"> -    <meta name="viewport" content="width=device-width, initial-scale=1.0"> -    <meta http-equiv="X-UA-Compatible" content="ie=edge"> -    <meta name="description" content="RAGHURAM SUBRAMANI ~ COMPROMYSE | Hacker & Programmer"> +        <meta charset="UTF-8"> +        <meta name="viewport" content="width=device-width, initial-scale=1.0"> +        <meta http-equiv="X-UA-Compatible" content="ie=edge"> +        <meta name="description" content="RAGHURAM SUBRAMANI ~ COMPROMYSE | Hacker & Programmer"> -    <title>{{ putpage title }} | COMPROMYSE</title> +        <title>{{ putpage title }} | COMPROMYSE</title> -    <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png"> -    <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png"> -    <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png"> -    <link rel="manifest" href="/assets/favicon/site.webmanifest"> +        <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png"> +        <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png"> +        <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png"> +        <link rel="manifest" href="/assets/favicon/site.webmanifest"> -    <link href="/assets/stylesheet.css" rel="stylesheet" /> +        <link href="/assets/stylesheet.css" rel="stylesheet" /> -    <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=Jersey+15&display=swap" rel="stylesheet"> +        <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=Jersey+15&display=swap" rel="stylesheet"> -  </head> -  <body class="bg-zinc-900 text-pink-300 font-['Jersey_15'] selection:text-pink-900 selection:bg-pink-100 lg:text-xl"> -    <div class="min-h-screen flex flex-col"> +    </head> +    <body class="bg-zinc-900 text-pink-300 font-['Jersey_15'] selection:text-pink-900 selection:bg-pink-100 lg:text-xl"> +        <div class="min-h-screen flex flex-col"> -      {{ include "navbar.html" }} +            {{ include "navbar.html" }} -      <div class="flex flex-grow flex-col"> -        {{ body }} -      </div> +            <div class="flex flex-grow flex-col"> +                {{ body }} +            </div> -      {{ include "footer.html" }} +            {{ include "footer.html" }} -    </div> -  </body> +        </div> +    </body>  </html> | 
