commit 524f428514f0074a64b2f107801061a30e13b339 Author: Alexander Popov Date: Sat Apr 9 00:09:41 2022 +0300 Init diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..aab494e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[{*.html,*.css}] +indent_style = tab +indent_size = 4 + +[*.js] +indent_style = space +indent_size = 2 + +[humans.txt] +indent_style = tab +indent_size = 2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1a1f875 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +src/assets/ diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..70f0a51 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1 @@ +editorconfig-checker==2.4.0 diff --git a/src/humans.txt b/src/humans.txt new file mode 100644 index 0000000..99fd172 --- /dev/null +++ b/src/humans.txt @@ -0,0 +1,9 @@ +/* SITE */ +Last Updated: Fri Mar 17 03:45 PM MSK 2022 +Components: Nil + +/* TEAM */ +Chef: Alexander Popov +Contacts: iiiypuk [at] fastmail.fm +Ko-Fi: iiiypuk +From: Russia diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..20a6d1c --- /dev/null +++ b/src/index.html @@ -0,0 +1,64 @@ + + + + + + .a2s + + + + +
+
+

Alexander Popov aka i3k, iiiypuk and other...

+

a2s — ренкарнация iiiypuk.me.

+
+
+ +
+
+
+

История появления

+

Жопу жечь начало давно, хотелось обособиться, иметь всё своё.
+ GitHub падали, сайты отключали для списка стран, авторы засирали свои репозитории.

+

Так и появился свой GitHub, CDN и другие сервисы.

+

Да, синдромом фатального недостатка и желанием изобретать вилосипеды я болею давно.

+ + +
+ + + +
+ +

Мои заметки и мысли

+

Свои мысли и заметки я оставляю в Gemini капсуле.

+

HTTP зеркало доступно по адресу + https://gemini.a2s.su/

+
+ + +
+
+ + + + diff --git a/src/styles.css b/src/styles.css new file mode 100644 index 0000000..1a50876 --- /dev/null +++ b/src/styles.css @@ -0,0 +1,31 @@ +:root { + --font-family: 'Iosevka SS05'; + --font-size: 1.06em; +} + +body { + font-family: var(--font-family); + line-height: 1.3rem; + font-size: var(--font-size); +} + +.container { + max-width: 860px; + margin: 0 auto; +} + +footer { + border-top: 1px solid #999; +} + +section { + border-bottom: 1px solid #ffffff; +} + +.text-center { + text-align: center; +} + +.fw-bold { + font-weight: bold; +}