Init
This commit is contained in:
commit
524f428514
19
.editorconfig
Normal file
19
.editorconfig
Normal file
@ -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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
src/assets/
|
1
requirements-dev.txt
Normal file
1
requirements-dev.txt
Normal file
@ -0,0 +1 @@
|
||||
editorconfig-checker==2.4.0
|
9
src/humans.txt
Normal file
9
src/humans.txt
Normal file
@ -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
|
64
src/index.html
Normal file
64
src/index.html
Normal file
@ -0,0 +1,64 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ru" dir="ltr">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<title>.a2s</title>
|
||||
<link rel="stylesheet" href="/styles.css">
|
||||
<link rel="stylesheet" href="/assets/ttf-iosevka-ss05/15.1.0/stylesheet.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container">
|
||||
<p class="fw-bold text-center">Alexander Popov aka i3k, iiiypuk and other...</p>
|
||||
<p class="text-center"><strong>a2s</strong> — ренкарнация <code>iiiypuk.me</code>.</p>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<div class="container">
|
||||
<section>
|
||||
<h1>История появления</h1>
|
||||
<p>Жопу жечь начало давно, хотелось обособиться, иметь всё своё.<br>
|
||||
GitHub падали, сайты отключали для списка стран, авторы засирали свои репозитории.</p>
|
||||
<p>Так и появился свой <a href="#">GitHub</a>, <a href="#">CDN</a> и другие сервисы.</p>
|
||||
<p>Да, синдромом <a href="https://ru.wikipedia.org/wiki/Синдром_неприятия_чужой_разработки">фатального недостатка</a> и желанием изобретать вилосипеды я болею давно.</p>
|
||||
|
||||
<nav>
|
||||
<h1>Что можно тут найти?</h1>
|
||||
<ul>
|
||||
<!-- <li><a href="#projects">Список проектов</a></li> -->
|
||||
<li><a href="#blog">Мои заметки и мысли</a></li>
|
||||
<!-- <li><a href="#html">Список дизайнерских наработок</a></li> -->
|
||||
</ul>
|
||||
</nav>
|
||||
</section>
|
||||
|
||||
<!-- <section>
|
||||
<a name="projects"></a>
|
||||
<h2>Список проектов</h2>
|
||||
</section> -->
|
||||
|
||||
<section>
|
||||
<a name="blog"></a>
|
||||
<h2>Мои заметки и мысли</h2>
|
||||
<p>Свои мысли и заметки я оставляю в <a href="gemini://a2s.su" target="_blank">Gemini</a> капсуле.</p>
|
||||
<p>HTTP зеркало доступно по адресу
|
||||
<a href="//gemini.a2s.su/" target="_blank">https://gemini.a2s.su/</a></p>
|
||||
</section>
|
||||
|
||||
<!-- <section>
|
||||
<a name="html"></a>
|
||||
<h2>Список дизайнерских наработок</h2>
|
||||
</section> -->
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<p class="text-center">since 2021, by 2021, 2022</p>
|
||||
<p class="text-center"><a href="//git.a2s.su/iiiypuk/a2s" target="_blank">Git repo</a></p>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
31
src/styles.css
Normal file
31
src/styles.css
Normal file
@ -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;
|
||||
}
|
Reference in New Issue
Block a user