aboutsummaryrefslogtreecommitdiff
path: root/templates/project.html
blob: 77950d24935c4e50509ffd9319270dfcc9530e01 (plain)
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
36
37
38
<!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>{{ putpage name }} | COMPROMYSE</title>

    <link href="/assets/stylesheet.css" rel="stylesheet" />
    <link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap" rel="stylesheet">
  </head>
  <body class="bg-zinc-900 text-pink-300 font-[Pixelify_Sans] selection:text-pink-900 selection:bg-pink-100 lg:text-xl">
    <div class="min-h-screen flex flex-col">

      {{ include "navbar.html" }}

      <div class="flex flex-grow flex-col py-8 px-14 items-center">

        <div class="text-center flex flex-col gap-4">
          <h1 class="text-5xl font-semibold">{{ putpage name }}</h1>
          <div>
            <h4 class="text-xl">{{ putpage description }}</h4>
            <h6 class="text-center text-sm border-t-4 mt-2 py-1">{{ putpage languages }}</h6>
          </div>

          <a href="{{ putpage link }}" target="_blank" class="hover:underline hover:text-pink-900 hover:bg-pink-100 p-1 border-2">{{ putpage linklabel }}</a>
        </div>

        <div class="prose md:prose-lg lg:prose-xl prose-pink prose-invert w-full pt-12">
          {{ body }}
        </div>

      </div>
      {{ include "footer.html" }}

    </div>
  </body>
</html>