Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/ISSUE_TEMPLATE/website-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Report issues from the docs.fair.pm website

name: Website problem
description: Report a problem with the FAIR documentation website
title: "[Website]: "
labels: ["website", "documentation", "triage"]
body:
- type: markdown
attributes:
value: |
Thanks for reporting a problem with the FAIR docs website.

- type: dropdown
id: problem_type
attributes:
label: What kind of problem is this?
options:
- Accessibility issue
- Broken link
- Incorrect or outdated content
- Missing information
- Website bug
- Search/navigation problem
- Other
validations:
required: true

- type: input
id: page_url
attributes:
label: Page URL
description: Paste the page where you noticed the problem.
placeholder: https://docs.fair.pm/...
validations:
required: false

- type: textarea
id: description
attributes:
label: What happened?
description: Describe the issue or inquiry.
validations:
required: true

- type: textarea
id: expected
attributes:
label: What did you expect?
validations:
required: false
6 changes: 5 additions & 1 deletion docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const config = {
navbar: {
title: 'FAIR Documentation',
// logo: {
// alt: 'My Site Logo',
// alt: 'FAIR Logo',
// src: 'img/logo.svg',
// },
items: [
Expand Down Expand Up @@ -119,6 +119,10 @@ const config = {
label: 'About this documentation',
to: 'about',
},
{
label: 'Found an issue? Report it here',
href: 'https://github.com/fairpm/docs/issues/new?template=website-issue.yml',
},
{
label: 'Docs GitHub repo',
href: 'https://github.com/fairpm/docs',
Expand Down
Loading