Skip to content

Commit 34b208e

Browse files
committed
Initialize Template-Meadows
0 parents  commit 34b208e

Some content is hidden

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

55 files changed

+9022
-0
lines changed

.editorconfig

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# Start of script
2+
3+
# Editor configuration file for Seanpm2001/GitHub Pages Site (V6)
4+
5+
root = true
6+
7+
[*]
8+
indent_style = space
9+
indent_size = 2
10+
end_of_line = lf
11+
charset = utf-8
12+
trim_trailing_whitespace = false
13+
insert_final_newline = false
14+
line_wrap_mode = soft wrap
15+
16+
[*.md]
17+
indent_style = space
18+
indent_size = 2
19+
end_of_line = lf
20+
charset = utf-8
21+
trim_trailing_whitespace = false
22+
insert_final_newline = false
23+
line_wrap_mode = soft wrap
24+
25+
[*.yml *.yaml]
26+
indent_style = space
27+
indent_size = 2
28+
end_of_line = lf
29+
charset = utf-8
30+
trim_trailing_whitespace = false
31+
insert_final_newline = false
32+
line_wrap_mode = soft wrap
33+
34+
[*.txt]
35+
indent_style = space
36+
indent_size = 2
37+
end_of_line = lf
38+
charset = utf-8
39+
trim_trailing_whitespace = false
40+
insert_final_newline = false
41+
line_wrap_mode = soft wrap
42+
43+
[*.mk]
44+
indent_style = space
45+
indent_size = 2
46+
end_of_line = lf
47+
charset = utf-8
48+
trim_trailing_whitespace = false
49+
insert_final_newline = false
50+
line_wrap_mode = soft wrap
51+
52+
[*.sh]
53+
indent_style = space
54+
indent_size = 2
55+
end_of_line = lf
56+
charset = utf-8
57+
trim_trailing_whitespace = false
58+
insert_final_newline = false
59+
line_wrap_mode = soft wrap
60+
61+
[*.py]
62+
indent_style = space
63+
indent_size = 2
64+
end_of_line = lf
65+
charset = utf-8
66+
trim_trailing_whitespace = false
67+
insert_final_newline = false
68+
line_wrap_mode = soft wrap
69+
70+
[*.qs]
71+
indent_style = space
72+
indent_size = 2
73+
end_of_line = lf
74+
charset = utf-8
75+
trim_trailing_whitespace = false
76+
insert_final_newline = false
77+
line_wrap_mode = soft wrap
78+
79+
[*.htm *.html]
80+
indent_style = space
81+
indent_size = 2
82+
end_of_line = lf
83+
charset = utf-8
84+
trim_trailing_whitespace = false
85+
insert_final_newline = false
86+
line_wrap_mode = soft wrap
87+
88+
# File info
89+
90+
# File type: Editorconfig file (*.editorconfig)
91+
# File version: 1 (Friday, 2021 September 3rd at 7:38 pm)
92+
# Line count (including blank lines and compiler line): 95
93+
94+
# End of script

.gitattributes

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Start of script
2+
# .gitattributes
3+
# This file defines what languages can show up in the GitHub linguist menu (the menu that tells you what percentage each language is using up on this project.
4+
# Some non-programming languages must be included manually with this file. Want to create your own? Do something similar to what is done here, and name the file
5+
# .gitattributes
6+
# and nothing else, no characters before, no characters after
7+
# Start of linguist script
8+
*.htm linguist-detectable=true
9+
*.htm linguist-documentation=false
10+
*.html linguist-detectable=true
11+
*.html linguist-documentation=false
12+
# Do not include, as it would become a dominant language that shouldn't be the language people refer this project to
13+
*.yml linguist-detectable=false
14+
*.yml linguist-documentation=false
15+
*.yaml linguist-detectable=false
16+
*.yaml linguist-documentation=false
17+
# Python
18+
*.py linguist-detectable=true
19+
*.py linguist-documentation=false
20+
# Microsoft Q#
21+
*.qs linguist-detectable=true
22+
*.qs linguist-documentation=false
23+
# BASH (Shell, sh)
24+
*.sh linguist-detectable=true
25+
*.sh linguist-documentation=false
26+
# Markdown
27+
# Do not include, as it would become the 100% dominant language and would hide all the other languages as "other"
28+
*.md linguist-detectable=false
29+
*.md linguist-documentation=false
30+
*.mkd linguist-detectable=false
31+
*.mkd linguist-documentation=false
32+
*.markdown linguist-detectable=false
33+
*.markdown linguist-documentation=false
34+
# Makefile (GNU Make)
35+
# Do not include, as it is not needed to be shown
36+
*.mk linguist-detectable=false
37+
*.mk linguist-documentation=false
38+
# End of linguist script
39+
# File info
40+
# File type: .gitattributes file
41+
# File version: 1 (Friday, 2021 September 3rd at 8:20 pm)
42+
# Line count (including blank lines and compiler line): 44
43+
# End of script

