all repos — aaoth.xyz @ 3e30c7241cb18c5e02195e889b9e4dc73490214a

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" src="/assets/img/aaoth-photo.jpeg">
 8        <div class="about-links">
 9            <p>other links:</p>
10            <ul>
11                {% assign sorted_links = site.data.links | sort: "type" %}
12                {% for link in sorted_links %}
13                <li>
14                    <a href="{{ link.link }}">
15                        <img 
16                       class= "link-icon"
17                       alt="{{ link.type }}"
18                       width=32px height=32px
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