-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
138 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
--- | ||
title: Списки (list) | ||
description: Як працюють списки в Bluesky? | ||
--- | ||
|
||
import {Aside, Steps} from '@astrojs/starlight/components'; | ||
|
||
Списки дозволяють групувати профілі для подальшого використання. | ||
|
||
Ви можете створювати власні списки та додавати до них профілі. Або використовувати списки інших користувачів. | ||
|
||
Є 2 види списків: звичайні та для модерації. | ||
|
||
## Звичайні списки | ||
|
||
Звичайні списки можуть бути використані для групування профілів і перегляду [стрічки](/basics/feed) їх постів. | ||
|
||
Стрічку постів зі звичайного списку також можна [закріпити у **Мої стрічки**](/basics/feed#закріплення-стрічки). | ||
|
||
### Створення звичайного списку | ||
|
||
Перейдіть у розділ **Списки** у меню і натисність **+ Новий** у верхньому правому кутку. | ||
|
||
<img src="/images/list-new.png" class="app-left-center" /> | ||
|
||
Після заповнення форми список буде створено. | ||
|
||
## Списки для модерації | ||
|
||
Списки для модерації можуть бути використані для [блокування](/basics/block) або [ігнорування](/basics/mute) групи профілів. | ||
|
||
### Створення списку для модерації | ||
|
||
Перейдіть у **Налаштування** → **Модерація** → **Списки для модерації** і натисніть **+ Новий** у верхньому правому кутку. | ||
|
||
<img src="/images/list-new-mod.png" class="app-center" /> | ||
|
||
## Додавання профілів | ||
|
||
Додати профіль у список можна зі сторінки профілю. | ||
|
||
<img src="/images/list-add.png" class="app-left-center" /> | ||
|
||
Або на вкладці **About** самого списку. | ||
|
||
<img src="/images/list-add2.png" class="app-center" /> | ||
|
||
## Видалення списку | ||
|
||
Щоб видалити список, перейдіть на сторінку самого списку та натисніть **Видалити** у верхньому правому меню. | ||
|
||
<img src="/images/list-del.png" class="app-left-center" /> | ||
|
||
## Перегляд списків | ||
|
||
Ви можете переглядати списки інших користувачів, на сторінці профілю. | ||
|
||
<img src="/images/list-profile.png" class="app-center" /> | ||
|
||
<Aside type="tip"> | ||
Наприклад, профіль [@mods.mobik.zip](https://bsky.app/profile/mods.mobik.zip) веде списки росіян, вестплейнерів та | ||
інших персонажів, яких варто блокувати. | ||
</Aside> | ||
|
||
## Пошук списків | ||
|
||
Наразі пошук списків через застосунок не реалізовано. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.sl-markdown-content img { | ||
border-radius: 0.5rem; | ||
max-width: min(48rem, 100%); | ||
margin: 1rem auto; | ||
} | ||
|
||
.sl-markdown-content img.app-center { | ||
max-width: 24rem; | ||
} | ||
|
||
.sl-markdown-content img.app-left-center { | ||
max-width: 32rem; | ||
} | ||
|
||
.sl-markdown-content img.app-full { | ||
max-width: min(48rem, 100%); | ||
} |