Skip to content

Commit

Permalink
treewide: import snapshot of minimal mistakes 4.24.0 and guide-specif…
Browse files Browse the repository at this point in the history
…ic changes

Guide_3DS@4de4c0b4ba894ce6a0fa7662d951d55cf42fbe56
  • Loading branch information
lifehackerhansol committed Sep 29, 2023
1 parent 78db1b4 commit 4e7fce4
Show file tree
Hide file tree
Showing 144 changed files with 20,665 additions and 3,977 deletions.
3 changes: 0 additions & 3 deletions .bundle/config

This file was deleted.

14 changes: 9 additions & 5 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
assets/fonts/* linguist-vendored
assets/js/main.min.js linguist-vendored
assets/js/lunr/* linguist-vendored
assets/js/plugins/* linguist-vendored
assets/js/vendor/* linguist-vendored
assets/fonts/* linguist-vendored
assets/js/main.min.js linguist-vendored
assets/js/lunr/* linguist-vendored
assets/js/plugins/* linguist-vendored
assets/js/vendor/* linguist-vendored
_sass/minimal-mistakes/vendor/* linguist-vendored
CHANGELOG.md text merge=union
docs/_docs/18-history.md text merge=union

*.md text
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Some issue with your console after/during following the guide?
url: https://discord.gg/MWxPgEp
about: "Please join the Nintendo Homebrew Discord server to for support-related questions"
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/guide-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Guide Issue
about: Did you find some issue with the guide?
---

**Pages with issue(s)**

<!--Links to the page(s) with the issue(s).-->

**Description of the issue(s)**

<!--Describe the issue(s) with the page(s) above.-->
3 changes: 3 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
**Description**

<!--What does this pull request do? Why is it needed?-->
40 changes: 40 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Deploy site

on:
push:
branches: [ master ]
workflow_dispatch:

jobs:
doc-deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
persist-credentials: false

- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'

- name: Install dependencies
run: bundle install

- name: Run Jekyll
# Build the site using Jekyll
run: JEKYLL_ENV=production bundle exec jekyll build

# Copy (or touch) other needed files
# .nojekyll: to tell GH Pages to not rebuild (lol)
# CNAME: to tell GH Pages about the domain name
- name: Post-Jekyll build copy files
run: |
touch _site/.nojekyll
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: _site # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deploy branch
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test site build

on:
pull_request:

jobs:
doc-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
persist-credentials: false

- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'

- name: Install dependencies
run: bundle install

- name: Run Jekyll
# Build the site using Jekyll
run: JEKYLL_ENV=production bundle exec jekyll build
30 changes: 21 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,29 @@
*.gem
# Vim
*~
*.sw[p_]

# Sublime Text
*.sublime-project
*.sublime-workspace

# Ruby Gem
*.gem
.bundle
Gemfile.lock
**/vendor/bundle

# Node.js and NPM
node_modules
npm-debug.log*
package-lock.json
codekit-config.json

# macOS
.DS_Store
.jekyll-metadata

# Jekyll generated files
.jekyll-cache
.jekyll-metadata
.sass-cache
_asset_bundler_cache
_site
codekit-config.json
example/_site
node_modules
npm-debug.log*
/vendor
/.idea
Gemfile.lock
8 changes: 0 additions & 8 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,2 @@
source "https://rubygems.org"

gem "jekyll", "~> 3.9"
gem "jekyll-sitemap", "~> 1.4"
gem "jekyll-gist", "~> 1.5"
gem "jekyll-feed", "~> 0.16.0"
gem "jekyll-data", "~> 1.1"
gem "kramdown-parser-gfm", "~> 1.1"
gem "webrick", "~> 1.7"
gemspec
6 changes: 5 additions & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
The MIT License (MIT)

Copyright (c) 2017 Michael Rose
Copyright (c) 2013-2020 Michael Rose and contributors
Copyright (c) 2016-2017 Plailect
Copyright (c) 2017-2023 RiiConnect24
Copyright (c) 2023 Nintendo Homebrew


Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
48 changes: 0 additions & 48 deletions README.md

This file was deleted.

Loading

0 comments on commit 4e7fce4

Please sign in to comment.