diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 4 | ||||
-rw-r--r-- | templates/project.html | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html index 3adfd82..4f25c81 100644 --- a/templates/base.html +++ b/templates/base.html @@ -5,7 +5,9 @@ <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> + <meta name="description" content="RAGHURAM SUBRAMANI ~ COMPROMYSE | Hacker & Programmer"> + + <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"> diff --git a/templates/project.html b/templates/project.html index b7ca220..3be9125 100644 --- a/templates/project.html +++ b/templates/project.html @@ -5,6 +5,8 @@ <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 name }} | COMPROMYSE</title> <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png"> @@ -30,7 +32,7 @@ <div class="flex flex-grow flex-col py-8 px-14 items-center"> - <div class="text-center flex flex-col gap-4"> + <div class="text-center flex flex-col gap-4 w-full max-w-100"> <h1 class="text-5xl font-semibold">{{ putpage name }}</h1> <div> <h4 class="text-xl">{{ putpage description }}</h4> @@ -40,7 +42,7 @@ <a href="{{ putpage link }}" target="_blank" class="button">{{ putpage linklabel }}</a> </div> - <div class="prose md:prose-lg lg:prose-xl prose-pink prose-invert w-full max-w-256 pt-12"> + <div class="prose md:prose-lg lg:prose-2xl prose-pink prose-invert w-full max-w-256 pt-12"> {{ body }} </div> |