blob: 024731cfb222260a3ac4b954a029f3a63e1e293c (
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
|
---
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 }}"
{%- if link.rel -%}rel="{{ link.rel }}"{%- endif -%}>
<img
class= "link-icon"
width=32px height=32px
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>
|