<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aaoth.xyz/_sass/main.scss, branch music-projects</title>
<subtitle>aaoth.xyz website</subtitle>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/'/>
<entry>
<title>tweak music project page</title>
<updated>2021-08-23T17:11:32+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-08-23T17:11:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=e3fa69262e3dbf65f92580f3600540393308587d'/>
<id>e3fa69262e3dbf65f92580f3600540393308587d</id>
<content type='text'>
also fix header that was wrong.
add styles for titles with backlink.
&amp; other changes (see diff, i'm lazy)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also fix header that was wrong.
add styles for titles with backlink.
&amp; other changes (see diff, i'm lazy)
</pre>
</div>
</content>
</entry>
<entry>
<title>tweak logo image scaling and fix logo urls in project page</title>
<updated>2021-08-21T19:41:01+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-08-21T19:41:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=d7118a8b627e1f5c7d7ebde49b5f52c364b37b32'/>
<id>d7118a8b627e1f5c7d7ebde49b5f52c364b37b32</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>make music project list page look like art menu</title>
<updated>2021-08-20T19:39:54+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-08-20T19:39:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=a7a43fa5e99ebda7905604306ec2cf0b03c425f7'/>
<id>a7a43fa5e99ebda7905604306ec2cf0b03c425f7</id>
<content type='text'>
also snippet that makes art menu is now separated as mixin (very
powerful thing, btw).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also snippet that makes art menu is now separated as mixin (very
powerful thing, btw).
</pre>
</div>
</content>
</entry>
<entry>
<title>add info about music projects</title>
<updated>2021-08-18T21:22:00+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-08-18T21:22:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=9dcaf807a98362a708136284534ee343dd3f2742'/>
<id>9dcaf807a98362a708136284534ee343dd3f2742</id>
<content type='text'>
much of stuff included here is subject to change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
much of stuff included here is subject to change.
</pre>
</div>
</content>
</entry>
<entry>
<title>css: change color of links inside posts</title>
<updated>2021-07-16T20:31:06+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-07-16T20:31:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=3ddb8c69f9cd5418bbdb28967fa6f80818f349cc'/>
<id>3ddb8c69f9cd5418bbdb28967fa6f80818f349cc</id>
<content type='text'>
gray ones was kinda boring and also not recognizable as links. now
they're blue, but one can confuse them with titles and subtitles, so
maybe i'll change this later.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
gray ones was kinda boring and also not recognizable as links. now
they're blue, but one can confuse them with titles and subtitles, so
maybe i'll change this later.
</pre>
</div>
</content>
</entry>
<entry>
<title>modify art page to display thumbnails</title>
<updated>2021-05-26T21:19:10+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-05-26T21:13:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=324991d82ef26798ed5842a6fe03eabc798ff497'/>
<id>324991d82ef26798ed5842a6fe03eabc798ff497</id>
<content type='text'>
thumbnails are currently created using shell script and require
imagemagick installed on the server. i know it's stupid, but i think
that including thumbnails to repo is also stupid.

maybe later i replace this script with actual jekyll plugin, but for
this i'll need to familiarize myself with ruby.
but now i use following addition to the git hook on the server:

```
[ -f "$TMP_GIT_CLONE/art/thumbs.sh" ] &amp;&amp; {
    dir="$PWD"
    cd "$TMP_GIT_CLONE/art/" &amp;&amp; sh thumbs.sh &amp;&amp; cd "$dir"
}
```

it happens after cloning to remote repo and before building with bundle.

overall, this is a bodge now, it recompiles all thumbnails every time
due to quirks in my current setup.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
thumbnails are currently created using shell script and require
imagemagick installed on the server. i know it's stupid, but i think
that including thumbnails to repo is also stupid.

maybe later i replace this script with actual jekyll plugin, but for
this i'll need to familiarize myself with ruby.
but now i use following addition to the git hook on the server:

```
[ -f "$TMP_GIT_CLONE/art/thumbs.sh" ] &amp;&amp; {
    dir="$PWD"
    cd "$TMP_GIT_CLONE/art/" &amp;&amp; sh thumbs.sh &amp;&amp; cd "$dir"
}
```

it happens after cloning to remote repo and before building with bundle.

overall, this is a bodge now, it recompiles all thumbnails every time
due to quirks in my current setup.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix clipping of first line of post on small screens</title>
<updated>2021-05-23T17:37:48+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-05-23T17:37:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=95e872ed91b2254f6486d8a106b09e4a80bc03e5'/>
<id>95e872ed91b2254f6486d8a106b09e4a80bc03e5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tweak art menu and add more pictures</title>
<updated>2021-02-23T18:41:36+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-02-23T18:39:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=62e974a0832e919da8a919fcaa78adaa68e74505'/>
<id>62e974a0832e919da8a919fcaa78adaa68e74505</id>
<content type='text'>
add two new categories - drawings and logos.

this css tinkering is so time consuming &gt;_&lt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
add two new categories - drawings and logos.

this css tinkering is so time consuming &gt;_&lt;
</pre>
</div>
</content>
</entry>
<entry>
<title>add categories to art page</title>
<updated>2021-02-23T11:23:15+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-02-23T11:23:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=97c19c29cd3b9d7d69e103b6b78cd299a6428086'/>
<id>97c19c29cd3b9d7d69e103b6b78cd299a6428086</id>
<content type='text'>
whooah!

there is some tough liquid-tagging involved.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
whooah!

there is some tough liquid-tagging involved.
</pre>
</div>
</content>
</entry>
<entry>
<title>add art gallery and tweak header</title>
<updated>2021-02-22T22:46:02+00:00</updated>
<author>
<name>la-ninpre</name>
<email>leobrekalini@gmail.com</email>
</author>
<published>2021-02-22T22:46:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.aaoth.xyz/aaoth.xyz/commit/?id=25843593a10da466a1e769b8fdf17284e24d37e6'/>
<id>25843593a10da466a1e769b8fdf17284e24d37e6</id>
<content type='text'>
i think that the pictures are just placeholders now. i will try to
improve this 'gallery' a bit later.

also, header is now fixed with transparent background.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
i think that the pictures are just placeholders now. i will try to
improve this 'gallery' a bit later.

also, header is now fixed with transparent background.
</pre>
</div>
</content>
</entry>
</feed>
