summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 396c6637750bb15d8647bf6f824f48e126b9759e (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
44
45
46
47
<!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 overflow-x-hidden flex flex-col gap-4 items-center bg-stone-50 source-code-pro-500 p-2"
  >
    {% include 'partials/header.html' %}

    <div class="flex flex-wrap w-full md:w-3/4 justify-around gap-4">
      <div class="w-full md:w-1/3">
        {% include 'partials/about.html' %}
        {% include 'partials/palette.html' %}
        {% include 'partials/services.html' %}
      </div>
      <div class="w-full md:w-1/3">
        {% include 'partials/avatars.html' %}
      </div>
    </div>


  </body>
</html>