Skip to content
This repository was archived by the owner on Jan 4, 2023. It is now read-only.

Commit f2c3bf7

Browse files
Initial commit
0 parents  commit f2c3bf7

15 files changed

+541
-0
lines changed

.gitignore

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
9+
# Diagnostic reports (https://nodejs.org/api/report.html)
10+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11+
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
20+
21+
# Coverage directory used by tools like istanbul
22+
coverage
23+
*.lcov
24+
25+
# nyc test coverage
26+
.nyc_output
27+
28+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29+
.grunt
30+
31+
# Bower dependency directory (https://bower.io/)
32+
bower_components
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Compiled binary addons (https://nodejs.org/api/addons.html)
38+
build/Release
39+
40+
# Dependency directories
41+
node_modules/
42+
jspm_packages/
43+
44+
# TypeScript v1 declaration files
45+
typings/
46+
47+
# TypeScript cache
48+
*.tsbuildinfo
49+
50+
# Optional npm cache directory
51+
.npm
52+
53+
# Optional eslint cache
54+
.eslintcache
55+
56+
# Microbundle cache
57+
.rpt2_cache/
58+
.rts2_cache_cjs/
59+
.rts2_cache_es/
60+
.rts2_cache_umd/
61+
62+
# Optional REPL history
63+
.node_repl_history
64+
65+
# Output of 'npm pack'
66+
*.tgz
67+
68+
# Yarn Integrity file
69+
.yarn-integrity
70+
71+
# dotenv environment variables file
72+
.env
73+
.env.test
74+
75+
# parcel-bundler cache (https://parceljs.org/)
76+
.cache
77+
78+
# Next.js build output
79+
.next
80+
81+
# Nuxt.js build / generate output
82+
.nuxt
83+
dist
84+
85+
# Gatsby files
86+
.cache/
87+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88+
# https://nextjs.org/blog/next-9-1#public-directory-support
89+
# public
90+
91+
# vuepress build output
92+
.vuepress/dist
93+
94+
# Serverless directories
95+
.serverless/
96+
97+
# FuseBox cache
98+
.fusebox/
99+
100+
# DynamoDB Local files
101+
.dynamodb/
102+
103+
# TernJS port file
104+
.tern-port

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 GitHub, Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Discord Welcome bot site
2+
3+
This folder is the source code for site of discord welcome bot.
4+
5+
## License
6+
7+
The site of discord welcome bot is licensed under [MIT](LICENSE)

_config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
title: Welcome Bot site
2+
theme: jekyll-theme-cayman

_includes/footer.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Find us at
2+
3+
- [GitHub](https://github.com/Welcome-Bot/welcome-bot)
4+
- [Discord](https://dsc.gg/welcome-bot-guild)
5+
6+
Copyright 2021 The Welcome-Bot Team and Contributors

_includes/header.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Welcome bot

_layouts/default.html

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
5+
{% if site.google_analytics %}
6+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
7+
<script>
8+
window.dataLayer = window.dataLayer || [];
9+
function gtag(){dataLayer.push(arguments);}
10+
gtag('js', new Date());
11+
gtag('config', '{{ site.google_analytics }}');
12+
</script>
13+
{% endif %}
14+
<meta charset="UTF-8">
15+
16+
{% seo %}
17+
<link rel="preconnect" href="https://fonts.gstatic.com">
18+
<link rel="preload" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" as="style" type="text/css" crossorigin>
19+
<meta name="viewport" content="width=device-width, initial-scale=1">
20+
<meta name="theme-color" content="#157878">
21+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
22+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
23+
</head>
24+
<body>
25+
<a id="skip-to-content" href="#content">Skip to the content.</a>
26+
27+
<header class="page-header" role="banner">
28+
<h1 class="project-name">{{ page.title | default: site.title | default: site.github.repository_name }}</h1>
29+
<h2 class="project-tagline">{{ page.description | default: site.description | default: site.github.project_tagline }}</h2>
30+
{% if site.github.is_project_page %}
31+
<a href="{{ site.github.repository_url }}" class="btn">View on GitHub</a>
32+
{% endif %}
33+
{% if site.show_downloads %}
34+
<a href="{{ site.github.zip_url }}" class="btn">Download .zip</a>
35+
<a href="{{ site.github.tar_url }}" class="btn">Download .tar.gz</a>
36+
{% endif %}
37+
</header>
38+
39+
<main id="content" class="main-content" role="main">
40+
{{ content }}
41+
42+
<footer class="site-footer">
43+
{% if site.github.is_project_page %}
44+
<span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</span>
45+
{% endif %}
46+
<a href="{{ '/' | relative_url }}">Back to main index page</a>
47+
</footer>
48+
</main>
49+
</body>
50+
</html>

_layouts/docs.html

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
<head>
4+
5+
{% if site.google_analytics %}
6+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
7+
<script>
8+
window.dataLayer = window.dataLayer || [];
9+
function gtag(){dataLayer.push(arguments);}
10+
gtag('js', new Date());
11+
gtag('config', '{{ site.google_analytics }}');
12+
</script>
13+
{% endif %}
14+
<meta charset="UTF-8">
15+
16+
{% seo %}
17+
<link rel="preconnect" href="https://fonts.gstatic.com">
18+
<link rel="preload" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" as="style" type="text/css" crossorigin>
19+
<meta name="viewport" content="width=device-width, initial-scale=1">
20+
<meta name="theme-color" content="#157878">
21+
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
22+
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
23+
</head>
24+
<body>
25+
<a id="skip-to-content" href="#content">Skip to the content.</a>
26+
27+
<header class="page-header" role="banner">
28+
<h1 class="project-name">{{ page.title | default: site.title | default: site.github.repository_name }} - Docs</h1>
29+
<h2 class="project-tagline">{{ page.description | default: site.description | default: site.github.project_tagline }}</h2>
30+
{% if site.github.is_project_page %}
31+
<a href="{{ site.github.repository_url }}" class="btn">View on GitHub</a>
32+
{% endif %}
33+
</header>
34+
35+
<main id="content" class="main-content" role="main">
36+
{{ content }}
37+
38+
<footer class="site-footer">
39+
{% if site.github.is_project_page %}
40+
<span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</span>
41+
{% endif %}
42+
<a href="{{ '/docs' | relative_url }}">Back to docs index page</a>
43+
</footer>
44+
</main>
45+
</body>
46+
</html>

assets/css/style.scss

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
@import "{{ site.theme }}";
2+
/*!
3+
* Sass style for Welcome-Bot org.
4+
* Copyright 2021 The Welcome-Bot organisation and Contributors
5+
*/
6+
7+
/* Variables */
8+
$github-black: #0d1117;
9+
$github-grey: #c9d1d9;
10+
11+
/* Themes */
12+
[data-theme="dark"] {
13+
color: $github-grey;
14+
background-color: $github-black;
15+
}
16+
17+
/* Text aligning */
18+
.right {
19+
text-align: right;
20+
}
21+
.left {
22+
text-align: left;
23+
}
24+
.center {
25+
text-align: center;
26+
}
27+
.wide {
28+
letter-spacing: 4px;
29+
}
30+
.underline {
31+
text-decoration: underline;
32+
}
33+
.strikethrough {
34+
text-decoration: line-through;
35+
}

docs/README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: docs
3+
---
4+
5+
# Docs - Discord Welcome bot
6+
7+
## Pages
8+
9+
These are the pages in the documentation for discord welcome bot:
10+
- [Commands](commands.md)
11+
- [Privacy Policy](privacy-policy.md)
12+
- [Terms of service](terms.md)
13+
- [Self hosting](self-hosting.md)

0 commit comments

Comments
 (0)