Skip to content

Commit 96c4220

Browse files
authored
User/pensjonatus/usun wydarzenia (#251)
* Usuń "Wydarzenia" * Dodaj linki do Content Bytes i MeetContent
1 parent b313dcb commit 96c4220

27 files changed

Lines changed: 11 additions & 1382 deletions

File tree

CONTRIBUTING.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,6 @@ on setting up your environment, creating posts, and submitting pull requests.
4444
- Store additional images in an `images/` folder within your post's directory.
4545
- Provide proper attribution for external images.
4646

47-
## Best Practices for Events (Wydarzenia)
48-
49-
- **Folder Structure**: Each event should have its own folder under
50-
`wydarzenia/`, named after the event's URL slug.
51-
- **File Naming**: Use `index.md` for the main content.
52-
- **Metadata**: Include metadata similar to blog posts, with additional fields
53-
for event-specific details (e.g., date, location).
54-
- **Date**: The `date` field in the metadata should reflect the date of the
55-
event, not the publication date of the blog post.
56-
- **Content**:
57-
- Highlight key details like date, time, location, and agenda.
58-
- Use Markdown for formatting and structure.
59-
60-
### Featuring Upcoming Events
61-
62-
- Events with future dates will be featured prominently on the home page to
63-
ensure visibility.
64-
6547
## Style Guidelines
6648

6749
- **Headers**: Use Markdown headers to organize content. Start with `#` for the

docusaurus.config.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ const config: Config = {
8585
label: 'English',
8686
position: 'right',
8787
},
88-
{ to: '/wydarzenia', label: 'Wydarzenia', position: 'right' },
8988
{ to: '/konferencje', label: 'Konferencje', position: 'right' },
9089
{ to: '/linki', label: 'Linki', position: 'right' },
9190
{ to: '/szkolenia', label: 'Szkolenia', position: 'right' },
@@ -119,18 +118,6 @@ const config: Config = {
119118
} satisfies Preset.ThemeConfig,
120119
plugins: [
121120
techWriterWebpackPlugin,
122-
[
123-
'@docusaurus/plugin-content-blog',
124-
{
125-
id: 'wydarzenia',
126-
routeBasePath: 'wydarzenia',
127-
path: './wydarzenia',
128-
authorsMapPath: '../blog/authors.yml',
129-
blogListComponent:
130-
'@site/src/components/EventsBlogList/EventsBlogList.tsx',
131-
blogSidebarTitle: 'Wydarzenia',
132-
},
133-
],
134121
],
135122
themes: ['@docusaurus/theme-live-codeblock'],
136123
};

src/components/BlogList/BlogList.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import HomePageHeader from '../Home/HomePageHeader';
88
import Partners from '../Partners/Partners';
99
import SiteHighlights from '../SiteHighlights/SiteHighlights';
1010
import styles from './BlogList.module.css';
11-
import { UpcomingEvents } from '../UpcomingEvents/UpcomingEvents';
1211

1312
export default function BlogHome(props): JSX.Element {
1413
const { pathname, search } = props.history.location;
@@ -21,7 +20,6 @@ export default function BlogHome(props): JSX.Element {
2120
return (
2221
<Layout title="Strona domowa" description={siteConfig.tagline}>
2322
<HomePageHeader />
24-
<UpcomingEvents />
2523
<div className={styles.topWrapper}>
2624
<div className="container">
2725
<div style={{ position: 'relative' }}>

src/components/UpcomingEvents/UpcomingEvents.module.css

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/components/UpcomingEvents/UpcomingEvents.tsx

Lines changed: 0 additions & 49 deletions
This file was deleted.

src/components/UpcomingEvents/utils.ts

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/pages/linki.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,17 @@
7575

7676
## Społeczności i fora
7777

78+
[Content Bytes](https://contentbytes.pl/)
79+
: Meetupy w Krakowie skierowane do ludzi zainteresowanych dokumentacją, UX writingiem, dostępnością/accessibility, AI, storytellingiem i zarządzaniem.
80+
81+
[MeetContent](https://meetcontent.github.io/)
82+
: Meetupy dla specjalistów od contentu we Wrocławiu i spotkania online po hiszpańsku! Coś dla tech writerów, pisarzy UI i UX, autorów szkoleń i projektantów graficznych.
83+
7884
[Write the Docs](https://www.writethedocs.org/)
7985
: Globalna społeczność zrzeszająca ludzi związanych z branżą komunikacji technicznej, oferująca możliwość nawiązywania kontaktów branżowych online, jak i podczas corocznych konferencji odbywających się w różnych miejscach świata.
8086

8187
[Reddit - Technical Writing](https://www.reddit.com/r/technicalwriting/) (oraz sekcja [Career FAQ](https://www.reddit.com/r/technicalwriting/comments/qh5i82/career_faqs_read_this_before_asking_about/)), [Reddit - Tech Writing](https://www.reddit.com/r/techwriting/), [Reddit - Documentation](https://www.reddit.com/r/documentation/)
82-
: Trzy fora dyskusyjne na platformie Reddit związane z poradami, stawianiem pierwszych kroków w branży i pomocą w poszukiwaniu pracy jako .
88+
: Trzy fora dyskusyjne na platformie Reddit związane z poradami, stawianiem pierwszych kroków w branży i pomocą w poszukiwaniu pracy jako tech writer.
8389

8490
## Podcasty
8591

src/scripts/delete-old-events.mjs

Lines changed: 0 additions & 120 deletions
This file was deleted.

src/scripts/remove-unused-cover-images.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fs from 'fs/promises';
22
import path from 'path';
33

44
async function findUsedCoverImages() {
5-
const dirsToParse = ['./blog', './wydarzenia'];
5+
const dirsToParse = ['./blog'];
66
const coverImageFolder = './static/img/cover';
77

88
async function findMarkdownFiles(dir) {

0 commit comments

Comments
 (0)