Skip to content

Commit 3441825

Browse files
committed
Fix sitemap
1 parent 5a9f5eb commit 3441825

3 files changed

Lines changed: 10 additions & 21 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ A clear and concise description of what the bug is.
1212

1313
**To Reproduce**
1414
Steps to reproduce the behavior:
15+
1516
1. Go to '...'
1617
2. Run '....'
1718
3. See error
@@ -23,8 +24,9 @@ A clear and concise description of what you expected to happen.
2324
If applicable, add screenshots to help explain your problem.
2425

2526
**Desktop (please complete the following information):**
26-
- OS: [e.g. iOS]
27-
- Version [e.g. 22]
27+
28+
- OS: [e.g. iOS]
29+
- Version [e.g. 22]
2830

2931
**Additional context**
3032
Add any other context about the problem here.

CODE_OF_CONDUCT.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
contact@tryphp.dev.
63+
<contact@tryphp.dev>.
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the
@@ -116,13 +116,13 @@ the community.
116116

117117
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118118
version 2.0, available at
119-
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
119+
<https://www.contributor-covenant.org/version/2/0/code_of_conduct.html>.
120120

121121
Community Impact Guidelines were inspired by [Mozilla's code of conduct
122122
enforcement ladder](https://github.com/mozilla/diversity).
123123

124124
[homepage]: https://www.contributor-covenant.org
125125

126126
For answers to common questions about this code of conduct, see the FAQ at
127-
https://www.contributor-covenant.org/faq. Translations are available at
128-
https://www.contributor-covenant.org/translations.
127+
<https://www.contributor-covenant.org/faq>. Translations are available at
128+
<https://www.contributor-covenant.org/translations>.

astro.config.mjs

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,9 @@ import tailwind from "@astrojs/tailwind";
55

66
import sitemap from "@astrojs/sitemap";
77

8-
const base = "https://tryphp.dev";
9-
108
// https://astro.build/config
119
export default defineConfig({
1210
output: "static",
13-
site: base,
14-
integrations: [
15-
tailwind(),
16-
sitemap({
17-
customPages: [
18-
`${base}/install.sh`,
19-
`${base}/7.4/install.sh`,
20-
`${base}/8.1/install.sh`,
21-
`${base}/8.2/install.sh`,
22-
`${base}/8.3/install.sh`,
23-
],
24-
}),
25-
],
11+
site: "https://tryphp.dev",
12+
integrations: [tailwind(), sitemap()],
2613
});

0 commit comments

Comments
 (0)