diff options
Diffstat (limited to '')
| -rw-r--r-- | templates/project.html | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/templates/project.html b/templates/project.html new file mode 100644 index 0000000..02dd526 --- /dev/null +++ b/templates/project.html @@ -0,0 +1,25 @@ +<!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 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 prose md:prose-lg lg:prose-xl prose-pink prose-invert py-8 px-14"> +        {{ body }} +      </div> + +      {{ include "footer.html" }} + +    </div> +  </body> +</html> | 
