feat: новый раздел Шпаргалки. новая статья Git Workflow для Hugo блога
This commit is contained in:
parent
9e9fcf1721
commit
4c36dd4ade
|
|
@ -16,10 +16,15 @@
|
|||
pageRef = "about"
|
||||
weight = 10
|
||||
|
||||
#[[main]]
|
||||
# name = "Статьи"
|
||||
# pageRef = "posts"
|
||||
# weight = 20
|
||||
[[main]]
|
||||
name = "Статьи"
|
||||
pageRef = "posts"
|
||||
weight = 20
|
||||
|
||||
[[main]]
|
||||
name = "Шпаргалки"
|
||||
pageRef = "cheatsheets"
|
||||
weight = 21
|
||||
|
||||
#[[main]]
|
||||
# name = "Проекты"
|
||||
|
|
|
|||
|
|
@ -126,12 +126,12 @@ forgejoDefaultServer = "https://v11.next.forgejo.org"
|
|||
cardView = false
|
||||
|
||||
[term]
|
||||
showHero = true
|
||||
showHero = false
|
||||
heroStyle = "background" # valid options: basic, big, background, thumbAndBackground
|
||||
showBreadcrumbs = false
|
||||
showViews = false
|
||||
showLikes = false
|
||||
showTableOfContents = true
|
||||
showTableOfContents = false
|
||||
groupByYear = false
|
||||
cardView = false
|
||||
cardViewScreenWidth = false
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
title: "Категории"
|
||||
---
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: "Шпаргалки"
|
||||
description: "Справочники и шпаргалки по DevOps, Kubernetes, Git, Hugo и другим инструментам. Только практика, без воды."
|
||||
---
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.0 MiB |
|
|
@ -0,0 +1,398 @@
|
|||
---
|
||||
title: "Git Workflow для Hugo блога"
|
||||
date: 2026-02-23
|
||||
draft: false
|
||||
description: "Универсальная шпаргалка по работе с Hugo блогом через Git с двумя окружениями. Префиксы коммитов, откаты, типичные ошибки и решения."
|
||||
tags: ["git", "workflow", "hugo", "cheatsheet"]
|
||||
categories: ["Шпаргалки"]
|
||||
showComments: true
|
||||
---
|
||||
|
||||
## Структура проекта
|
||||
|
||||
```
|
||||
~/projects/blog/ ← одна папка, две ветки
|
||||
├── main ← production (blog.ru)
|
||||
└── dev ← development (dev.blog.ru)
|
||||
```
|
||||
|
||||
**Принцип:** Одна папка, две ветки. Переключение через `git checkout`, не через разные директории.
|
||||
|
||||
---
|
||||
|
||||
## Золотые правила
|
||||
|
||||
✅ **ВСЕ изменения только через dev**
|
||||
✅ В main попадает только через `git merge dev`
|
||||
✅ Никогда не редактировать находясь на main
|
||||
✅ Всегда `git pull` перед началом работы
|
||||
✅ Проверяй на dev окружении перед публикацией
|
||||
|
||||
❌ Не редактировать на ветке main
|
||||
❌ Не делать `git push --force` в main
|
||||
❌ Не забывать `git pull` перед merge
|
||||
|
||||
---
|
||||
|
||||
## Префиксы для commit сообщений
|
||||
|
||||
### Основные
|
||||
|
||||
**feat:** - новая функциональность
|
||||
```bash
|
||||
feat: новая статья про Kubernetes
|
||||
feat: добавил комментарии
|
||||
```
|
||||
|
||||
**fix:** - исправление ошибки
|
||||
```bash
|
||||
fix: опечатка в статье
|
||||
fix: сломанная ссылка
|
||||
```
|
||||
|
||||
**style:** - форматирование, стили
|
||||
```bash
|
||||
style: настроил CSS для тёмной темы
|
||||
style: исправил отступы
|
||||
```
|
||||
|
||||
**docs:** - изменения в документации
|
||||
```bash
|
||||
docs: обновил README
|
||||
```
|
||||
|
||||
**refactor:** - рефакторинг без изменения функций
|
||||
```bash
|
||||
refactor: упростил структуру конфигов
|
||||
```
|
||||
|
||||
**chore:** - рутинные задачи
|
||||
```bash
|
||||
chore: обновил зависимости
|
||||
chore: удалил старые файлы
|
||||
```
|
||||
|
||||
**revert:** - откат коммита
|
||||
```bash
|
||||
revert: "feat: добавил комментарии"
|
||||
```
|
||||
|
||||
### Дополнительные
|
||||
|
||||
**perf:** - улучшение производительности
|
||||
**test:** - тесты
|
||||
**build:** - изменения сборки
|
||||
**ci:** - изменения CI/CD
|
||||
|
||||
---
|
||||
|
||||
## Создание новой статьи
|
||||
|
||||
```bash
|
||||
cd ~/projects/blog
|
||||
|
||||
# Переключаемся на dev
|
||||
git checkout dev
|
||||
git pull origin dev
|
||||
|
||||
# Создаём статью
|
||||
hugo new content posts/название-статьи/index.md
|
||||
|
||||
# Локальный предпросмотр
|
||||
hugo server -D --bind 0.0.0.0
|
||||
|
||||
# Редактируем, сохраняем, проверяем в браузере
|
||||
|
||||
# Коммитим
|
||||
git add .
|
||||
git commit -m "feat: новая статья про X"
|
||||
git push origin dev
|
||||
# → Автосборка → dev.blog.ru
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Публикация в production
|
||||
|
||||
```bash
|
||||
cd ~/projects/blog
|
||||
|
||||
# Убеждаемся что dev актуален
|
||||
git checkout dev
|
||||
git pull origin dev
|
||||
|
||||
# Переключаемся на main и мержим
|
||||
git checkout main
|
||||
git pull origin main
|
||||
git merge dev --no-edit
|
||||
git push origin main
|
||||
# → Автосборка → blog.ru
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Исправление опечатки
|
||||
|
||||
```bash
|
||||
cd ~/projects/blog
|
||||
|
||||
# ВСЕ изменения через dev!
|
||||
git checkout dev
|
||||
git pull origin dev
|
||||
|
||||
# Исправляем
|
||||
nano content/posts/статья/index.md
|
||||
|
||||
# Коммитим
|
||||
git add .
|
||||
git commit -m "fix: опечатка в статье"
|
||||
git push origin dev
|
||||
|
||||
# Проверяем на dev, если ОК - публикуем
|
||||
git checkout main
|
||||
git merge dev --no-edit
|
||||
git push origin main
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Обновление темы (Git submodule)
|
||||
|
||||
```bash
|
||||
cd ~/projects/blog
|
||||
|
||||
git checkout dev
|
||||
git pull origin dev
|
||||
|
||||
# Обновляем тему
|
||||
git submodule update --remote themes/название-темы
|
||||
|
||||
# Коммитим
|
||||
git add themes/название-темы
|
||||
git commit -m "chore: обновил тему"
|
||||
git push origin dev
|
||||
|
||||
# Проверяем на dev, если ОК - публикуем
|
||||
git checkout main
|
||||
git merge dev --no-edit
|
||||
git push origin main
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Откат изменений
|
||||
|
||||
### Когда откатывать vs когда делать fix
|
||||
|
||||
**ОТКАТ → Эксперимент провалился:**
|
||||
- Функция не работает
|
||||
- Стили сломали дизайн
|
||||
- Тестировал - не зашло
|
||||
|
||||
**НОВЫЙ КОММИТ → Исправление правильного:**
|
||||
- Опечатка в статье
|
||||
- Обновление информации
|
||||
- Улучшение формулировок
|
||||
|
||||
---
|
||||
|
||||
### Вариант 1: Git revert (безопасный)
|
||||
|
||||
```bash
|
||||
# Смотрим последние коммиты
|
||||
git log --oneline -5
|
||||
|
||||
# Создаём коммит который отменяет изменения
|
||||
git revert HEAD
|
||||
git push origin dev
|
||||
```
|
||||
|
||||
**Плюсы:** История сохранена
|
||||
**Минусы:** Создаёт дополнительный коммит
|
||||
|
||||
---
|
||||
|
||||
### Вариант 2: Git reset (жёсткий откат)
|
||||
|
||||
```bash
|
||||
# Откатываемся на предыдущий коммит
|
||||
git log --oneline -5
|
||||
git reset --hard HEAD~1
|
||||
|
||||
# Принудительно пушим
|
||||
git push origin dev --force
|
||||
```
|
||||
|
||||
**Плюсы:** Чистая история
|
||||
**Минусы:** Опасно, нужен `--force`
|
||||
|
||||
---
|
||||
|
||||
### Откат несохранённых изменений
|
||||
|
||||
```bash
|
||||
# Откатить один файл
|
||||
git checkout -- путь/к/файлу
|
||||
|
||||
# Откатить всё
|
||||
git reset --hard HEAD
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Проверка статуса
|
||||
|
||||
```bash
|
||||
# На какой ветке?
|
||||
git branch
|
||||
# * dev ← текущая ветка
|
||||
|
||||
# Что изменилось?
|
||||
git status
|
||||
|
||||
# История коммитов
|
||||
git log --oneline -10
|
||||
|
||||
# Разница между dev и main
|
||||
git diff main..dev
|
||||
|
||||
# График веток
|
||||
git log --oneline --graph --all -10
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Типичные ошибки и их решения
|
||||
|
||||
### Случайно начал работать на main
|
||||
|
||||
```bash
|
||||
# Отменяем все изменения (НЕ коммитили)
|
||||
git checkout -- .
|
||||
|
||||
# Переключаемся на dev
|
||||
git checkout dev
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### Случайно сделал `git add` на main
|
||||
|
||||
```bash
|
||||
# Убираем из staging
|
||||
git reset
|
||||
|
||||
# Переключаемся на dev
|
||||
git checkout dev
|
||||
|
||||
# Добавляем правильно
|
||||
git add .
|
||||
git commit -m "feat: ..."
|
||||
git push origin dev
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### Случайно закоммитил в main
|
||||
|
||||
```bash
|
||||
# Откатываем коммит (изменения остаются)
|
||||
git reset --soft HEAD~1
|
||||
|
||||
# Переключаемся на dev
|
||||
git checkout dev
|
||||
|
||||
# Коммитим правильно
|
||||
git add .
|
||||
git commit -m "feat: ..."
|
||||
git push origin dev
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
### Случайно запушил в main
|
||||
|
||||
```bash
|
||||
# Откатываем на main
|
||||
git checkout main
|
||||
git reset --hard HEAD~1
|
||||
git push origin main --force
|
||||
|
||||
# Переключаемся на dev и делаем правильно
|
||||
git checkout dev
|
||||
git add .
|
||||
git commit -m "feat: ..."
|
||||
git push origin dev
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Быстрые команды
|
||||
|
||||
```bash
|
||||
# Переключиться на dev и подтянуть изменения
|
||||
git checkout dev && git pull origin dev
|
||||
|
||||
# Опубликовать dev в main
|
||||
git checkout main && git pull origin main && git merge dev --no-edit && git push origin main
|
||||
|
||||
# Проверить доступность сайта
|
||||
curl -I https://blog.ru
|
||||
curl -I https://dev.blog.ru
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Полезные алиасы для ~/.gitconfig
|
||||
|
||||
```ini
|
||||
[alias]
|
||||
st = status
|
||||
co = checkout
|
||||
br = branch
|
||||
ci = commit
|
||||
unstage = reset HEAD --
|
||||
last = log -1 HEAD
|
||||
visual = log --oneline --graph --all -10
|
||||
dev = checkout dev
|
||||
prod = checkout main
|
||||
```
|
||||
|
||||
После этого можно:
|
||||
```bash
|
||||
git dev # → git checkout dev
|
||||
git prod # → git checkout main
|
||||
git visual # → git log --oneline --graph --all -10
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Стандартный workflow
|
||||
|
||||
```bash
|
||||
# 1. Начало работы
|
||||
cd ~/projects/blog
|
||||
git checkout dev
|
||||
git pull origin dev
|
||||
|
||||
# 2. Создаём/редактируем контент
|
||||
hugo new content posts/название/index.md
|
||||
hugo server -D --bind 0.0.0.0
|
||||
|
||||
# 3. Коммитим
|
||||
git add .
|
||||
git commit -m "feat: новая статья"
|
||||
git push origin dev
|
||||
|
||||
# 4. Проверяем на dev окружении
|
||||
|
||||
# 5. Публикуем в production
|
||||
git checkout main
|
||||
git pull origin main
|
||||
git merge dev --no-edit
|
||||
git push origin main
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
**Помни:** Dev для экспериментов, main для проверенного контента. Всегда тестируй перед публикацией.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
title: "Статьи"
|
||||
---
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
title: "Теги"
|
||||
---
|
||||
|
|
@ -75,6 +75,7 @@ sharing:
|
|||
|
||||
shortcode:
|
||||
recent_articles: "Недавние"
|
||||
posts: "Статьи"
|
||||
|
||||
recent:
|
||||
show_more: "Показать еще"
|
||||
|
|
|
|||
|
|
@ -356,6 +356,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -464,6 +500,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -552,7 +622,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -562,7 +632,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -384,6 +384,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -492,6 +528,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -899,7 +969,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -909,7 +979,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -691,7 +761,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -701,7 +771,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Categories",
|
||||
"articleSection": "Категории",
|
||||
"name": "DevOps Практики",
|
||||
"headline": "DevOps Практики",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">DevOps Практики</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -2174,7 +2164,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2184,7 +2174,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Categories",
|
||||
"articleSection": "Категории",
|
||||
"name": "Homelab",
|
||||
"headline": "Homelab",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Homelab</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1631,7 +1621,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1641,7 +1631,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@
|
|||
|
||||
|
||||
|
||||
<title>Categories · Олег Казанин</title>
|
||||
<meta name="title" content="Categories · Олег Казанин">
|
||||
<title>Категории · Олег Казанин</title>
|
||||
<meta name="title" content="Категории · Олег Казанин">
|
||||
|
||||
|
||||
|
||||
|
|
@ -69,13 +69,13 @@
|
|||
|
||||
<meta property="og:url" content="http://192.168.11.190:1313/categories/">
|
||||
<meta property="og:site_name" content="Олег Казанин">
|
||||
<meta property="og:title" content="Categories">
|
||||
<meta property="og:title" content="Категории">
|
||||
<meta property="og:locale" content="ru">
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="Categories">
|
||||
<meta name="twitter:title" content="Категории">
|
||||
|
||||
|
||||
|
||||
|
|
@ -252,9 +252,9 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Categories",
|
||||
"name": "Categories",
|
||||
"headline": "Categories",
|
||||
"articleSection": "Категории",
|
||||
"name": "Категории",
|
||||
"headline": "Категории",
|
||||
|
||||
"inLanguage": "ru",
|
||||
"url" : "http://192.168.11.190:1313/categories/",
|
||||
|
|
@ -262,11 +262,11 @@
|
|||
"@type": "Person",
|
||||
"name": "Олег Казанин"
|
||||
},
|
||||
"copyrightYear": "2026",
|
||||
"dateCreated": "2026-02-23T00:00:00\u002b00:00",
|
||||
"datePublished": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
"dateModified": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -609,7 +679,7 @@
|
|||
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Categories</h1>
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Категории</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
||||
|
||||
|
|
@ -715,6 +785,23 @@
|
|||
</article>
|
||||
|
||||
|
||||
<article class="w-full px-2 my-3 overflow-hidden sm:w-1/2 md:w-1/3 lg:w-1/4 xl:w-1/4">
|
||||
<h2 class="flex items-center">
|
||||
<a
|
||||
class="text-xl font-medium decoration-primary-500 hover:underline hover:underline-offset-2"
|
||||
href="/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/"
|
||||
>Шпаргалки</a
|
||||
>
|
||||
|
||||
<span class="px-2 text-base text-primary-500">·</span>
|
||||
<span class="text-base text-neutral-400">
|
||||
1
|
||||
</span>
|
||||
|
||||
</h2>
|
||||
</article>
|
||||
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
|
|
@ -759,7 +846,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -769,7 +856,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -1,40 +1,40 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Categories on Олег Казанин</title>
|
||||
<title>Категории on Олег Казанин</title>
|
||||
<link>http://192.168.11.190:1313/categories/</link>
|
||||
<description>Recent content in Categories on Олег Казанин</description>
|
||||
<description>Recent content in Категории on Олег Казанин</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>ru</language>
|
||||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<atom:link href="http://192.168.11.190:1313/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Mon, 23 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Шпаргалки</title>
|
||||
<link>http://192.168.11.190:1313/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>DevOps Практики</title>
|
||||
<link>http://192.168.11.190:1313/categories/devops-%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D0%BA%D0%B8/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Wed, 18 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/categories/devops-%D0%BF%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D0%BA%D0%B8/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Homelab</title>
|
||||
<link>http://192.168.11.190:1313/categories/homelab/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/categories/homelab/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Kubernetes</title>
|
||||
<link>http://192.168.11.190:1313/categories/kubernetes/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Wed, 18 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/categories/kubernetes/</guid>
|
||||
<description></description>
|
||||
|
|
@ -44,12 +44,22 @@
|
|||
<item>
|
||||
<title>Веб-Разработка</title>
|
||||
<link>http://192.168.11.190:1313/categories/%D0%B2%D0%B5%D0%B1-%D1%80%D0%B0%D0%B7%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%BA%D0%B0/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Mon, 16 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/categories/%D0%B2%D0%B5%D0%B1-%D1%80%D0%B0%D0%B7%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%BA%D0%B0/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Homelab</title>
|
||||
<link>http://192.168.11.190:1313/categories/homelab/</link>
|
||||
<pubDate>Sun, 02 Nov 2025 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/categories/homelab/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Categories",
|
||||
"articleSection": "Категории",
|
||||
"name": "Kubernetes",
|
||||
"headline": "Kubernetes",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Kubernetes</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -2519,7 +2509,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2529,7 +2519,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Categories",
|
||||
"articleSection": "Категории",
|
||||
"name": "Веб-Разработка",
|
||||
"headline": "Веб-Разработка",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Веб-Разработка</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1836,7 +1826,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1846,7 +1836,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Шпаргалки on Олег Казанин</title>
|
||||
<link>http://192.168.11.190:1313/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/</link>
|
||||
<description>Recent content in Шпаргалки on Олег Казанин</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>ru</language>
|
||||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<lastBuildDate>Mon, 23 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Git Workflow для Hugo блога</title>
|
||||
<link>http://192.168.11.190:1313/cheatsheets/git-workflow/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/cheatsheets/git-workflow/</guid>
|
||||
<description></description>
|
||||
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://192.168.11.190:1313/cheatsheets/git-workflow/featured.png" />
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<title>http://192.168.11.190:1313/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/</title>
|
||||
<link rel="canonical" href="http://192.168.11.190:1313/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://192.168.11.190:1313/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/">
|
||||
</head>
|
||||
</html>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.0 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 212 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 728 KiB |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Шпаргалки on Олег Казанин</title>
|
||||
<link>http://192.168.11.190:1313/cheatsheets/</link>
|
||||
<description>Recent content in Шпаргалки on Олег Казанин</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>ru</language>
|
||||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<lastBuildDate>Mon, 23 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/cheatsheets/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Git Workflow для Hugo блога</title>
|
||||
<link>http://192.168.11.190:1313/cheatsheets/git-workflow/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/cheatsheets/git-workflow/</guid>
|
||||
<description></description>
|
||||
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://192.168.11.190:1313/cheatsheets/git-workflow/featured.png" />
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<title>http://192.168.11.190:1313/cheatsheets/</title>
|
||||
<link rel="canonical" href="http://192.168.11.190:1313/cheatsheets/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://192.168.11.190:1313/cheatsheets/">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -372,6 +372,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -480,6 +516,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -3281,7 +3351,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -3291,7 +3361,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -9,7 +9,17 @@
|
|||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<atom:link href="http://192.168.11.190:1313/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Mon, 23 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Git Workflow для Hugo блога</title>
|
||||
<link>http://192.168.11.190:1313/cheatsheets/git-workflow/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/cheatsheets/git-workflow/</guid>
|
||||
<description></description>
|
||||
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://192.168.11.190:1313/cheatsheets/git-workflow/featured.png" />
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Блог на Hugo в K3s: часть 6 - миграция между namespace</title>
|
||||
|
|
|
|||
|
|
@ -271,7 +271,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "Блог на Hugo в K3s: часть 1 - архитектура и первый запуск",
|
||||
"headline": "Блог на Hugo в K3s: часть 1 - архитектура и первый запуск",
|
||||
"description": "Как я переехал с Jekyll на Hugo, почему выбрал тему Blowfish и как настроил два окружения с нуля. Начало цикла о том как я строил oakazanin.ru.",
|
||||
|
|
@ -397,6 +397,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -505,6 +541,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -2542,7 +2612,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2552,7 +2622,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "Блог на Hugo в K3s: часть 2 - деплой в кластер",
|
||||
"headline": "Блог на Hugo в K3s: часть 2 - деплой в кластер",
|
||||
"description": "NFS хранилище, Hugo Builder с webhook listener, Nginx с Prometheus exporter и автоматический SSL от Let\u0027s Encrypt. Полный деплой production окружения.",
|
||||
|
|
@ -398,6 +398,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -506,6 +542,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -3143,7 +3213,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -3153,7 +3223,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -271,7 +271,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "Блог на Hugo в K3s: часть 3 - development окружение",
|
||||
"headline": "Блог на Hugo в K3s: часть 3 - development окружение",
|
||||
"description": "Второй пайплайн для ветки dev с отдельным Hugo Builder, Nginx и защитой через Basic Auth. Тестируем изменения перед публикацией в production.",
|
||||
|
|
@ -397,6 +397,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -505,6 +541,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -3260,7 +3330,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -3270,7 +3340,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -270,7 +270,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "Блог на Hugo в K3s: часть 4 - выбор Git workflow",
|
||||
"headline": "Блог на Hugo в K3s: часть 4 - выбор Git workflow",
|
||||
"description": "Две папки или одна с переключением веток? Разбираем варианты организации работы с dev и production окружениями на практических примерах.",
|
||||
|
|
@ -396,6 +396,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -504,6 +540,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -3575,7 +3645,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -3585,7 +3655,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "Блог на Hugo в K3s: часть 5 - что делать когда всё внезапно сломалось",
|
||||
"headline": "Блог на Hugo в K3s: часть 5 - что делать когда всё внезапно сломалось",
|
||||
"description": "Сайт работал вчера, а сегодня 503. Алгоритм диагностики Kubernetes проблем за 5 минут - от DNS до пода, без паники и танцев с бубном.",
|
||||
|
|
@ -398,6 +398,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -506,6 +542,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -3812,7 +3882,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -3822,7 +3892,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "Блог на Hugo в K3s: часть 6 - миграция между namespace",
|
||||
"headline": "Блог на Hugo в K3s: часть 6 - миграция между namespace",
|
||||
"description": "Как правильно переносить сервисы между namespace в Kubernetes - от экспорта манифестов до зачистки мусора. Реальный пример: переносим Gitea с NFS данными, получаем новый SSL за 32 секунды.",
|
||||
|
|
@ -398,6 +398,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -506,6 +542,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -3460,7 +3530,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -3470,7 +3540,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@
|
|||
|
||||
|
||||
|
||||
<title>Posts · Олег Казанин</title>
|
||||
<meta name="title" content="Posts · Олег Казанин">
|
||||
<title>Статьи · Олег Казанин</title>
|
||||
<meta name="title" content="Статьи · Олег Казанин">
|
||||
|
||||
|
||||
|
||||
|
|
@ -69,13 +69,13 @@
|
|||
|
||||
<meta property="og:url" content="http://192.168.11.190:1313/posts/">
|
||||
<meta property="og:site_name" content="Олег Казанин">
|
||||
<meta property="og:title" content="Posts">
|
||||
<meta property="og:title" content="Статьи">
|
||||
<meta property="og:locale" content="ru">
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="Posts">
|
||||
<meta name="twitter:title" content="Статьи">
|
||||
|
||||
|
||||
|
||||
|
|
@ -221,6 +221,29 @@
|
|||
|
||||
|
||||
|
||||
<script id="firebase-config"
|
||||
type="application/json"
|
||||
data-views="views_posts/_index.md"
|
||||
data-likes="likes_posts/_index.md">
|
||||
{
|
||||
"config": {
|
||||
"apiKey": "AIzaSyBBfzADrGgnwTIyW67gfZSrAtkoybxvmdI",
|
||||
"authDomain": "oakazanin-hugo-blowfish.firebaseapp.com",
|
||||
"projectId": "oakazanin-hugo-blowfish",
|
||||
"storageBucket": "oakazanin-hugo-blowfish.firebasestorage.app",
|
||||
"messagingSenderId": "945151844512",
|
||||
"appId": "1:945151844512:web:22602cc010f5b7e0cca9c5",
|
||||
"measurementId": ""
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -236,9 +259,9 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"name": "Posts",
|
||||
"headline": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "Статьи",
|
||||
"headline": "Статьи",
|
||||
|
||||
"inLanguage": "ru",
|
||||
"url" : "http://192.168.11.190:1313/posts/",
|
||||
|
|
@ -246,11 +269,11 @@
|
|||
"@type": "Person",
|
||||
"name": "Олег Казанин"
|
||||
},
|
||||
"copyrightYear": "2026",
|
||||
"dateCreated": "2026-02-18T00:00:00\u002b00:00",
|
||||
"datePublished": "2026-02-18T00:00:00\u002b00:00",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
"dateModified": "2026-02-18T00:00:00\u002b00:00",
|
||||
|
||||
|
||||
|
||||
|
|
@ -362,6 +385,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -470,6 +529,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -600,7 +693,7 @@
|
|||
|
||||
<header>
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Posts</h1>
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Статьи</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
||||
|
||||
|
|
@ -3355,7 +3448,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -3365,7 +3458,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Posts on Олег Казанин</title>
|
||||
<title>Статьи on Олег Казанин</title>
|
||||
<link>http://192.168.11.190:1313/posts/</link>
|
||||
<description>Recent content in Posts on Олег Казанин</description>
|
||||
<description>Recent content in Статьи on Олег Казанин</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>ru</language>
|
||||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<atom:link href="http://192.168.11.190:1313/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Wed, 18 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Блог на Hugo в K3s: часть 6 - миграция между namespace</title>
|
||||
|
|
|
|||
|
|
@ -269,7 +269,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "K3s HA для homelab: архитектура без боли",
|
||||
"headline": "K3s HA для homelab: архитектура без боли",
|
||||
"description": "Полноценный Kubernetes в бинарнике на 50MB вместо 1.5GB зависимостей. Разбираем архитектуру K3s HA кластера: почему именно 3 master ноды, зачем embedded etcd и сколько ресурсов закладывать.",
|
||||
|
|
@ -395,6 +395,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -503,6 +539,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -2229,7 +2299,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2239,7 +2309,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -269,7 +269,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "K3s HA для homelab: Готовим инфраструктуру в Proxmox",
|
||||
"headline": "K3s HA для homelab: Готовим инфраструктуру в Proxmox",
|
||||
"description": "Создаём 5 VM в Proxmox с Debian 12, настраиваем сеть, отключаем swap и готовим систему для K3s. Пошаговая инструкция без сюрпризов.",
|
||||
|
|
@ -395,6 +395,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -503,6 +539,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -2520,7 +2590,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2530,7 +2600,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -269,7 +269,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Posts",
|
||||
"articleSection": "Статьи",
|
||||
"name": "K3s HA для homelab: Ставим K3s HA кластер",
|
||||
"headline": "K3s HA для homelab: Ставим K3s HA кластер",
|
||||
"description": "Один curl-скрипт на каждую ноду - и через 15 минут у вас работающий HA-кластер. Устанавливаем K3s на 3 master и 2 worker ноды, настраиваем kubectl.",
|
||||
|
|
@ -395,6 +395,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -503,6 +539,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -2880,7 +2950,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2890,7 +2960,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -725,7 +795,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -735,7 +805,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">K3s HA Кластер Для Homelab</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1631,7 +1621,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1641,7 +1631,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Блог На Hugo В K3s</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -2426,7 +2416,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2436,7 +2426,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -3,8 +3,20 @@
|
|||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<url>
|
||||
<loc>http://192.168.11.190:1313/posts/</loc>
|
||||
<lastmod>2026-02-18T00:00:00+00:00</lastmod>
|
||||
<loc>http://192.168.11.190:1313/cheatsheets/git-workflow/</loc>
|
||||
<lastmod>2026-02-23T00:00:00+00:00</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://192.168.11.190:1313/</loc>
|
||||
<lastmod>2026-02-23T00:00:00+00:00</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://192.168.11.190:1313/cheatsheets/</loc>
|
||||
<lastmod>2026-02-23T00:00:00+00:00</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<priority>0.5</priority>
|
||||
</url>
|
||||
|
|
@ -15,7 +27,7 @@
|
|||
<priority>0.5</priority>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://192.168.11.190:1313/</loc>
|
||||
<loc>http://192.168.11.190:1313/posts/</loc>
|
||||
<lastmod>2026-02-18T00:00:00+00:00</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<priority>0.5</priority>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Architecture",
|
||||
"headline": "Architecture",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Architecture</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1011,7 +1001,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1021,7 +1011,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Basic-Auth",
|
||||
"headline": "Basic-Auth",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Basic-Auth</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -991,7 +981,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1001,7 +991,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Blowfish",
|
||||
"headline": "Blowfish",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Blowfish</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -981,7 +971,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -991,7 +981,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Cert-Manager",
|
||||
"headline": "Cert-Manager",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Cert-Manager</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1001,7 +991,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1011,7 +1001,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Cheatsheet on Олег Казанин</title>
|
||||
<link>http://192.168.11.190:1313/tags/cheatsheet/</link>
|
||||
<description>Recent content in Cheatsheet on Олег Казанин</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>ru</language>
|
||||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<lastBuildDate>Mon, 23 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/tags/cheatsheet/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Git Workflow для Hugo блога</title>
|
||||
<link>http://192.168.11.190:1313/cheatsheets/git-workflow/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/cheatsheets/git-workflow/</guid>
|
||||
<description></description>
|
||||
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://192.168.11.190:1313/cheatsheets/git-workflow/featured.png" />
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<title>http://192.168.11.190:1313/tags/cheatsheet/</title>
|
||||
<link rel="canonical" href="http://192.168.11.190:1313/tags/cheatsheet/">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=http://192.168.11.190:1313/tags/cheatsheet/">
|
||||
</head>
|
||||
</html>
|
||||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Debian",
|
||||
"headline": "Debian",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Debian</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1011,7 +1001,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1021,7 +1011,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Debugging",
|
||||
"headline": "Debugging",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Debugging</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1001,7 +991,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1011,7 +1001,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Devops",
|
||||
"headline": "Devops",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Devops</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -2479,7 +2469,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2489,7 +2479,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Etcd",
|
||||
"headline": "Etcd",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Etcd</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1021,7 +1011,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1031,7 +1021,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Git",
|
||||
"headline": "Git",
|
||||
|
||||
|
|
@ -263,10 +263,10 @@
|
|||
"name": "Олег Казанин"
|
||||
},
|
||||
"copyrightYear": "2026",
|
||||
"dateCreated": "2026-02-16T00:00:00\u002b00:00",
|
||||
"datePublished": "2026-02-16T00:00:00\u002b00:00",
|
||||
"dateCreated": "2026-02-23T00:00:00\u002b00:00",
|
||||
"datePublished": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
"dateModified": "2026-02-16T00:00:00\u002b00:00",
|
||||
"dateModified": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Git</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -688,6 +678,271 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="article-link--simple flex flex-col md:flex-row relative">
|
||||
|
||||
<div class="flex-none relative overflow-hidden thumbnail-shadow md:mr-7 thumbnail">
|
||||
<img
|
||||
src="/cheatsheets/git-workflow/featured_hu_99aef40e5d8ecaaf.png"
|
||||
role="presentation"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
class="not-prose absolute inset-0 w-full h-full object-cover">
|
||||
</div>
|
||||
|
||||
<div class=" mt-3 md:mt-0">
|
||||
<header class="items-center text-start text-xl font-semibold">
|
||||
<a
|
||||
|
||||
href="/cheatsheets/git-workflow/"
|
||||
|
||||
class="not-prose before:absolute before:inset-0 decoration-primary-500 dark:text-neutral text-xl font-bold text-neutral-800 hover:underline hover:underline-offset-2">
|
||||
<h2>
|
||||
Git Workflow для Hugo блога
|
||||
|
||||
</h2>
|
||||
</a>
|
||||
|
||||
|
||||
</header>
|
||||
<div class="text-sm text-neutral-500 dark:text-neutral-400">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="flex flex-row flex-wrap items-center">
|
||||
|
||||
|
||||
<time datetime="2026-02-23T00:00:00+00:00">23 февраля 2026</time><span class="px-2 text-primary-500">·</span><span title="Время чтения">5 минут</span><span class="px-2 text-primary-500">·</span><span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span
|
||||
id="views_cheatsheets/git-workflow/index.md"
|
||||
class="animate-pulse inline-block text-transparent max-h-3 rounded-full -mt-[2px] align-middle bg-neutral-300 dark:bg-neutral-400"
|
||||
title="views"
|
||||
>loading</span
|
||||
>
|
||||
<span class="inline-block align-text-bottom"><span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
|
||||
<path fill="currentColor" d="M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM432 256c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM288 192c0 35.3-28.7 64-64 64c-11.5 0-22.3-3-31.6-8.4c-.2 2.8-.4 5.5-.4 8.4c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6z"/></svg></span></span>
|
||||
</span>
|
||||
<span class="px-2 text-primary-500">·</span><span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span
|
||||
id="likes_cheatsheets/git-workflow/index.md"
|
||||
class="animate-pulse inline-block text-transparent max-h-3 rounded-full -mt-[2px] align-middle bg-neutral-300 dark:bg-neutral-400"
|
||||
title="likes"
|
||||
>loading</span
|
||||
>
|
||||
<span class="inline-block align-text-bottom"><span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||
<path fill="currentColor" d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"/></svg></span></span>
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="flex flex-row flex-wrap items-center">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Шпаргалки
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/git/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Git
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/workflow/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Workflow
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/hugo/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Hugo
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/cheatsheet/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Cheatsheet
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="px-6 pt-4 pb-2"></div>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -981,7 +1236,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -991,7 +1246,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,17 @@
|
|||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<lastBuildDate>Mon, 16 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/tags/git/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Mon, 23 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/tags/git/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Git Workflow для Hugo блога</title>
|
||||
<link>http://192.168.11.190:1313/cheatsheets/git-workflow/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/cheatsheets/git-workflow/</guid>
|
||||
<description></description>
|
||||
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://192.168.11.190:1313/cheatsheets/git-workflow/featured.png" />
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Блог на Hugo в K3s: часть 4 - выбор Git workflow</title>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Gitea",
|
||||
"headline": "Gitea",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Gitea</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1276,7 +1266,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1286,7 +1276,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Ha",
|
||||
"headline": "Ha",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Ha</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1326,7 +1316,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1336,7 +1326,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Homelab",
|
||||
"headline": "Homelab",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Homelab</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -2204,7 +2194,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2214,7 +2204,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Hugo",
|
||||
"headline": "Hugo",
|
||||
|
||||
|
|
@ -263,10 +263,10 @@
|
|||
"name": "Олег Казанин"
|
||||
},
|
||||
"copyrightYear": "2026",
|
||||
"dateCreated": "2026-02-16T00:00:00\u002b00:00",
|
||||
"datePublished": "2026-02-16T00:00:00\u002b00:00",
|
||||
"dateCreated": "2026-02-23T00:00:00\u002b00:00",
|
||||
"datePublished": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
"dateModified": "2026-02-16T00:00:00\u002b00:00",
|
||||
"dateModified": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Hugo</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -688,6 +678,271 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="article-link--simple flex flex-col md:flex-row relative">
|
||||
|
||||
<div class="flex-none relative overflow-hidden thumbnail-shadow md:mr-7 thumbnail">
|
||||
<img
|
||||
src="/cheatsheets/git-workflow/featured_hu_99aef40e5d8ecaaf.png"
|
||||
role="presentation"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
class="not-prose absolute inset-0 w-full h-full object-cover">
|
||||
</div>
|
||||
|
||||
<div class=" mt-3 md:mt-0">
|
||||
<header class="items-center text-start text-xl font-semibold">
|
||||
<a
|
||||
|
||||
href="/cheatsheets/git-workflow/"
|
||||
|
||||
class="not-prose before:absolute before:inset-0 decoration-primary-500 dark:text-neutral text-xl font-bold text-neutral-800 hover:underline hover:underline-offset-2">
|
||||
<h2>
|
||||
Git Workflow для Hugo блога
|
||||
|
||||
</h2>
|
||||
</a>
|
||||
|
||||
|
||||
</header>
|
||||
<div class="text-sm text-neutral-500 dark:text-neutral-400">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="flex flex-row flex-wrap items-center">
|
||||
|
||||
|
||||
<time datetime="2026-02-23T00:00:00+00:00">23 февраля 2026</time><span class="px-2 text-primary-500">·</span><span title="Время чтения">5 минут</span><span class="px-2 text-primary-500">·</span><span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span
|
||||
id="views_cheatsheets/git-workflow/index.md"
|
||||
class="animate-pulse inline-block text-transparent max-h-3 rounded-full -mt-[2px] align-middle bg-neutral-300 dark:bg-neutral-400"
|
||||
title="views"
|
||||
>loading</span
|
||||
>
|
||||
<span class="inline-block align-text-bottom"><span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
|
||||
<path fill="currentColor" d="M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM432 256c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM288 192c0 35.3-28.7 64-64 64c-11.5 0-22.3-3-31.6-8.4c-.2 2.8-.4 5.5-.4 8.4c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6z"/></svg></span></span>
|
||||
</span>
|
||||
<span class="px-2 text-primary-500">·</span><span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span
|
||||
id="likes_cheatsheets/git-workflow/index.md"
|
||||
class="animate-pulse inline-block text-transparent max-h-3 rounded-full -mt-[2px] align-middle bg-neutral-300 dark:bg-neutral-400"
|
||||
title="likes"
|
||||
>loading</span
|
||||
>
|
||||
<span class="inline-block align-text-bottom"><span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||
<path fill="currentColor" d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"/></svg></span></span>
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="flex flex-row flex-wrap items-center">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Шпаргалки
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/git/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Git
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/workflow/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Workflow
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/hugo/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Hugo
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/cheatsheet/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Cheatsheet
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="px-6 pt-4 pb-2"></div>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -1836,7 +2091,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1846,7 +2101,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,17 @@
|
|||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<lastBuildDate>Mon, 16 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/tags/hugo/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Mon, 23 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/tags/hugo/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Git Workflow для Hugo блога</title>
|
||||
<link>http://192.168.11.190:1313/cheatsheets/git-workflow/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/cheatsheets/git-workflow/</guid>
|
||||
<description></description>
|
||||
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://192.168.11.190:1313/cheatsheets/git-workflow/featured.png" />
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Блог на Hugo в K3s: часть 4 - выбор Git workflow</title>
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@
|
|||
|
||||
|
||||
|
||||
<title>Tags · Олег Казанин</title>
|
||||
<meta name="title" content="Tags · Олег Казанин">
|
||||
<title>Теги · Олег Казанин</title>
|
||||
<meta name="title" content="Теги · Олег Казанин">
|
||||
|
||||
|
||||
|
||||
|
|
@ -69,13 +69,13 @@
|
|||
|
||||
<meta property="og:url" content="http://192.168.11.190:1313/tags/">
|
||||
<meta property="og:site_name" content="Олег Казанин">
|
||||
<meta property="og:title" content="Tags">
|
||||
<meta property="og:title" content="Теги">
|
||||
<meta property="og:locale" content="ru">
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="Tags">
|
||||
<meta name="twitter:title" content="Теги">
|
||||
|
||||
|
||||
|
||||
|
|
@ -252,9 +252,9 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"name": "Tags",
|
||||
"headline": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Теги",
|
||||
"headline": "Теги",
|
||||
|
||||
"inLanguage": "ru",
|
||||
"url" : "http://192.168.11.190:1313/tags/",
|
||||
|
|
@ -262,11 +262,11 @@
|
|||
"@type": "Person",
|
||||
"name": "Олег Казанин"
|
||||
},
|
||||
"copyrightYear": "2026",
|
||||
"dateCreated": "2026-02-23T00:00:00\u002b00:00",
|
||||
"datePublished": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
"dateModified": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -609,7 +679,7 @@
|
|||
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Tags</h1>
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Теги</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
||||
|
||||
|
|
@ -715,6 +785,23 @@
|
|||
</article>
|
||||
|
||||
|
||||
<article class="w-full px-2 my-3 overflow-hidden sm:w-1/2 md:w-1/3 lg:w-1/4 xl:w-1/4">
|
||||
<h2 class="flex items-center">
|
||||
<a
|
||||
class="text-xl font-medium decoration-primary-500 hover:underline hover:underline-offset-2"
|
||||
href="/tags/cheatsheet/"
|
||||
>Cheatsheet</a
|
||||
>
|
||||
|
||||
<span class="px-2 text-base text-primary-500">·</span>
|
||||
<span class="text-base text-neutral-400">
|
||||
1
|
||||
</span>
|
||||
|
||||
</h2>
|
||||
</article>
|
||||
|
||||
|
||||
<article class="w-full px-2 my-3 overflow-hidden sm:w-1/2 md:w-1/3 lg:w-1/4 xl:w-1/4">
|
||||
<h2 class="flex items-center">
|
||||
<a
|
||||
|
|
@ -793,7 +880,7 @@
|
|||
|
||||
<span class="px-2 text-base text-primary-500">·</span>
|
||||
<span class="text-base text-neutral-400">
|
||||
1
|
||||
2
|
||||
</span>
|
||||
|
||||
</h2>
|
||||
|
|
@ -861,7 +948,7 @@
|
|||
|
||||
<span class="px-2 text-base text-primary-500">·</span>
|
||||
<span class="text-base text-neutral-400">
|
||||
4
|
||||
5
|
||||
</span>
|
||||
|
||||
</h2>
|
||||
|
|
@ -1048,7 +1135,7 @@
|
|||
|
||||
<span class="px-2 text-base text-primary-500">·</span>
|
||||
<span class="text-base text-neutral-400">
|
||||
1
|
||||
2
|
||||
</span>
|
||||
|
||||
</h2>
|
||||
|
|
@ -1099,7 +1186,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1109,7 +1196,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -1,92 +1,22 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Tags on Олег Казанин</title>
|
||||
<title>Теги on Олег Казанин</title>
|
||||
<link>http://192.168.11.190:1313/tags/</link>
|
||||
<description>Recent content in Tags on Олег Казанин</description>
|
||||
<description>Recent content in Теги on Олег Казанин</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>ru</language>
|
||||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<atom:link href="http://192.168.11.190:1313/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Mon, 23 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Architecture</title>
|
||||
<link>http://192.168.11.190:1313/tags/architecture/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<title>Cheatsheet</title>
|
||||
<link>http://192.168.11.190:1313/tags/cheatsheet/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/architecture/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Basic-Auth</title>
|
||||
<link>http://192.168.11.190:1313/tags/basic-auth/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/basic-auth/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Blowfish</title>
|
||||
<link>http://192.168.11.190:1313/tags/blowfish/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/blowfish/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Cert-Manager</title>
|
||||
<link>http://192.168.11.190:1313/tags/cert-manager/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/cert-manager/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Debian</title>
|
||||
<link>http://192.168.11.190:1313/tags/debian/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/debian/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Debugging</title>
|
||||
<link>http://192.168.11.190:1313/tags/debugging/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/debugging/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Devops</title>
|
||||
<link>http://192.168.11.190:1313/tags/devops/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/devops/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Etcd</title>
|
||||
<link>http://192.168.11.190:1313/tags/etcd/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/etcd/</guid>
|
||||
<guid>http://192.168.11.190:1313/tags/cheatsheet/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
|
@ -94,47 +24,17 @@
|
|||
<item>
|
||||
<title>Git</title>
|
||||
<link>http://192.168.11.190:1313/tags/git/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/git/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Gitea</title>
|
||||
<link>http://192.168.11.190:1313/tags/gitea/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/gitea/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Ha</title>
|
||||
<link>http://192.168.11.190:1313/tags/ha/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/ha/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Homelab</title>
|
||||
<link>http://192.168.11.190:1313/tags/homelab/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/homelab/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Hugo</title>
|
||||
<link>http://192.168.11.190:1313/tags/hugo/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/hugo/</guid>
|
||||
<description></description>
|
||||
|
|
@ -142,21 +42,41 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<title>Infrastructure</title>
|
||||
<link>http://192.168.11.190:1313/tags/infrastructure/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<title>Workflow</title>
|
||||
<link>http://192.168.11.190:1313/tags/workflow/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/infrastructure/</guid>
|
||||
<guid>http://192.168.11.190:1313/tags/workflow/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Installation</title>
|
||||
<link>http://192.168.11.190:1313/tags/installation/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<title>Devops</title>
|
||||
<link>http://192.168.11.190:1313/tags/devops/</link>
|
||||
<pubDate>Wed, 18 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/installation/</guid>
|
||||
<guid>http://192.168.11.190:1313/tags/devops/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Gitea</title>
|
||||
<link>http://192.168.11.190:1313/tags/gitea/</link>
|
||||
<pubDate>Wed, 18 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/gitea/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Homelab</title>
|
||||
<link>http://192.168.11.190:1313/tags/homelab/</link>
|
||||
<pubDate>Wed, 18 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/homelab/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
|
@ -164,7 +84,7 @@
|
|||
<item>
|
||||
<title>K3s</title>
|
||||
<link>http://192.168.11.190:1313/tags/k3s/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Wed, 18 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/k3s/</guid>
|
||||
<description></description>
|
||||
|
|
@ -174,7 +94,7 @@
|
|||
<item>
|
||||
<title>Kubernetes</title>
|
||||
<link>http://192.168.11.190:1313/tags/kubernetes/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Wed, 18 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/kubernetes/</guid>
|
||||
<description></description>
|
||||
|
|
@ -184,7 +104,7 @@
|
|||
<item>
|
||||
<title>Namespace</title>
|
||||
<link>http://192.168.11.190:1313/tags/namespace/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Wed, 18 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/namespace/</guid>
|
||||
<description></description>
|
||||
|
|
@ -192,11 +112,11 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<title>Nfs</title>
|
||||
<link>http://192.168.11.190:1313/tags/nfs/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<title>Debugging</title>
|
||||
<link>http://192.168.11.190:1313/tags/debugging/</link>
|
||||
<pubDate>Tue, 17 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/nfs/</guid>
|
||||
<guid>http://192.168.11.190:1313/tags/debugging/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
|
@ -204,27 +124,17 @@
|
|||
<item>
|
||||
<title>Nginx</title>
|
||||
<link>http://192.168.11.190:1313/tags/nginx/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Tue, 17 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/nginx/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Proxmox</title>
|
||||
<link>http://192.168.11.190:1313/tags/proxmox/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/proxmox/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Traefik</title>
|
||||
<link>http://192.168.11.190:1313/tags/traefik/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Tue, 17 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/traefik/</guid>
|
||||
<description></description>
|
||||
|
|
@ -234,7 +144,7 @@
|
|||
<item>
|
||||
<title>Troubleshooting</title>
|
||||
<link>http://192.168.11.190:1313/tags/troubleshooting/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<pubDate>Tue, 17 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/troubleshooting/</guid>
|
||||
<description></description>
|
||||
|
|
@ -242,11 +152,111 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<title>Workflow</title>
|
||||
<link>http://192.168.11.190:1313/tags/workflow/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
<title>Basic-Auth</title>
|
||||
<link>http://192.168.11.190:1313/tags/basic-auth/</link>
|
||||
<pubDate>Thu, 15 Jan 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/workflow/</guid>
|
||||
<guid>http://192.168.11.190:1313/tags/basic-auth/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Cert-Manager</title>
|
||||
<link>http://192.168.11.190:1313/tags/cert-manager/</link>
|
||||
<pubDate>Thu, 08 Jan 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/cert-manager/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Nfs</title>
|
||||
<link>http://192.168.11.190:1313/tags/nfs/</link>
|
||||
<pubDate>Thu, 08 Jan 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/nfs/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Blowfish</title>
|
||||
<link>http://192.168.11.190:1313/tags/blowfish/</link>
|
||||
<pubDate>Sat, 03 Jan 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/blowfish/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Etcd</title>
|
||||
<link>http://192.168.11.190:1313/tags/etcd/</link>
|
||||
<pubDate>Sun, 02 Nov 2025 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/etcd/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Ha</title>
|
||||
<link>http://192.168.11.190:1313/tags/ha/</link>
|
||||
<pubDate>Sun, 02 Nov 2025 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/ha/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Installation</title>
|
||||
<link>http://192.168.11.190:1313/tags/installation/</link>
|
||||
<pubDate>Sun, 02 Nov 2025 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/installation/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Debian</title>
|
||||
<link>http://192.168.11.190:1313/tags/debian/</link>
|
||||
<pubDate>Tue, 21 Oct 2025 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/debian/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Infrastructure</title>
|
||||
<link>http://192.168.11.190:1313/tags/infrastructure/</link>
|
||||
<pubDate>Tue, 21 Oct 2025 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/infrastructure/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Proxmox</title>
|
||||
<link>http://192.168.11.190:1313/tags/proxmox/</link>
|
||||
<pubDate>Tue, 21 Oct 2025 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/proxmox/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Architecture</title>
|
||||
<link>http://192.168.11.190:1313/tags/architecture/</link>
|
||||
<pubDate>Tue, 14 Oct 2025 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/tags/architecture/</guid>
|
||||
<description></description>
|
||||
|
||||
</item>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Infrastructure",
|
||||
"headline": "Infrastructure",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Infrastructure</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1011,7 +1001,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1021,7 +1011,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Installation",
|
||||
"headline": "Installation",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Installation</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1021,7 +1011,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1031,7 +1021,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "K3s",
|
||||
"headline": "K3s",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">K3s</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -2804,7 +2794,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2814,7 +2804,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Kubernetes",
|
||||
"headline": "Kubernetes",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Kubernetes</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -2804,7 +2794,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -2814,7 +2804,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Namespace",
|
||||
"headline": "Namespace",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Namespace</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1001,7 +991,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1011,7 +1001,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Nfs",
|
||||
"headline": "Nfs",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Nfs</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1001,7 +991,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1011,7 +1001,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Nginx",
|
||||
"headline": "Nginx",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Nginx</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1001,7 +991,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1011,7 +1001,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Proxmox",
|
||||
"headline": "Proxmox",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Proxmox</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1316,7 +1306,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1326,7 +1316,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Traefik",
|
||||
"headline": "Traefik",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Traefik</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1581,7 +1571,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1591,7 +1581,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Troubleshooting",
|
||||
"headline": "Troubleshooting",
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Troubleshooting</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -1001,7 +991,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -1011,7 +1001,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
[{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Article",
|
||||
"articleSection": "Tags",
|
||||
"articleSection": "Теги",
|
||||
"name": "Workflow",
|
||||
"headline": "Workflow",
|
||||
|
||||
|
|
@ -263,10 +263,10 @@
|
|||
"name": "Олег Казанин"
|
||||
},
|
||||
"copyrightYear": "2026",
|
||||
"dateCreated": "2026-02-16T00:00:00\u002b00:00",
|
||||
"datePublished": "2026-02-16T00:00:00\u002b00:00",
|
||||
"dateCreated": "2026-02-23T00:00:00\u002b00:00",
|
||||
"datePublished": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
"dateModified": "2026-02-16T00:00:00\u002b00:00",
|
||||
"dateModified": "2026-02-23T00:00:00\u002b00:00",
|
||||
|
||||
|
||||
|
||||
|
|
@ -378,6 +378,42 @@
|
|||
|
||||
|
||||
|
||||
<a
|
||||
href="/posts/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Статьи"
|
||||
title="Статьи">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
|
||||
class="flex items-center bf-icon-color-hover"
|
||||
aria-label="Шпаргалки"
|
||||
title="Шпаргалки">
|
||||
|
||||
|
||||
<span class="text-base font-medium break-normal">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -486,6 +522,40 @@
|
|||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/posts/"
|
||||
aria-label="Статьи"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Статьи" class="text-2xl font-bold tracking-tight">
|
||||
Статьи
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="px-2">
|
||||
<a
|
||||
href="/cheatsheets/"
|
||||
aria-label="Шпаргалки"
|
||||
|
||||
class="flex items-center gap-4 group bf-icon-color-hover text-neutral-700 dark:text-neutral-200">
|
||||
|
||||
<span title="Шпаргалки" class="text-2xl font-bold tracking-tight">
|
||||
Шпаргалки
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -527,87 +597,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="hero" class="h-[150px] md:h-[200px]"></div>
|
||||
|
||||
<div class="fixed inset-x-0 top-0 h-[800px] single_hero_background nozoom">
|
||||
|
||||
|
||||
|
||||
<img
|
||||
id="background-image"
|
||||
src="/img/background_hu_42f1c83933308119.png"
|
||||
role="presentation"
|
||||
loading="eager"
|
||||
decoding="async"
|
||||
fetchpriority="high"
|
||||
class="absolute inset-0 w-full h-full object-cover"
|
||||
>
|
||||
<div
|
||||
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal"></div>
|
||||
<div
|
||||
class="absolute inset-0 opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral-100 dark:to-neutral-800 mix-blend-normal"></div>
|
||||
</div>
|
||||
|
||||
|
||||
<div
|
||||
id="background-blur"
|
||||
class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-xl bg-neutral-100/75 dark:bg-neutral-800/60"></div>
|
||||
|
||||
|
||||
<script
|
||||
type="text/javascript"
|
||||
src="/js/background-blur.min.605b3b942818f0ab5a717ae446135ec46b8ee5a2ad12ae56fb90dc2a76ce30c388f9fec8bcc18db15bd47e3fa8a09d779fa12aa9c184cf614a315bc72c6c163d.js"
|
||||
integrity="sha512-YFs7lCgY8KtacXrkRhNexGuO5aKtEq5W+5DcKnbOMMOI+f7IvMGNsVvUfj+ooJ13n6EqqcGEz2FKMVvHLGwWPQ=="
|
||||
data-blur-id="background-blur"
|
||||
data-image-id="background-image"
|
||||
data-image-url="/img/background_hu_42f1c83933308119.png"></script>
|
||||
|
||||
<header class="mt-5">
|
||||
<header class="mt-5">
|
||||
|
||||
<h1 class="mt-5 text-4xl font-extrabold text-neutral-900 dark:text-neutral">Workflow</h1>
|
||||
<div class="mt-1 mb-2 text-base text-neutral-500 dark:text-neutral-400 print:hidden">
|
||||
|
|
@ -688,6 +678,271 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<article class="article-link--simple flex flex-col md:flex-row relative">
|
||||
|
||||
<div class="flex-none relative overflow-hidden thumbnail-shadow md:mr-7 thumbnail">
|
||||
<img
|
||||
src="/cheatsheets/git-workflow/featured_hu_99aef40e5d8ecaaf.png"
|
||||
role="presentation"
|
||||
loading="lazy"
|
||||
decoding="async"
|
||||
class="not-prose absolute inset-0 w-full h-full object-cover">
|
||||
</div>
|
||||
|
||||
<div class=" mt-3 md:mt-0">
|
||||
<header class="items-center text-start text-xl font-semibold">
|
||||
<a
|
||||
|
||||
href="/cheatsheets/git-workflow/"
|
||||
|
||||
class="not-prose before:absolute before:inset-0 decoration-primary-500 dark:text-neutral text-xl font-bold text-neutral-800 hover:underline hover:underline-offset-2">
|
||||
<h2>
|
||||
Git Workflow для Hugo блога
|
||||
|
||||
</h2>
|
||||
</a>
|
||||
|
||||
|
||||
</header>
|
||||
<div class="text-sm text-neutral-500 dark:text-neutral-400">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="flex flex-row flex-wrap items-center">
|
||||
|
||||
|
||||
<time datetime="2026-02-23T00:00:00+00:00">23 февраля 2026</time><span class="px-2 text-primary-500">·</span><span title="Время чтения">5 минут</span><span class="px-2 text-primary-500">·</span><span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span
|
||||
id="views_cheatsheets/git-workflow/index.md"
|
||||
class="animate-pulse inline-block text-transparent max-h-3 rounded-full -mt-[2px] align-middle bg-neutral-300 dark:bg-neutral-400"
|
||||
title="views"
|
||||
>loading</span
|
||||
>
|
||||
<span class="inline-block align-text-bottom"><span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512">
|
||||
<path fill="currentColor" d="M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM432 256c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM288 192c0 35.3-28.7 64-64 64c-11.5 0-22.3-3-31.6-8.4c-.2 2.8-.4 5.5-.4 8.4c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6z"/></svg></span></span>
|
||||
</span>
|
||||
<span class="px-2 text-primary-500">·</span><span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span
|
||||
id="likes_cheatsheets/git-workflow/index.md"
|
||||
class="animate-pulse inline-block text-transparent max-h-3 rounded-full -mt-[2px] align-middle bg-neutral-300 dark:bg-neutral-400"
|
||||
title="likes"
|
||||
>loading</span
|
||||
>
|
||||
<span class="inline-block align-text-bottom"><span class="relative block icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||
<path fill="currentColor" d="M47.6 300.4L228.3 469.1c7.5 7 17.4 10.9 27.7 10.9s20.2-3.9 27.7-10.9L464.4 300.4c30.4-28.3 47.6-68 47.6-109.5v-5.8c0-69.9-50.5-129.5-119.4-141C347 36.5 300.6 51.4 268 84L256 96 244 84c-32.6-32.6-79-47.5-124.6-39.9C50.5 55.6 0 115.2 0 185.1v5.8c0 41.5 17.2 81.2 47.6 109.5z"/></svg></span></span>
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="flex flex-row flex-wrap items-center">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/categories/%D1%88%D0%BF%D0%B0%D1%80%D0%B3%D0%B0%D0%BB%D0%BA%D0%B8/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Шпаргалки
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/git/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Git
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/workflow/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Workflow
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/hugo/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Hugo
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
<a class="relative mt-[0.5rem] me-2" href="/tags/cheatsheet/">
|
||||
<span class="flex cursor-pointer">
|
||||
<span
|
||||
class="rounded-md border border-primary-400 px-1 py-[1px] text-xs font-normal text-primary-700 dark:border-primary-600 dark:text-primary-400">
|
||||
Cheatsheet
|
||||
</span>
|
||||
</span>
|
||||
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="px-6 pt-4 pb-2"></div>
|
||||
</article>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -981,7 +1236,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/tags/"
|
||||
title="Tags">
|
||||
title="Теги">
|
||||
|
||||
Теги
|
||||
</a>
|
||||
|
|
@ -991,7 +1246,7 @@
|
|||
<a
|
||||
class="decoration-primary-500 hover:underline hover:decoration-2 hover:underline-offset-2 flex items-center"
|
||||
href="/categories/"
|
||||
title="Categories">
|
||||
title="Категории">
|
||||
|
||||
Категории
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,17 @@
|
|||
<managingEditor>oakazanin@ya.ru (Олег Казанин)</managingEditor>
|
||||
<webMaster>oakazanin@ya.ru (Олег Казанин)</webMaster>
|
||||
<copyright>© 2026 Олег Казанин</copyright>
|
||||
<lastBuildDate>Mon, 16 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/tags/workflow/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Mon, 23 Feb 2026 00:00:00 +0000</lastBuildDate><atom:link href="http://192.168.11.190:1313/tags/workflow/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
<item>
|
||||
<title>Git Workflow для Hugo блога</title>
|
||||
<link>http://192.168.11.190:1313/cheatsheets/git-workflow/</link>
|
||||
<pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
|
||||
<author>oakazanin@ya.ru (Олег Казанин)</author>
|
||||
<guid>http://192.168.11.190:1313/cheatsheets/git-workflow/</guid>
|
||||
<description></description>
|
||||
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="http://192.168.11.190:1313/cheatsheets/git-workflow/featured.png" />
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Блог на Hugo в K3s: часть 4 - выбор Git workflow</title>
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 212 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 728 KiB |
Loading…
Reference in New Issue