.github/.github_README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
***
3+
4+
# .github folder info
5+
6+
The `.github` folder in this repository contains data for this repository for hosting on GitHub. This directory did not become mandatory until March 15th 2021.
7+
8+
This directory contains several features.
9+
10+
**Funding** - This funding info usually contains a `FUNDING.yml` file that links to sponsor info for this project. A folder called `/Funding` is also included, and at `/Funding/OldVersions/` contains old versions of the funding file.
11+
12+
**Issues** - This directory contains archives of issues I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:
13+
14+
_I archive my own GitHub issues, and will not archive issues you raise without your permission. This includes replies, comments, and posts._
15+
16+
* A YAML file is also included that contains GitHub label data, with hexadecimal color codes, issue description, and issue titles.
17+
18+
* Sometimes, other YAML files are included for configuration of issues.
19+
20+
**Coming soon:** A separate YAML file for each issue directory that contains label data
21+
22+
**Discussions** - Similar to the issues directory, this directory contains archives of discussions I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:
23+
24+
_I archive my own GitHub discussions, and will not archive discussions you raise without your permission. This includes replies, comments, and posts_
25+
26+
**SocialPreview** - This directory contains social media preview info for this repository for when you share or search for it. This makes a background appear above the repository in searches or messages, so that the profile picture of the user/organization is not shown in the preview. You can read more about it [here](/.github/SocialPreview/README.md).
27+
28+
That is currently it at the moment, other than the new description for this process being placed at the root of the directory (the file you are currently reading)
29+
30+
***
31+
32+
## File info
33+
34+
**File type:** `Markdown (*.md)`
35+
36+
**Original creation date:** `Thursday, March 18th 2021 at 3:18 pm)`
37+
38+
**File version:** `1 (Thursday, March 18th 2021 at 3:18 pm)`
39+
40+
**Line count (including blank lines and compiler line):** `43`
41+
42+
***

.github/.github_README_V1.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
***
3+
4+
# .github folder info
5+
6+
The `.github` folder in this repository contains data for this repository for hosting on GitHub. This directory did not become mandatory until March 15th 2021.
7+
8+
This directory contains several features.
9+
10+
**Funding** - This funding info usually contains a `FUNDING.yml` file that links to sponsor info for this project. A folder called `/Funding` is also included, and at `/Funding/OldVersions/` contains old versions of the funding file.
11+
12+
**Issues** - This directory contains archives of issues I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:
13+
14+
_I archive my own GitHub issues, and will not archive issues you raise without your permission. This includes replies, comments, and posts._
15+
16+
* A YAML file is also included that contains GitHub label data, with hexadecimal color codes, issue description, and issue titles.
17+
18+
* Sometimes, other YAML files are included for configuration of issues.
19+
20+
**Coming soon:** A separate YAML file for each issue directory that contains label data
21+
22+
**Discussions** - Similar to the issues directory, this directory contains archives of discussions I raised on this project, along with general privacy info. A brief description of the privacy policy goes as follows:
23+
24+
_I archive my own GitHub discussions, and will not archive discussions you raise without your permission. This includes replies, comments, and posts_
25+
26+
**SocialPreview** - This directory contains social media preview info for this repository for when you share or search for it. This makes a background appear above the repository in searches or messages, so that the profile picture of the user/organization is not shown in the preview. You can read more about it [here](/.github/SocialPreview/README.md).
27+
28+
That is currently it at the moment, other than the new description for this process being placed at the root of the directory (the file you are currently reading)
29+
30+
***
31+
32+
## File info
33+
34+
**File type:** `Markdown (*.md)`
35+
36+
**Original creation date:** `Thursday, March 18th 2021 at 3:18 pm)`
37+
38+
**File version:** `1 (Thursday, March 18th 2021 at 3:18 pm)`
39+
40+
**Line count (including blank lines and compiler line):** `43`
41+
42+
***

.github/Discussions/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
***
3+
4+
# Privacy policy
5+
6+
I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be.
7+
8+
***

.github/Discussions/README_V1.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
***
3+
4+
# Privacy policy
5+
6+
I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be.
7+
8+
***

