-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
treewide: import snapshot of minimal mistakes 4.24.0 and guide-specif…
…ic changes Guide_3DS@4de4c0b4ba894ce6a0fa7662d951d55cf42fbe56
- Loading branch information
1 parent
78db1b4
commit 4e7fce4
Showing
144 changed files
with
20,665 additions
and
3,977 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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?--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.