summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 87145fd79f4cf535635005e1042c54b2a9387db9 (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
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <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=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap"
      rel="stylesheet"
    />
    <link href="/static/style.css" rel="stylesheet" />
    <link
      id="favicon"
      rel="icon"
      type="image/x-icon"
      href="static/favicon.ico"
    />

    <link
      rel="stylesheet"
      href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"
    />

    <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>

    <title>Document</title>
  </head>
  <body
    class="w-screen flex flex-col gap-4 items-center bg-stone-50 source-code-pro-500"
  >
    {% include 'partials/palette.html' %}

    {% include 'partials/header.html' %}

    {% include 'partials/about.html' %}

    {% include 'partials/avatars.html' %}

    {% include 'partials/services.html' %}

  </body>
</html>