Initial commit: placeholder page with typewriter font and cream background

This commit is contained in:
isogonalconguate 2026-05-03 02:23:49 +03:00
commit 5c91b7d70c
8 changed files with 81 additions and 0 deletions

35
HANDOFF.md Normal file
View file

@ -0,0 +1,35 @@
# Handoff: iscg.blog Setup
## Что сделано
- Создан `index.html` с заглушкой
- Фон: молочный (#f5f5f0)
- Шрифт: печатная машинка (Courier New)
- Текст: "сейчас тут ничего нет, но скоро что-то появится."
## Что нужно сделать на сервере
1. Клонировать репозиторий:
```bash
git clone https://git.iscg.dev/mikl/mikl-blog.git /var/www/iscg.blog
```
2. Настроить Caddy:
```
iscg.blog {
root * /var/www/iscg.blog
file_server
}
```
3. Перезапустить Caddy:
```bash
sudo systemctl reload caddy
```
## Домен
iscg.blog уже направлен на 158.160.136.83 (сказал пользователь)
## Дизайн-предпочтения пользователя
- Фон: молочный/кремовый (см. референсы в чате)
- Шрифт: печатная машинка, монospace
- Минимализм
- Точки в конце предложений эстетичны

11
README.md Normal file
View file

@ -0,0 +1,11 @@
# iscg.blog
Личный блог.
## Структура
- `index.html` — заглушка на время разработки
- Домен: iscg.blog
- Репозиторий: git.iscg.dev/mikl/mikl-blog
## Запуск
Статические файлы, деплой через Caddy на сервере 158.160.136.83.

Binary file not shown.

Binary file not shown.

BIN
chroma/chroma.sqlite3 Normal file

Binary file not shown.

35
index.html Normal file
View file

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mikl</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #f5f5f0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
}
.message {
font-size: 1.2rem;
color: #1a1a1a;
text-align: center;
padding: 2rem;
line-height: 1.6;
}
</style>
</head>
<body>
<p class="message">сейчас тут ничего нет, но скоро что-то появится.</p>
</body>
</html>