aboutsummaryrefslogtreecommitdiffstats
path: root/_layouts/about-page.html
blob: 0a8220633b951cf42f653576fa52ff20500e677d (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
---
layout: default
---

<div class="about">
    <div class="about-sidebar">
        <img id="avatar" alt="aaoth-photo"
        width=128px height=128px src="/assets/img/aaoth-photo.jpeg">
        <div class="about-links">
            <p>other links:</p>
            <ul>
                {% assign sorted_links = site.data.links | sort: "type" %}
                {% for link in sorted_links %}
                <li>
                    <a href="{{ link.link }}">
                        <img 
                       class= "link-icon"
                       alt="{{ link.type }}"
                       width=32px height=32px
                       src="/assets/img/{{ link.type }}-icon.png">
                        <div class="link-text">{{ link.name }}</div>
                    </a>
                </li>
                {% endfor %}
                <li>
                    <a rel="me" href="https://distrotoot.com/@la_ninpre">
                        <img class="link-icon"
                             alt="mastodon"
                             width=32px height=32px
                             src="/assets/img/mastodon-icon.png">
                        <div class="link-text">mastodon</div>
                    </a>
                </li>
            </ul>
        </div>
    </div>

    <div class="about-info">
        {{ content }}
        <div class="latest-post">
            <h2>latest post</h2>
            {% assign post = site.posts[0] %}
            {% include post-preview.html %}
        </div>
    </div>
</div>