Skip to content

Commit 27747f0

Browse files
treewide: move everything theme related to submodule
All themes are moved to `_theme` submodule, which will be shared with other websites on hacks.guide. (As a result, this updates theme to Minimal Mistakes 4.24.0.) Repository-specific files can be overlayed after the fact, such as additional languages, custom JavaScript, progress table paths and the like.
1 parent dca51a2 commit 27747f0

File tree

193 files changed

+16818
-15798
lines changed

Some content is hidden

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

193 files changed

+16818
-15798
lines changed

.editorconfig

Lines changed: 0 additions & 13 deletions
This file was deleted.

.gitattributes

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
_assets/css/vendor/* linguist-vendored
2-
_assets/js/plugins/* linguist-vendored
3-
_assets/js/vendor/* linguist-vendored
4-
assets/fonts/* linguist-vendored
5-
assets/js/vendor/* linguist-vendored
1+
assets/fonts/* linguist-vendored
2+
assets/js/main.min.js linguist-vendored
3+
assets/js/lunr/* linguist-vendored
4+
assets/js/plugins/* linguist-vendored
5+
assets/js/vendor/* linguist-vendored
6+
_sass/minimal-mistakes/vendor/* linguist-vendored
7+
CHANGELOG.md text merge=union
8+
docs/_docs/18-history.md text merge=union
9+
10+
*.md text
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Console Issue
3+
about: Some issue with your console after/during following the guide?
4+
---
5+
6+
**System model**
7+
8+
<!--Your console model, eg. Old 3DS, New 3DS, 2DS-->
9+
10+
**Firmware version**
11+
12+
<!--Your console system version, you can check this in System Settings-->
13+
14+
**Luma3DS Version(If applicable)**
15+
16+
<!--If you have Luma3DS installed, your Luma3DS version-->
17+
18+
**Guide Section(If applicable)**
19+
20+
<!--Section of the guide you had this issue-->
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: Guide Issue
3+
about: Did you find some issue with the guide?
4+
---
5+
6+
**Pages with issue(s)**
7+
8+
<!--Links to the page(s) with the issue(s).-->
9+
10+
**Description of the issue(s)**
11+
12+
<!--Describe the issue(s) with the page(s) above.-->

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10
8+
- package-ecosystem: bundler
9+
directory: "/"
10+
schedule:
11+
interval: daily
12+
open-pull-requests-limit: 10

.github/pull_request_template.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
**Description**
2+
3+
<!--What does this pull request do? Why is it needed?-->

.gitignore

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,29 @@
1-
*.gem
1+
# Vim
2+
*~
3+
*.sw[p_]
4+
5+
# Sublime Text
26
*.sublime-project
37
*.sublime-workspace
8+
9+
# Ruby Gem
10+
*.gem
411
.bundle
12+
Gemfile.lock
13+
**/vendor/bundle
14+
15+
# Node.js and NPM
16+
node_modules
17+
npm-debug.log*
18+
package-lock.json
19+
codekit-config.json
20+
21+
# macOS
522
.DS_Store
23+
24+
# Jekyll generated files
25+
.jekyll-cache
626
.jekyll-metadata
727
.sass-cache
828
_asset_bundler_cache
929
_site
10-
codekit-config.json
11-
example/_site
12-
node_modules
13-
npm-debug.log*
14-
/vendor
15-
torrents
16-
Gemfile.lock

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "_theme"]
2+
path = _theme
3+
url = https://github.com/hacks-guide/minimal-mistakes
4+
branch = hacks-guide

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
source "https://rubygems.org"
2-
gem 'jekyll-redirect-from'
3-
gemspec
2+
gem "jekyll-sass-converter", "~>2.2"
3+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
4+
gem 'minimal-mistakes-hacks-guide', :path => '_theme'

LICENSE.txt renamed to LICENSE

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017 Michael Rose
3+
(Jekyll Theme)
4+
Copyright (c) 2013-2020 Michael Rose and contributors
5+
6+
(Nord skin)
7+
Copyright (c) 2016-2021 Arctic Ice Studio development@arcticicestudio.com (https://www.arcticicestudio.com)
8+
Copyright (c) 2016-2021 Sven Greb development@svengreb.de (https://www.svengreb.de)
49

510
Permission is hereby granted, free of charge, to any person obtaining a copy
611
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)