all repos — aaoth.xyz @ 2e9114bd684688b3ffbf3e3a7d49cbe9d5b3e5bd

aaoth.xyz website

add about page content
la-ninpre leobrekalini@gmail.com
Mon, 07 Dec 2020 14:27:05 +0300
commit

2e9114bd684688b3ffbf3e3a7d49cbe9d5b3e5bd

parent

f54735882a686c5ccf242695748325e16e545739

A _data/links.yml

@@ -0,0 +1,21 @@

+- name: github + link: https://github.com/la-ninpre + type: github +- name: youtube + link: https://www.youtube.com/channel/UCLW6sGRLddTR-fB-Ae5uv6Q/ + type: youtube +- name: cgit + link: https://git.aaoth.xyz + type: git +- name: fossil + link: https://fsl.aaoth.xyz + type: fsl +- name: aaoth + link: https://aaoth.bandcamp.com + type: bandcamp +- name: spiral materivm + link: https://spiralmaterivm.bandcamp.com + type: bandcamp +- name: hälsorisk + link: https://haelsorisk.bandcamp.com + type: bandcamp
A _layouts/about-page.html

@@ -0,0 +1,30 @@

+--- +layout: default +--- + +<div class="about"> + <div class="about-sidebar"> + <img id="avatar" alt="aaoth-photo" 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 }}" + 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> +</div>
M _sass/main.scss_sass/main.scss

@@ -49,11 +49,9 @@ ul {

display: inline-flex; width: 430px; height: 32px; - margin: 0; padding: 50px 30px 0 0; flex-direction: row; justify-content: space-between; - list-style-type: none; border-bottom: $border-nav; } }

@@ -65,6 +63,44 @@ font-family: $font-title;

font-weight: 500; } +ul { + margin: 0; + padding: 0; + li { + list-style-type:none; + } +} + +.about { + padding: 1em 0; + display: flex; + flex-direction: row; + img#avatar { + border-radius: 100%; + height: 128px; + } + .about-sidebar { + flex: 23%; + } + .about-links { + margin-top: 1em; + .link-icon { + height: 32px; + } + .link-text { + display: inline; + position: relative; + bottom: 0.75em; + } + } + .about-info { + width: 100%; + p:first-child { + margin-top: 0; + } + } +} + .post { padding: 1em; margin: 1em 0;

@@ -86,11 +122,8 @@ }

.post-page .post-header { ul { - margin: 0; - padding: 0; display: flex; flex-direction: row; - list-style-type: none; li { margin-right: 0.5em; a {

@@ -144,7 +177,7 @@ margin: 0;

} } -@media only screen and (max-width: 700px) { +@media only screen and (max-width: 760px) { nav { margin-bottom: 5vh; ul {

@@ -159,6 +192,11 @@ position: absolute;

top: 0; } } + .about { + .about-info { + padding: 0 2%; + } + } } @media (prefers-color-scheme: dark) {
M about.mdabout.md

@@ -1,8 +1,36 @@

--- title: about -permalink: /about/ +layout: about-page --- -# about +# hi, i'm la-ninpre + +i am also known as aaoth or lev brekalov. + +i was thinking a lot about the reason i have so many names, but i could'n find +a clear answer. maybe i'll try to make myself up somehow, but now it's messy. + +anyway, since long time i tried to follow do-it-yourself principle, and this +website is an example of this. web-development (if you can call it like that) +is a new thing for me and primary reason of me doing this is probably some +kind of web-presence. other important thing for me is the ability to create +anything i want and make things look how i want them to look. for comparison, +none of the popular social platforms can give me this ability. -here i'll tell smth about myself +i'm creating some music and other stuff related to art, such as fonts, random +other pictures and occasional poems. style of my creations changed a lot over +time but it's always something unusual, non-professional and not meant to be +very popular. + +i'm also very interested in sciences (especially biology, chemistry and +linguistics). i speak russian, speak a little bit english and also +[toki pona](https://tokipona.org) :D + +last year i've been diving into world of unix-related software and operating +systems, namely gnu/linux and openbsd. for all past years i've been a windows +user, but then i realized that many things are more comfortable in +unix userland. +additionally, it's important for me to understand *what* exactly i'm doing, and +the last thing is nearly impossible in closed oses like windows or mac. + +pona tawa sina!
M art.mdart.md

@@ -1,8 +1,5 @@

--- title: art -permalink: /art/ --- - -# art here i'll show some graphical stuff
M index.mdindex.md

@@ -1,6 +1,5 @@

--- title: home --- -# wait -There's nothing yet, but soon +there's nothing yet, but soon
M music.mdmusic.md

@@ -1,7 +1,5 @@

--- title: music -permalink: /music/ --- -# music here will be an overview of my musical projects.
M other.mdother.md

@@ -1,26 +1,20 @@

--- title: other -permalink: /other/ --- -# other +miscellaneous posts about different things. -here will be some misc stuff +filter by tag: {% for tag in site.tags %}[{{ tag[0] }}](/tags/{{ tag[0] }}) +{% endfor %} <div class="posts"> {% for post in site.posts %} <div class="post"> - <h2><a href="{{ post.url}}">{{ post.title }}</a></h2> - <small> - <p>{{ post.date | date_to_string }}</p> - {% if post.tags.size > 0 %} - <p>| tags: </p> - {% for tag in post.tags %} - <a href="/tags/{{ tag }}">{{ tag }}</a> - {% endfor %} - {% endif %} - </small> + <h2 id="{{ post.title | slugify }}"> + <a href="{{ post.url}}">{{ post.title }}</a> + </h2> {{ post.content }} + <small><p>{{ post.date | date_to_string }}</p></small> </div> {% endfor %} </div>