.github/FUNDING.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
5+
patreon: seanpm2001 # Creator page
6+
patreon: seanpm2001_software # Main page
7+
# Replace with a single Patreon username
8+
9+
open_collective: # Replace with a single Open Collective username
10+
ko_fi: # Replace with a single Ko-fi username
11+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
12+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
13+
liberapay: # Replace with a single Liberapay username
14+
issuehunt: # Replace with a single IssueHunt username
15+
otechie: # Replace with a single Otechie username
16+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
5+
patreon: seanpm2001 # Creator page
6+
patreon: seanpm2001_software # Main page
7+
# Replace with a single Patreon username
8+
9+
open_collective: # Replace with a single Open Collective username
10+
ko_fi: # Replace with a single Ko-fi username
11+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
12+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
13+
liberapay: # Replace with a single Liberapay username
14+
issuehunt: # Replace with a single IssueHunt username
15+
otechie: # Replace with a single Otechie username
16+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/Funding/README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
***
3+
4+
# About the funding directory
5+
6+
The funding directory contains an archive of the funding file for this project. The funding file enables GitHub sponsorships. The main funding file is 1 directory below, located [here](/.github/FUNDING.yml).
7+
8+
***
9+
10+
## Sponsor info
11+
12+
![/SponsorButton.png](/SponsorButton.png)
13+
14+
You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors)
15+
16+
You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/)
17+
18+
Try it out! The sponsor button is right up next to the watch/unwatch button.
19+
20+
***
21+
22+
## File info
23+
24+
**File type:** `Markdown (*.md)`
25+
26+
**Original creation date:** `Thursday, March 18th 2021 at 3:33 pm)`
27+
28+
**File version:** `1 (Thursday, March 18th 2021 at 3:33 pm)`
29+
30+
**Line count (including blank lines and compiler line):** `33`
31+
32+
***

.github/Funding/README_V1.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
***
3+
4+
# About the funding directory
5+
6+
The funding directory contains an archive of the funding file for this project. The funding file enables GitHub sponsorships. The main funding file is 1 directory below, located [here](/.github/FUNDING.yml).
7+
8+
***
9+
10+
## Sponsor info
11+
12+
![/SponsorButton.png](/SponsorButton.png)
13+
14+
You can sponsor this project if you like, but please specify what you want to donate to. [See the funds you can donate to here](https://github.com/seanpm2001/Sponsor-info/tree/main/For-sponsors)
15+
16+
You can view other sponsor info [here](https://github.com/seanpm2001/Sponsor-info/)
17+
18+
Try it out! The sponsor button is right up next to the watch/unwatch button.
19+
20+
***
21+
22+
## File info
23+
24+
**File type:** `Markdown (*.md)`
25+
26+
**Original creation date:** `Thursday, March 18th 2021 at 3:33 pm)`
27+
28+
**File version:** `1 (Thursday, March 18th 2021 at 3:33 pm)`
29+
30+
**Line count (including blank lines and compiler line):** `33`
31+
32+
***
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Default GitHub issue data file (YAML)
2+
issuelabel_1: color1: "#ffffff" title1: "wontfix" description1: "This will not be worked on"
3+
issueLabel_2: color2: "#d876e3" title2: "question" description2: "Further information is requested"
4+
issueLabel_3: color3: "#e4e669" title3: "invalid" description3: "This doesn't seem right"
5+
issueLabel_4: color4: "#008672" title4: "help wanted" description4: "Extra attention is needed"
6+
issueLabel_5: color5: "#7057ff" title5: "good first issue" description5: "Good for newcomers"
7+
issueLabel_6: color6: "#a2eeef" title6: "enhancement" description6: "New feature or request"
8+
issueLabel_7: color7: "#cfd3d7" title7: "duplicate" description7: "This issue or pull request already exists"
9+
issueLabel_8: color8: "#0075ca" title8: "documentation" description8: "Improvements or additions to documentation"
10+
issueLabel_9: color9: "#d73a4a" title9: "bug" description9: "Something isn't working"
11+
# Users can also create their own issue labels, and customize the color, title, and description
12+
# issueLabel_10: color10: "#000000" title10: "void" description10: "not yet created"
13+
# No known limit on # of issue labels
14+
# End of file

.github/Issues/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
***
3+
4+
# Privacy policy
5+
6+
I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be.
7+
8+
***

.github/Issues/README_V1.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
***
3+
4+
# Privacy policy
5+
6+
I archive my own GitHub discussions and issues. By default, I respect users privacy, and will not have your issue or discussion archived. You have to specifically ask for it to be archived if you want it to be.
7+
8+
***

0 commit comments

Comments
 (0)