Added jekyll readme index plugin and added TOS and Disclaimer
This commit is contained in:
parent
b69ddcc91a
commit
8bc1633fa6
35
.gitea/PULL_REQUEST_TEMPLATE.md
Normal file
35
.gitea/PULL_REQUEST_TEMPLATE.md
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
## 📌 Subdomain Request
|
||||||
|
|
||||||
|
### ✅ Checklist
|
||||||
|
|
||||||
|
Before submitting this pull request, please confirm the following:
|
||||||
|
|
||||||
|
- [ ] I have read and agreed to the Terms of Service.
|
||||||
|
- [ ] My subdomain follows the naming conventions and does not violate any reserved names.
|
||||||
|
- [ ] I understand that my subdomain may be removed if it violates the rules.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 📄 Subdomain Details
|
||||||
|
|
||||||
|
**Requested Subdomain:**
|
||||||
|
(e.g., `mycoolsite.morlana.page`)
|
||||||
|
|
||||||
|
**Target (CNAME):**
|
||||||
|
(e.g., `example.com`)
|
||||||
|
|
||||||
|
**Enable Cloudflare Proxy?**
|
||||||
|
(Yes / No)
|
||||||
|
|
||||||
|
**Additional Notes (Optional):**
|
||||||
|
(Any extra information about your request)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### ℹ️ Additional Information
|
||||||
|
|
||||||
|
- Subdomains are subject to review and approval.
|
||||||
|
- If your request is invalid or missing details, it may be rejected.
|
||||||
|
- The maintainers have the right to revoke any subdomain at their discretion.
|
||||||
|
|
||||||
|
Thank you for your request! 🚀
|
@ -52,11 +52,6 @@ jobs:
|
|||||||
rvm use $RUBY_VERSION && ruby -v && gem -v
|
rvm use $RUBY_VERSION && ruby -v && gem -v
|
||||||
gem install bundler jekyll webrick
|
gem install bundler jekyll webrick
|
||||||
|
|
||||||
- name: Prepare Jekyll Index
|
|
||||||
run: |
|
|
||||||
echo "---\nlayout: default\ntitle: Documentation\n---\n\n" > index.md
|
|
||||||
cat README.md >> index.md
|
|
||||||
|
|
||||||
- name: Build with Jekyll
|
- name: Build with Jekyll
|
||||||
run: |
|
run: |
|
||||||
source /etc/profile.d/rvm.sh
|
source /etc/profile.d/rvm.sh
|
||||||
|
28
DISCLAIMER.md
Normal file
28
DISCLAIMER.md
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# Liability Disclaimer for morlana.page Subdomains
|
||||||
|
|
||||||
|
## 1. No Guarantee or Warranty
|
||||||
|
|
||||||
|
- This service is provided **as-is** with no warranty of any kind.
|
||||||
|
- There is **no guarantee** of uptime, stability, or continued operation.
|
||||||
|
|
||||||
|
## 2. User Responsibility
|
||||||
|
|
||||||
|
- Users are **solely responsible** for the content and usage of their subdomains.
|
||||||
|
- The maintainers of `morlana.page` **are not liable** for any damages resulting from the use or removal of a subdomain.
|
||||||
|
|
||||||
|
## 3. Content Responsibility
|
||||||
|
|
||||||
|
- The maintainers **do not monitor** or review the content hosted under subdomains.
|
||||||
|
- If a subdomain is reported for violating laws, it may be **removed without notice**.
|
||||||
|
|
||||||
|
## 4. Right to Modify or Remove Subdomains
|
||||||
|
|
||||||
|
- The maintainers reserve the right to **modify, suspend, or delete** any subdomain at their discretion.
|
||||||
|
- If a subdomain is found to be abusive or misleading, it will be taken down.
|
||||||
|
|
||||||
|
## 5. Legal Compliance
|
||||||
|
|
||||||
|
- Users must comply with all applicable laws and regulations.
|
||||||
|
- The service **will not be held liable** for any illegal or harmful use of a subdomain.
|
||||||
|
|
||||||
|
By using a `morlana.page` subdomain, you acknowledge and accept this disclaimer.
|
1
Gemfile
1
Gemfile
@ -17,6 +17,7 @@ gem "minima", "~> 2.5"
|
|||||||
group :jekyll_plugins do
|
group :jekyll_plugins do
|
||||||
gem "jekyll-feed", "~> 0.12"
|
gem "jekyll-feed", "~> 0.12"
|
||||||
gem "jekyll-remote-theme"
|
gem "jekyll-remote-theme"
|
||||||
|
gem "jekyll-readme-index"
|
||||||
end
|
end
|
||||||
|
|
||||||
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
|
||||||
|
@ -61,6 +61,8 @@ GEM
|
|||||||
webrick (~> 1.7)
|
webrick (~> 1.7)
|
||||||
jekyll-feed (0.17.0)
|
jekyll-feed (0.17.0)
|
||||||
jekyll (>= 3.7, < 5.0)
|
jekyll (>= 3.7, < 5.0)
|
||||||
|
jekyll-readme-index (0.3.0)
|
||||||
|
jekyll (>= 3.0, < 5.0)
|
||||||
jekyll-remote-theme (0.4.3)
|
jekyll-remote-theme (0.4.3)
|
||||||
addressable (~> 2.0)
|
addressable (~> 2.0)
|
||||||
jekyll (>= 3.5, < 5.0)
|
jekyll (>= 3.5, < 5.0)
|
||||||
@ -179,6 +181,7 @@ DEPENDENCIES
|
|||||||
http_parser.rb (~> 0.6.0)
|
http_parser.rb (~> 0.6.0)
|
||||||
jekyll (~> 4.3.4)
|
jekyll (~> 4.3.4)
|
||||||
jekyll-feed (~> 0.12)
|
jekyll-feed (~> 0.12)
|
||||||
|
jekyll-readme-index
|
||||||
jekyll-remote-theme
|
jekyll-remote-theme
|
||||||
minima (~> 2.5)
|
minima (~> 2.5)
|
||||||
tzinfo (>= 1, < 3)
|
tzinfo (>= 1, < 3)
|
||||||
|
41
TERMS_OF_SERVICE.md
Normal file
41
TERMS_OF_SERVICE.md
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# Terms of Service for morlana.page Subdomains
|
||||||
|
|
||||||
|
_Last updated: March 3, 2025_
|
||||||
|
|
||||||
|
## 1. Acceptance of Terms
|
||||||
|
|
||||||
|
By requesting and using a subdomain under `morlana.page`, you agree to these Terms of Service. If you do not agree, you may not use this service.
|
||||||
|
|
||||||
|
## 2. Free Service Disclaimer
|
||||||
|
|
||||||
|
- This service is provided **free of charge** on a best-effort basis.
|
||||||
|
- There is **no guarantee of uptime, performance, or continued availability**.
|
||||||
|
- The maintainers may **suspend or revoke** any subdomain at any time.
|
||||||
|
|
||||||
|
## 3. Allowed Usage
|
||||||
|
|
||||||
|
- Subdomains must **not** be used for illegal, fraudulent, misleading, or malicious activities.
|
||||||
|
- You may only request subdomains for **legitimate websites or services**.
|
||||||
|
- No phishing, spam, malware, or harmful content is allowed.
|
||||||
|
- Subdomains **must not impersonate** official brands, companies, or individuals.
|
||||||
|
|
||||||
|
## 4. Reserved & Restricted Subdomains
|
||||||
|
|
||||||
|
- Some subdomains are **reserved** for administrative or official use.
|
||||||
|
- Requests for these subdomains will be **automatically rejected**.
|
||||||
|
- The maintainers may add or remove reserved names at any time.
|
||||||
|
|
||||||
|
## 5. Liability Disclaimer
|
||||||
|
|
||||||
|
- The maintainers **do not** take responsibility for the content hosted under any subdomain.
|
||||||
|
- You are **fully responsible** for any legal issues arising from your subdomain.
|
||||||
|
- If a subdomain is found in violation of these terms, it may be removed without notice.
|
||||||
|
|
||||||
|
## 6. Modifications to These Terms
|
||||||
|
|
||||||
|
- These terms may be updated at any time without prior notice.
|
||||||
|
- Continued use of a subdomain after updates constitutes acceptance of the revised terms.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
If you have any questions regarding these terms, please contact the maintainers.
|
@ -10,3 +10,4 @@ show_downloads: false
|
|||||||
remote_theme: pages-themes/midnight@v0.2.0
|
remote_theme: pages-themes/midnight@v0.2.0
|
||||||
plugins:
|
plugins:
|
||||||
- jekyll-remote-theme
|
- jekyll-remote-theme
|
||||||
|
- jekyll-readme-index
|
||||||
|
Reference in New Issue
Block a user