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

<div class="about">
    <div class="about-sidebar">
        <img id="avatar" alt="aaoth-photo"
        width="128" height="128" 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 }}"
                    {% if link.rel %}rel="{{ link.rel }}"{% endif %}>
                        <img class= "link-icon" width="32" height="32"
                             alt="" src="/assets/img/{{ link.type }}-icon.png">
                        <div class="link-text">{{ link.name }}</div>
                    </a>
                </li>
                {% endfor %}
            </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>