all repos — aaoth.xyz @ a546917f088f049e91aca075a222096dea83fb2b

aaoth.xyz website

_layouts/about-page.html (view raw)

 1---
 2layout: default
 3---
 4
 5<div class="about">
 6    <div class="about-sidebar">
 7        <img id="avatar" alt="aaoth-photo"
 8        width="128" height="128" src="/assets/img/aaoth-photo.jpeg">
 9        <div class="about-links">
10            <p>other links:</p>
11            <ul>
12                {%- assign sorted_links = site.data.links | sort: "type" -%}
13                {% for link in sorted_links %}
14                <li>
15                    <a href="{{ link.link }}"
16                    {% if link.rel %}rel="{{ link.rel }}"{% endif %}>
17                        <img class= "link-icon" width="32" height="32"
18                             alt="{{ link.type }} logo"
19                             src="/assets/img/{{ link.type }}-icon.png">
20                        <div class="link-text">{{ link.name }}</div>
21                    </a>
22                </li>
23                {% endfor %}
24            </ul>
25        </div>
26    </div>
27
28    <div class="about-info">
29        {{ content }}
30        <div class="latest-post">
31            <h2>latest post</h2>
32            {% assign post = site.posts[0] %}
33            {% include post-preview.html %}
34        </div>
35    </div>
36</div>
37