Skip to content

Commit 157b37b

Browse files
authored
Fresh setup (#1)
* deleted * remove older blog * init astro pure * init 1.0
1 parent 0289357 commit 157b37b

File tree

237 files changed

+20000
-6624
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+20000
-6624
lines changed

.github/ISSUE_TEMPLATE/01_bug.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: "\U0001F41B Bug report"
2+
description: Report an issue or possible bug
3+
labels: ['bug']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
## Quick Checklist
9+
Thank you for taking the time to file a bug report! Please fill out this form as completely as possible.
10+
11+
✅ I am using the **latest version of `astro-theme-pure`** and all plugins.
12+
✅ I am using a version of Node that Astro supports (`v18.17.1` or `v20.3.0` or higher.)
13+
- type: textarea
14+
id: environment-auto-check
15+
attributes:
16+
label: Run command like `bun astro-pure info`, `bun astro info`
17+
description: Paste your auto check command information.
18+
- type: textarea
19+
id: bug-description
20+
attributes:
21+
label: Describe the Bug
22+
description: A clear and concise description of what the bug is.
23+
validations:
24+
required: true
25+
- type: input
26+
id: browser
27+
attributes:
28+
label: If this issue only occurs in one browser, which browser is a problem?
29+
placeholder: Chrome, Firefox, Safari
30+
- type: checkboxes
31+
id: will-pr
32+
attributes:
33+
label: Participation
34+
options:
35+
- label: I am willing to submit a pull request for this issue.
36+
required: false
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: 💡 Feature
2+
description: Suggest a new feature or improvement.
3+
labels: ['enhancement']
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Description
9+
description: A summary of the feature or improvement you are suggesting.
10+
validations:
11+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 👾 Chat
4+
url: https://t.me/astro_pure
5+
about: Chat with the community on Telegram
6+
- name: 📘 Documentation
7+
url: https://astro-pure.js.org/docs
8+
about: Checkout the documentation for more information
9+
- name: 💁 Discussion
10+
url: https://github.com/cworld1/astro-theme-pure/discussions
11+
about: 'This issue tracker is not for support questions. Leave a comment on the discussion board if you need help.'

.github/assets/body.webp

378 KB
Loading

.github/assets/header.webp

62.2 KB
Loading
18.5 KB
Loading

.github/workflows/deploy.yml

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

.gitignore

Lines changed: 66 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,80 @@
1-
# build output
2-
dist/
3-
.output/
1+
# Created by https://www.toptal.com/developers/gitignore/api/astro,vim,visualstudiocode,vercel
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=astro,vim,visualstudiocode,vercel
43

5-
# dependencies
6-
node_modules/
4+
### Astro ###
5+
# Gitignore template for Astro projects
6+
# Ignore content collection generated files
7+
.astro
8+
9+
### Vercel ###
10+
.vercel
11+
12+
### Vim ###
13+
# Swap
14+
[._]*.s[a-v][a-z]
15+
!*.svg # comment out if you don't need vector files
16+
[._]*.sw[a-p]
17+
[._]s[a-rt-v][a-z]
18+
[._]ss[a-gi-z]
19+
[._]sw[a-p]
20+
21+
# Session
22+
Session.vim
23+
Sessionx.vim
24+
25+
# Temporary
26+
.netrwhist
27+
*~
28+
# Persistent undo
29+
[._]*.un~
30+
31+
### VisualStudioCode ###
32+
.vscode/*
33+
!.vscode/settings.json
34+
!.vscode/tasks.json
35+
!.vscode/launch.json
36+
!.vscode/extensions.json
37+
!.vscode/*.code-snippets
38+
39+
# Local History for Visual Studio Code
40+
.history/
741

42+
# Built Visual Studio Code Extensions
43+
*.vsix
44+
45+
### VisualStudioCode Patch ###
46+
# Ignore all local history of files
47+
.history
48+
.ionide
49+
50+
# End of https://www.toptal.com/developers/gitignore/api/astro,vim,visualstudiocode,vercel
51+
52+
### Custom ###
53+
54+
# ides
55+
*.code-workspace
56+
57+
# build output
58+
dist/
59+
.astro/
60+
.vercel/
861
# logs
962
npm-debug.log*
1063
yarn-debug.log*
1164
yarn-error.log*
1265
pnpm-debug.log*
1366

67+
# dependencies
68+
node_modules/
1469

1570
# environment variables
1671
.env
1772
.env.production
1873

19-
# macOS-specific files
74+
# others
2075
.DS_Store
76+
old_blog
77+
ignore.*
78+
bunfig.toml
79+
/src/content/blog/test.*
80+
/test/

.npmrc

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

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/**
2+
src/icons/**
3+
public/scripts/*

0 commit comments

Comments
 (0)