-
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
8 changed files
with
63 additions
and
60 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,50 @@ | ||
// @ts-check | ||
import { defineConfig } from 'astro/config'; | ||
import {defineConfig} from 'astro/config'; | ||
import starlight from '@astrojs/starlight'; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
integrations: [ | ||
starlight({ | ||
customCss: [ | ||
'./src/styles/theme.css', | ||
], | ||
title: 'База знань Bluesky', | ||
integrations: [ | ||
starlight({ | ||
customCss: ['./src/styles/theme.css'], | ||
title: 'База знань Bluesky', | ||
defaultLocale: 'root', | ||
locales: { | ||
root: { | ||
label: 'Українська', | ||
lang: 'uk' | ||
lang: 'uk', | ||
}, | ||
}, | ||
editLink: { | ||
baseUrl: 'https://github.com/navix/info.bsky.one/edit/main/', | ||
}, | ||
social: { | ||
github: 'https://github.com/navix/info.bsky.one', | ||
social: { | ||
github: 'https://github.com/navix/info.bsky.one', | ||
blueSky: 'https://bsky.app/profile/bsky.one', | ||
}, | ||
sidebar: [ | ||
}, | ||
sidebar: [ | ||
{ | ||
label: 'Home', | ||
slug: 'home' | ||
slug: 'home', | ||
}, | ||
{ | ||
label: 'Основи', | ||
items: [ | ||
{ slug: 'basics/bluesky' }, | ||
{ slug: 'basics/atproto' }, | ||
{ slug: 'basics/join' }, | ||
{ slug: 'basics/public', label: 'Що публічне і приватне?' }, | ||
{ slug: 'basics/handle' }, | ||
{ slug: 'basics/feed' }, | ||
{ slug: 'basics/mute' }, | ||
{ slug: 'basics/block' }, | ||
] | ||
{slug: 'basics/bluesky'}, | ||
{slug: 'basics/atproto'}, | ||
{slug: 'basics/join'}, | ||
{slug: 'basics/public'}, | ||
{slug: 'basics/handle'}, | ||
{slug: 'basics/feed'}, | ||
{slug: 'basics/mute'}, | ||
{slug: 'basics/block'}, | ||
], | ||
}, | ||
{ | ||
label: 'Посібники', | ||
items: [ | ||
{ slug: 'guides/custom-handle' }, | ||
{ slug: 'guides/custom-feed' }, | ||
], | ||
}, | ||
], | ||
}), | ||
], | ||
{ | ||
label: 'Посібники', | ||
items: [{slug: 'guides/custom-handle'}, {slug: 'guides/custom-feed'}], | ||
}, | ||
], | ||
}), | ||
], | ||
}); |
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
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
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 |
---|---|---|
@@ -1,20 +1,21 @@ | ||
--- | ||
title: Як працює ігнорування (mute)? | ||
title: Ігнорування (mute) | ||
description: Як працює ігнорування (mute)? | ||
--- | ||
|
||
import {Aside} from "@astrojs/starlight/components"; | ||
import {Aside} from '@astrojs/starlight/components'; | ||
|
||
Ігнорування (м'ют) профілю вимикає всі сповіщення чи пости у фідах від цього профілю. | ||
|
||
У відповідях на пости, замість допису ви побачите повідомлення "Пост від облікового запису, який ви ігноруєте", з можливістю показати пост. | ||
|
||
Інформація про ігнорування є приватною. | ||
|
||
|
||
## Використання списків | ||
|
||
Щоб ігнорувати групу профілів, можна створити список та додати до нього потрібні профілі. Або вибрати вже існуючий список. | ||
|
||
<Aside type="tip"> | ||
Наприклад, профіль [@mods.mobik.zip](https://bsky.app/profile/mods.mobik.zip) веде списки росіян, вестплейнерів та інших персонажів, яких варто ігнорувати або навіть блокувати. | ||
Наприклад, профіль [@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