diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-02 12:11:44 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-02 12:11:44 +0530 | 
| commit | e9126242db7ed55bb46edfe5e1f983791e338ae0 (patch) | |
| tree | b99f0c839fd9a24b9d32abb69a98013896da604d /templates | |
| parent | 615c18654f9c9fe7e5ccfa9532d0ac0a1f1d7cd0 (diff) | |
add favicon
Diffstat (limited to '')
| -rw-r--r-- | templates/base.html | 8 | ||||
| -rw-r--r-- | templates/project.html | 5 | 
2 files changed, 13 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html index 8128fa2..3adfd82 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,15 +1,23 @@  <!DOCTYPE html>  <html lang="en">    <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">      <title>{{ content "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 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"> +    </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"> diff --git a/templates/project.html b/templates/project.html index 6269bd6..4df9011 100644 --- a/templates/project.html +++ b/templates/project.html @@ -7,6 +7,11 @@      <meta http-equiv="X-UA-Compatible" content="ie=edge">      <title>{{ putpage name }} | 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 href="/assets/stylesheet.css" rel="stylesheet" />      <link rel="preconnect" href="https://fonts.googleapis.com">  | 
