summaryrefslogtreecommitdiffstats
path: root/templates/layouts/index.html
blob: 9b435033dacb0399d03acd0d1368fec07fa71e25 (plain) (blame)
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
48
49
50
51
52
53
54
55
<main>
  <section class="l-landing">
    <header class="l-landing__banner">
      <div class="c-landing-banner l-container l-container--pad-x l-container--pad-y l-container--content">
        <h1 class="c-landing-banner__title">
          <span class="c-landing-banner__title-inner">
            I'm a <strong class="c-landing-banner__emph">red fox</strong> in disguise.
          </span>
        </h1>
        <p>
          Welcome to my website! I'm Volpeon, a red fox disguised as a human.
          I enjoy programming, creating vector art and designing user interfaces.
        </p>
      </div>
    </header>

    <section class="l-landing__content">
      <div class="l-container l-container--pad-x l-container--pad-y l-container--content s-body">
        <h1 class="c-section-heading">My profiles</h1>

        <div class="l-card-grid">
          $for(profiles)$
            $if(it.url)$
              <a class="c-card" href="$it.url$">
            $else$
              <div class="c-card">
            $endif$
                <div class="c-card__content">
                  <div>
                    <strong class="u-db">$it.platform$</strong>
                    <small class="u-db">$it.username$</small>
                  </div>
                  $if(it.url)$
                    <svg class="c-card__icon o-icon">
                      <use href="#icon-link-external"></use>
                    </svg>
                  $endif$
                </div>
            $if(it.url)$
              </a>
            $else$
              </div>
            $endif$
          $endfor$
        </div>

$body$
      </div>
    </section>
  </section>

  $-- <footer class="c-footer l-container">
  $--   9thPK7O3xn
  $-- </footer>
</main>