Compare commits
9 commits
master
...
jasperzebr
Author | SHA1 | Date | |
---|---|---|---|
|
9071f20178 | ||
|
267d79e4d6 | ||
|
41d3ff4cba | ||
|
c1a1b25418 | ||
|
62024a7419 | ||
|
8c7fee8622 | ||
|
8de7a986af | ||
|
7991242aa7 | ||
|
084bc7b194 |
2967 changed files with 112889 additions and 107150 deletions
3
.bundle/config
Normal file
3
.bundle/config
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
BUNDLE_PATH: "vendor/bundle"
|
||||||
|
BUNDLE_DISABLE_SHARED_GEMS: "true"
|
13
.editorconfig
Normal file
13
.editorconfig
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# editorconfig.org
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = false
|
||||||
|
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
6
.gitattributes
vendored
Normal file
6
.gitattributes
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
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
|
5
.github/ISSUE_TEMPLATE/config.yml
vendored
5
.github/ISSUE_TEMPLATE/config.yml
vendored
|
@ -1,5 +0,0 @@
|
||||||
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
.github/ISSUE_TEMPLATE/guide-issue.md
vendored
12
.github/ISSUE_TEMPLATE/guide-issue.md
vendored
|
@ -1,12 +0,0 @@
|
||||||
---
|
|
||||||
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
.github/pull_request_template.md
vendored
3
.github/pull_request_template.md
vendored
|
@ -1,3 +0,0 @@
|
||||||
**Description**
|
|
||||||
|
|
||||||
<!--What does this pull request do? Why is it needed?-->
|
|
39
.github/workflows/publish.yml
vendored
39
.github/workflows/publish.yml
vendored
|
@ -1,39 +0,0 @@
|
||||||
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
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- uses: ruby/setup-ruby@v1
|
|
||||||
with:
|
|
||||||
ruby-version: '3.2'
|
|
||||||
bundler-cache: true
|
|
||||||
|
|
||||||
- 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/github-pages-deploy-action@v4.4.1
|
|
||||||
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
.github/workflows/test.yml
vendored
24
.github/workflows/test.yml
vendored
|
@ -1,24 +0,0 @@
|
||||||
name: Test site build
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
doc-test:
|
|
||||||
if: github.ref_name != 'l10n_master'
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
persist-credentials: false
|
|
||||||
submodules: recursive
|
|
||||||
|
|
||||||
- uses: ruby/setup-ruby@v1
|
|
||||||
with:
|
|
||||||
ruby-version: '3.2'
|
|
||||||
bundler-cache: true
|
|
||||||
|
|
||||||
- name: Run Jekyll
|
|
||||||
# Build the site using Jekyll
|
|
||||||
run: JEKYLL_ENV=production bundle exec jekyll build
|
|
30
.gitignore
vendored
30
.gitignore
vendored
|
@ -1,29 +1,17 @@
|
||||||
# Vim
|
*.gem
|
||||||
*~
|
|
||||||
*.sw[p_]
|
|
||||||
|
|
||||||
# Sublime Text
|
|
||||||
*.sublime-project
|
*.sublime-project
|
||||||
*.sublime-workspace
|
*.sublime-workspace
|
||||||
|
|
||||||
# Ruby Gem
|
|
||||||
*.gem
|
|
||||||
.bundle
|
.bundle
|
||||||
Gemfile.lock
|
|
||||||
**/vendor/bundle
|
|
||||||
|
|
||||||
# Node.js and NPM
|
|
||||||
node_modules
|
|
||||||
npm-debug.log*
|
|
||||||
package-lock.json
|
|
||||||
codekit-config.json
|
|
||||||
|
|
||||||
# macOS
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
# Jekyll generated files
|
|
||||||
.jekyll-cache
|
|
||||||
.jekyll-metadata
|
.jekyll-metadata
|
||||||
|
.jekyll-cache
|
||||||
.sass-cache
|
.sass-cache
|
||||||
_asset_bundler_cache
|
_asset_bundler_cache
|
||||||
_site
|
_site
|
||||||
|
codekit-config.json
|
||||||
|
example/_site
|
||||||
|
node_modules
|
||||||
|
npm-debug.log*
|
||||||
|
/vendor
|
||||||
|
/.idea
|
||||||
|
Gemfile.lock
|
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -1,4 +0,0 @@
|
||||||
[submodule "_theme"]
|
|
||||||
path = _theme
|
|
||||||
url = https://github.com/hacks-guide/minimal-mistakes
|
|
||||||
branch = hacks-guide
|
|
2
CNAME
2
CNAME
|
@ -1 +1 @@
|
||||||
wii.hacks.guide
|
wii.guide
|
12
Gemfile
12
Gemfile
|
@ -1,4 +1,10 @@
|
||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
gem "jekyll-sass-converter", "~>2.2"
|
|
||||||
gem "wdm", "~> 0.1.0" if Gem.win_platform?
|
gem "jekyll", "~> 3.9"
|
||||||
gem 'minimal-mistakes-hacks-guide', :path => '_theme'
|
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
|
12
LICENSE.txt
12
LICENSE.txt
|
@ -1,16 +1,6 @@
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
(Jekyll theme)
|
Copyright (c) 2017 Michael Rose
|
||||||
Copyright (c) 2013-2020 Michael Rose and contributors
|
|
||||||
Copyright (c) 2016-2017 Plailect
|
|
||||||
|
|
||||||
(Nord skin)
|
|
||||||
Copyright (c) 2016-2021 Arctic Ice Studio development@arcticicestudio.com (https://www.arcticicestudio.com)
|
|
||||||
Copyright (c) 2016-2021 Sven Greb development@svengreb.de (https://www.svengreb.de)
|
|
||||||
|
|
||||||
(Guide)
|
|
||||||
Copyright (c) 2017-2023 RiiConnect24
|
|
||||||
Copyright (c) 2023 Nintendo Homebrew
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
58
README.md
58
README.md
|
@ -1,28 +1,48 @@
|
||||||
# wii.hacks.guide
|
# Wii Guide
|
||||||
|
|
||||||
The complete guide to modding your Nintendo Wii.
|
[![License](https://img.shields.io/github/license/riiconnect24/wii-guide.svg?style=flat-square)](LICENSE.txt)
|
||||||
|
![Production List](https://img.shields.io/discord/206934458954153984.svg?style=flat-square)
|
||||||
|
|
||||||
https://wii.hacks.guide/
|
Wii.guide is the complete guide to modding your Nintendo Wii console.
|
||||||
|
We're here to help people installing Homebrew Channel and many other mods to their consoles, allowing for doing pretty much anything with your console.
|
||||||
|
|
||||||
## Running the site locally
|
The site: [wii.guide](https://wii.guide)
|
||||||
|
|
||||||
This requires the following installed on your system:
|
## Would you like to contribute?
|
||||||
- ruby(-dev)
|
|
||||||
- bundler
|
|
||||||
|
|
||||||
To test the website locally, clone the source code:
|
You can translate the site by using Crowdin, a site created to translate projects.
|
||||||
|
You can join here: [Wii.guide's Crowdin Page](https://crowdin.com/project/wii-guide)
|
||||||
|
|
||||||
```sh
|
## Running Wii-Guide locally
|
||||||
git clone https://github.com/hacks-guide/Guide_Wii --recurse-submodules
|
|
||||||
cd Guide_Wii
|
|
||||||
```
|
|
||||||
|
|
||||||
Then simply run the following commands:
|
### Installing on Windows:
|
||||||
|
|
||||||
```sh
|
1. Download the latest RubyInstaller **with devkit** from <https://rubyinstaller.org/downloads/>
|
||||||
bundle config set --local path vendor/bundle
|
1. Run the installer and on the last screen make sure to have the `ridk install` step _checked_
|
||||||
bundle install
|
1. A command prompt window should appear, choose the number for `MSYS2 and MINGW development tool chain` and press enter.
|
||||||
bundle exec jekyll serve
|
1. Open a new command prompt window then continue to Running Jekyll
|
||||||
```
|
|
||||||
|
|
||||||
The website should now be running on http://127.0.0.1:4000/.
|
### Installing on Linux:
|
||||||
|
|
||||||
|
1. Install Ruby with `sudo apt install ruby ruby-dev build-essentials git -y` (Or your package manager equivalent)
|
||||||
|
1. Run `gem install jekyll bundler`
|
||||||
|
1. Continue to Running Jekyll
|
||||||
|
|
||||||
|
### Running Jekyll:
|
||||||
|
|
||||||
|
1. Please follow the installation steps for your platform if you haven't in the past
|
||||||
|
1. Navigate to a directory for git to create the Wii-Guide folder in
|
||||||
|
1. Run `git clone https://github.com/RiiConnect24/Wii-Guide` (Or the url of the fork you want to clone)
|
||||||
|
1. If you want to use another branch, now run `git checkout <branch-name>`
|
||||||
|
1. Next run `bundle install`
|
||||||
|
1. Finally, run `bundle exec jekyll serve --incremental`
|
||||||
|
1. Navigate to https://localhost:4000, your server should be running!
|
||||||
|
|
||||||
|
### Notes:
|
||||||
|
|
||||||
|
- From now on you can just run `bundle exec jekyll serve --incremental` from the Wii-Guide directory
|
||||||
|
- When (re)cloning a repository or updating the `Gemfile` file, run `bundle install` first
|
||||||
|
- If a page isn't updating correctly after making local changes, try removing the `--incremental` argument first
|
||||||
|
- You can also hard refresh the website with `Ctrl + Shift + R` usually
|
||||||
|
- If this doesn't help close your web browser entirely (All windows!) and try again
|
||||||
|
- Making a change to a file will regenerate the local webview automatically if jekyll is running
|
||||||
|
|
76
Rakefile
Normal file
76
Rakefile
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
require "bundler/gem_tasks"
|
||||||
|
require "jekyll"
|
||||||
|
require "listen"
|
||||||
|
|
||||||
|
def listen_ignore_paths(base, options)
|
||||||
|
[
|
||||||
|
/_config\.ya?ml/,
|
||||||
|
/_site/,
|
||||||
|
/\.jekyll-metadata/
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
||||||
|
def listen_handler(base, options)
|
||||||
|
site = Jekyll::Site.new(options)
|
||||||
|
Jekyll::Command.process_site(site)
|
||||||
|
proc do |modified, added, removed|
|
||||||
|
t = Time.now
|
||||||
|
c = modified + added + removed
|
||||||
|
n = c.length
|
||||||
|
relative_paths = c.map{ |p| Pathname.new(p).relative_path_from(base).to_s }
|
||||||
|
print Jekyll.logger.message("Regenerating:", "#{relative_paths.join(", ")} changed... ")
|
||||||
|
begin
|
||||||
|
Jekyll::Command.process_site(site)
|
||||||
|
puts "regenerated in #{Time.now - t} seconds."
|
||||||
|
rescue => e
|
||||||
|
puts "error:"
|
||||||
|
Jekyll.logger.warn "Error:", e.message
|
||||||
|
Jekyll.logger.warn "Error:", "Run jekyll build --trace for more information."
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
task :preview do
|
||||||
|
base = Pathname.new('.').expand_path
|
||||||
|
options = {
|
||||||
|
"source" => base.join('test').to_s,
|
||||||
|
"destination" => base.join('test/_site').to_s,
|
||||||
|
"force_polling" => false,
|
||||||
|
"serving" => true,
|
||||||
|
"theme" => "minimal-mistakes-jekyll"
|
||||||
|
}
|
||||||
|
|
||||||
|
options = Jekyll.configuration(options)
|
||||||
|
|
||||||
|
ENV["LISTEN_GEM_DEBUGGING"] = "1"
|
||||||
|
listener = Listen.to(
|
||||||
|
base.join("_data"),
|
||||||
|
base.join("_includes"),
|
||||||
|
base.join("_layouts"),
|
||||||
|
base.join("_sass"),
|
||||||
|
base.join("assets"),
|
||||||
|
options["source"],
|
||||||
|
:ignore => listen_ignore_paths(base, options),
|
||||||
|
:force_polling => options['force_polling'],
|
||||||
|
&(listen_handler(base, options))
|
||||||
|
)
|
||||||
|
|
||||||
|
begin
|
||||||
|
listener.start
|
||||||
|
Jekyll.logger.info "Auto-regeneration:", "enabled for '#{options["source"]}'"
|
||||||
|
|
||||||
|
unless options['serving']
|
||||||
|
trap("INT") do
|
||||||
|
listener.stop
|
||||||
|
puts " Halting auto-regeneration."
|
||||||
|
exit 0
|
||||||
|
end
|
||||||
|
|
||||||
|
loop { sleep 1000 }
|
||||||
|
end
|
||||||
|
rescue ThreadError
|
||||||
|
# You pressed Ctrl-C, oh my!
|
||||||
|
end
|
||||||
|
|
||||||
|
Jekyll::Commands::Serve.process(options)
|
||||||
|
end
|
604
_config.yml
604
_config.yml
|
@ -5,43 +5,116 @@
|
||||||
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
# For technical reasons, this file is *NOT* reloaded automatically when you use
|
||||||
# `jekyll serve`. If you change this file, please restart the server process.
|
# `jekyll serve`. If you change this file, please restart the server process.
|
||||||
|
|
||||||
# Theme Settings
|
minimal_mistakes_skin : "nord"
|
||||||
#
|
|
||||||
# Review documentation to determine if you should use `theme` or `remote_theme`
|
|
||||||
# https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/#installing-the-theme
|
|
||||||
|
|
||||||
theme : "minimal-mistakes-hacks-guide"
|
|
||||||
|
|
||||||
# Site Settings
|
# Site Settings
|
||||||
title : "Wii Hacks Guide"
|
locale : "en-US"
|
||||||
name : "Nintendo Homebrew"
|
title : "Wii Guide"
|
||||||
description : "The complete guide to modding your Wii (and Wii mini)"
|
title_separator : "-"
|
||||||
url : "https://wii.hacks.guide" # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
|
name : "RiiConnect24"
|
||||||
enforce_ssl : "wii.hacks.guide"
|
description : "Wii modding guide"
|
||||||
repository : "hacks-guide/Guide_Wii" # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
|
url : "https://wii.guide" # the base hostname & protocol for your site e.g. "https://mmistakes.github.io"
|
||||||
|
enforce_ssl : "wii.guide"
|
||||||
|
baseurl : # the subpath of your site, e.g. "/blog"
|
||||||
|
repository : "RiiConnect24/Wii-Guide" # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
|
||||||
|
teaser : # filename of teaser fallback teaser image placed in /images/, .e.g. "500x300.png"
|
||||||
|
breadcrumbs : # true, false (default)
|
||||||
|
words_per_minute : 200
|
||||||
|
comments:
|
||||||
|
provider : # false (default), "disqus", "discourse", "facebook", "google-plus", "staticman", "custom"
|
||||||
|
disqus:
|
||||||
|
shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname-
|
||||||
|
discourse:
|
||||||
|
server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org
|
||||||
|
facebook:
|
||||||
|
# https://developers.facebook.com/docs/plugins/comments
|
||||||
|
appid :
|
||||||
|
num_posts : # 5 (default)
|
||||||
|
colorscheme : # "light" (default), "dark"
|
||||||
|
staticman:
|
||||||
|
allowedFields : ['name', 'email', 'url', 'message']
|
||||||
|
branch : "master"
|
||||||
|
commitMessage : "New comment."
|
||||||
|
filename : comment-{@timestamp}
|
||||||
|
format : "yml"
|
||||||
|
moderation : true
|
||||||
|
path : "_data/comments/{options.slug}"
|
||||||
|
requiredFields : ['name', 'email', 'message']
|
||||||
|
transforms:
|
||||||
|
email : "md5"
|
||||||
|
generatedFields:
|
||||||
|
date:
|
||||||
|
type : "date"
|
||||||
|
options:
|
||||||
|
format : "iso8601" # "iso8601" (default), "timestamp-seconds", "timestamp-milliseconds"
|
||||||
|
atom_feed:
|
||||||
|
path : # blank (default) uses feed.xml
|
||||||
|
|
||||||
|
# SEO Related
|
||||||
|
google_site_verification : NJHNJQvHO4NNbW_2IYtDhRIfX5-4kUpwkxsmVfM7S34
|
||||||
|
bing_site_verification : 229FBDF9FE2F1A36CEDFAB9F171C6A4E
|
||||||
|
alexa_site_verification :
|
||||||
|
yandex_site_verification :
|
||||||
|
|
||||||
|
# Social Sharing
|
||||||
|
twitter:
|
||||||
|
username : "RiiConnect24"
|
||||||
|
facebook:
|
||||||
|
username : "RiiConnect24"
|
||||||
|
app_id :
|
||||||
|
publisher :
|
||||||
|
og_image : # Open Graph/Twitter default site image
|
||||||
|
# For specifying social profiles
|
||||||
|
# - https://developers.google.com/structured-data/customize/social-profiles
|
||||||
|
social:
|
||||||
|
type : # Person or Organization (defaults to Person)
|
||||||
|
name : # If the user or organization name differs from the site's name
|
||||||
|
links: # An array of links to social media profiles
|
||||||
|
|
||||||
|
# Analytics
|
||||||
|
analytics:
|
||||||
|
provider : "google-universal" # false (default), "google", "google-universal", "custom"
|
||||||
|
google:
|
||||||
|
tracking_id : "UA-72766480-5"
|
||||||
|
|
||||||
|
|
||||||
# Site Author
|
# Site Author
|
||||||
author:
|
author:
|
||||||
name : "Nintendo Homebrew"
|
name : "RiiConnect24"
|
||||||
bio : "Nintendo Homebrew Community"
|
avatar : "bio-photo.png"
|
||||||
location : "Nullsec"
|
bio : "WiiConnect24 replacement"
|
||||||
links:
|
location : "United States"
|
||||||
- label: "GitHub"
|
email : "support@riiconnect24.net"
|
||||||
icon: "fab fa-fw fa-github"
|
uri : "https://rc24.xyz"
|
||||||
url: "https://github.com/hacks-guide/Guide_Wii"
|
bitbucket :
|
||||||
|
codepen :
|
||||||
|
dribbble :
|
||||||
|
flickr :
|
||||||
|
facebook : "RiiConnect24"
|
||||||
|
foursquare :
|
||||||
|
github : "RiiConnect24"
|
||||||
|
google_plus : "RiiConnect24"
|
||||||
|
keybase :
|
||||||
|
instagram : "RiiConnect24"
|
||||||
|
lastfm :
|
||||||
|
linkedin :
|
||||||
|
pinterest :
|
||||||
|
soundcloud :
|
||||||
|
stackoverflow : # "123456/username" (the last part of your profile url, e.g. http://stackoverflow.com/users/123456/username)
|
||||||
|
steam :
|
||||||
|
tumblr :
|
||||||
|
twitter : "RiiConnect24"
|
||||||
|
vine :
|
||||||
|
weibo :
|
||||||
|
xing :
|
||||||
|
youtube : "RiiConnect24"
|
||||||
|
|
||||||
# Site Footer
|
|
||||||
footer:
|
|
||||||
links:
|
|
||||||
- label: "GitHub"
|
|
||||||
icon: "fab fa-fw fa-github"
|
|
||||||
url: "https://github.com/hacks-guide/Guide_Wii"
|
|
||||||
|
|
||||||
# Reading Files
|
# Reading Files
|
||||||
include:
|
include:
|
||||||
- .htaccess
|
- .htaccess
|
||||||
- _pages
|
- _pages
|
||||||
- _pages/en_US
|
- _pages/en_US
|
||||||
exclude: [
|
exclude: [
|
||||||
"*.sublime-project",
|
"*.sublime-project",
|
||||||
"*.sublime-workspace",
|
"*.sublime-workspace",
|
||||||
|
@ -53,56 +126,124 @@ exclude: [
|
||||||
assets/js/plugins,
|
assets/js/plugins,
|
||||||
assets/js/_main.js,
|
assets/js/_main.js,
|
||||||
assets/js/vendor,
|
assets/js/vendor,
|
||||||
banner.js,
|
|
||||||
Capfile,
|
Capfile,
|
||||||
CHANGELOG,
|
CHANGELOG,
|
||||||
clean_translations.py,
|
|
||||||
config,
|
config,
|
||||||
Gemfile,
|
Gemfile,
|
||||||
Gruntfile.js,
|
Gruntfile.js,
|
||||||
gulpfile.js,
|
gulpfile.js,
|
||||||
LICENSE,
|
LICENSE,
|
||||||
log,
|
log,
|
||||||
minimal-mistakes-jekyll.gemspec,
|
|
||||||
node_modules,
|
node_modules,
|
||||||
package.json,
|
package.json,
|
||||||
package-lock.json,
|
|
||||||
Rakefile,
|
Rakefile,
|
||||||
README,
|
README,
|
||||||
crowdin.yaml,
|
tmp,
|
||||||
staticman.yml,
|
|
||||||
_pages/af_ZA,
|
|
||||||
_pages/ar_SA,
|
|
||||||
_pages/ca_ES,
|
_pages/ca_ES,
|
||||||
_pages/cs_CZ,
|
_pages/cs_CZ,
|
||||||
_pages/da_DK,
|
_pages/da_DK,
|
||||||
_pages/de_DE,
|
# _pages/de_DE,
|
||||||
_pages/el_GR,
|
_ pages/el_GR,
|
||||||
_pages/es_419,
|
# _pages/es_ES,
|
||||||
_pages/es_ES,
|
|
||||||
_pages/fi_FI,
|
_pages/fi_FI,
|
||||||
_pages/fr_FR,
|
# _pages/fr_FR,
|
||||||
_pages/he_IL,
|
_pages/he_IL,
|
||||||
_pages/hu_HU,
|
|
||||||
# _pages/it_IT,
|
# _pages/it_IT,
|
||||||
_pages/ja_JP,
|
_pages/ja_JP,
|
||||||
_pages/ko_KR,
|
# _pages/ko_KR,
|
||||||
_pages/nl_NL,
|
_pages/nl_NL,
|
||||||
_pages/no_NO,
|
_pages/no_NO,
|
||||||
_pages/pl_PL,
|
# _pages/pl_PL,
|
||||||
_pages/pt_BR,
|
_pages/pt_BR,
|
||||||
_pages/pt_PT,
|
_pages/pt_PT,
|
||||||
_pages/ro_RO,
|
|
||||||
_pages/ru_RU,
|
_pages/ru_RU,
|
||||||
_pages/sr_Cyrl,
|
|
||||||
_pages/sv_SE,
|
_pages/sv_SE,
|
||||||
_pages/tr_TR,
|
# _pages/tr_TR,
|
||||||
_pages/uk_UA,
|
# _pages/zh_CN,
|
||||||
_pages/vi_VN,
|
|
||||||
_pages/zh_CN,
|
|
||||||
_pages/zh_TW
|
_pages/zh_TW
|
||||||
]
|
]
|
||||||
|
|
||||||
|
keep_files:
|
||||||
|
- .git
|
||||||
|
- .svn
|
||||||
|
encoding: "utf-8"
|
||||||
|
markdown_ext: "markdown,mkdown,mkdn,mkd,md,txt"
|
||||||
|
|
||||||
|
|
||||||
|
# Conversion
|
||||||
|
markdown: kramdown
|
||||||
|
highlighter: rouge
|
||||||
|
lsi: false
|
||||||
|
excerpt_separator: "\n\n"
|
||||||
|
incremental: false
|
||||||
|
|
||||||
|
|
||||||
|
# Markdown Processing
|
||||||
|
kramdown:
|
||||||
|
input: GFM
|
||||||
|
hard_wrap: false
|
||||||
|
auto_ids: true
|
||||||
|
footnote_nr: 1
|
||||||
|
entity_output: as_char
|
||||||
|
toc_levels: 1..6
|
||||||
|
smart_quotes: lsquo,rsquo,ldquo,rdquo
|
||||||
|
enable_coderay: false
|
||||||
|
|
||||||
|
|
||||||
|
# Sass/SCSS
|
||||||
|
sass:
|
||||||
|
sass_dir: _sass
|
||||||
|
style: compressed # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
|
||||||
|
|
||||||
|
# Plugins
|
||||||
|
plugins:
|
||||||
|
- jekyll-sitemap
|
||||||
|
- jekyll-gist
|
||||||
|
- jekyll-feed
|
||||||
|
|
||||||
|
# mimic GitHub Pages with --safe
|
||||||
|
whitelist:
|
||||||
|
- jekyll-sitemap
|
||||||
|
- jekyll-gist
|
||||||
|
- jekyll-feed
|
||||||
|
|
||||||
|
|
||||||
|
# Archives
|
||||||
|
# Type
|
||||||
|
# - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default)
|
||||||
|
# - Jekyll Archives plugin archive pages ~> type: jekyll-archives
|
||||||
|
# Path (examples)
|
||||||
|
# - Archive page should exist at path when using Liquid method or you can
|
||||||
|
# expect broken links (especially with breadcrumbs enabled)
|
||||||
|
# - <base_path>/tags/my-awesome-tag/index.html ~> path: /tags/
|
||||||
|
# - <base_path/categories/my-awesome-category/index.html ~> path: /categories/
|
||||||
|
# - <base_path/my-awesome-category/index.html ~> path: /
|
||||||
|
category_archive:
|
||||||
|
type: liquid
|
||||||
|
path: /categories/
|
||||||
|
tag_archive:
|
||||||
|
type: liquid
|
||||||
|
path: /tags/
|
||||||
|
# https://github.com/jekyll/jekyll-archives
|
||||||
|
# jekyll-archives:
|
||||||
|
# enabled:
|
||||||
|
# - categories
|
||||||
|
# - tags
|
||||||
|
# layouts:
|
||||||
|
# category: archive-taxonomy
|
||||||
|
# tag: archive-taxonomy
|
||||||
|
# permalinks:
|
||||||
|
# category: /categories/:name/
|
||||||
|
# tag: /tags/:name/
|
||||||
|
|
||||||
|
|
||||||
|
# HTML Compression
|
||||||
|
# - http://jch.penibelst.de/
|
||||||
|
compress_html:
|
||||||
|
clippings: all
|
||||||
|
ignore:
|
||||||
|
envs: development
|
||||||
|
|
||||||
# Defaults
|
# Defaults
|
||||||
defaults:
|
defaults:
|
||||||
# _pages
|
# _pages
|
||||||
|
@ -113,25 +254,388 @@ defaults:
|
||||||
layout: single
|
layout: single
|
||||||
author_profile: false
|
author_profile: false
|
||||||
sidebar: true
|
sidebar: true
|
||||||
|
- scope:
|
||||||
|
path: "_pages/af_ZA"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /af_ZA/:basename:output_ext
|
||||||
|
lang: af
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ar_SA"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ar_SA/:basename:output_ext
|
||||||
|
lang: ar
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ca_ES"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ca_ES/:basename:output_ext
|
||||||
|
lang: ca
|
||||||
|
- scope:
|
||||||
|
path: "_pages/cs_CZ"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /cs_CZ/:basename:output_ext
|
||||||
|
lang: cs
|
||||||
|
- scope:
|
||||||
|
path: "_pages/da_DK"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /da_DK/:basename:output_ext
|
||||||
|
lang: da
|
||||||
|
- scope:
|
||||||
|
path: "_pages/de_DE"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /de_DE/:basename:output_ext
|
||||||
|
lang: ds
|
||||||
|
- scope:
|
||||||
|
path: "_pages/el_GR"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /el_GR/:basename:output_ext
|
||||||
|
lang: el
|
||||||
|
- scope:
|
||||||
|
path: "_pages/en_PT"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /en_PT/:basename:output_ext
|
||||||
|
lang: en-PT
|
||||||
- scope:
|
- scope:
|
||||||
path: "_pages/en_US"
|
path: "_pages/en_US"
|
||||||
type: pages
|
type: pages
|
||||||
values:
|
values:
|
||||||
permalink: /:basename:output_ext
|
permalink: /:basename:output_ext
|
||||||
lang: en
|
lang: en
|
||||||
|
- scope:
|
||||||
|
path: "_pages/es_ES"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /es_ES/:basename:output_ext
|
||||||
|
lang: es
|
||||||
|
- scope:
|
||||||
|
path: "_pages/fi_FI"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /fi_FI/:basename:output_ext
|
||||||
|
lang: fi
|
||||||
|
- scope:
|
||||||
|
path: "_pages/fr_FR"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /fr_FR/:basename:output_ext
|
||||||
|
lang: fr
|
||||||
|
- scope:
|
||||||
|
path: "_pages/he_IL"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /he_IL/:basename:output_ext
|
||||||
|
lang: he
|
||||||
|
- scope:
|
||||||
|
path: "_pages/hu_HU"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /hu_HU/:basename:output_ext
|
||||||
|
lang: hu
|
||||||
|
- scope:
|
||||||
|
path: "_pages/id_ID"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /id_ID/:basename:output_ext
|
||||||
|
lang: id
|
||||||
- scope:
|
- scope:
|
||||||
path: "_pages/it_IT"
|
path: "_pages/it_IT"
|
||||||
type: pages
|
type: pages
|
||||||
values:
|
values:
|
||||||
permalink: /it_IT/:basename:output_ext
|
permalink: /it_IT/:basename:output_ext
|
||||||
lang: it
|
lang: it
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ja_JP"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ja_JP/:basename:output_ext
|
||||||
|
lang: ja
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ko_KR"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ko_KR/:basename:output_ext
|
||||||
|
lang: ko
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ms_MY"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ms_MY/:basename:output_ext
|
||||||
|
lang: ms
|
||||||
|
- scope:
|
||||||
|
path: "_pages/no_NO"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /no_NO/:basename:output_ext
|
||||||
|
lang: no-NO
|
||||||
|
- scope:
|
||||||
|
path: "_pages/nl_NL"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /nl_NL/:basename:output_ext
|
||||||
|
lang: nl
|
||||||
|
- scope:
|
||||||
|
path: "_pages/pl_PL"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /pl_PL/:basename:output_ext
|
||||||
|
lang: pl
|
||||||
|
- scope:
|
||||||
|
path: "_pages/es_MX"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /es_MX/:basename:output_ext
|
||||||
|
lang: es_MX
|
||||||
|
- scope:
|
||||||
|
path: "_pages/pt_BR"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /pt_BR/:basename:output_ext
|
||||||
|
lang: pt-BR
|
||||||
|
- scope:
|
||||||
|
path: "_pages/pt_PT"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /pt_PT/:basename:output_ext
|
||||||
|
lang: pt-PT
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ro_RO"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ro_RO/:basename:output_ext
|
||||||
|
lang: ro
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ru_RU"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ru_RU/:basename:output_ext
|
||||||
|
lang: ru
|
||||||
|
- scope:
|
||||||
|
path: "_pages/sr_SP"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /sr_SP/:basename:output_ext
|
||||||
|
lang: sr
|
||||||
|
- scope:
|
||||||
|
path: "_pages/sv_SE"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /sv_SE/:basename:output_ext
|
||||||
|
lang: sv
|
||||||
|
- scope:
|
||||||
|
path: "_pages/th_TH"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /th_TH/:basename:output_ext
|
||||||
|
lang: th
|
||||||
|
- scope:
|
||||||
|
path: "_pages/tr_TR"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /tr_TR/:basename:output_ext
|
||||||
|
lang: tr
|
||||||
|
- scope:
|
||||||
|
path: "_pages/uk_UA"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /uk_UA/:basename:output_ext
|
||||||
|
lang: uk
|
||||||
|
- scope:
|
||||||
|
path: "_pages/vi_VN"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /vi_VN/:basename:output_ext
|
||||||
|
lang: vi
|
||||||
|
- scope:
|
||||||
|
path: "_pages/zh_CN"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /zh_CN/:basename:output_ext
|
||||||
|
lang: zh-Hans
|
||||||
|
- scope:
|
||||||
|
path: "_pages/zh_TW"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /zh_TW/:basename:output_ext
|
||||||
|
lang: zh-Hant
|
||||||
|
- scope:
|
||||||
|
path: "_pages/af_ZA/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /af_ZA/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ar_SA/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ar_SA/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ca_ES/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ca_ES/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/cs_CZ/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /cs_CZ/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/da_DK/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /da_DK/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/de_DE/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /de_DE/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/el_GR/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /el_GR/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/en_PT/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /en_PT/index:output_ext
|
||||||
- scope:
|
- scope:
|
||||||
path: "_pages/en_US/home.md"
|
path: "_pages/en_US/home.md"
|
||||||
type: pages
|
type: pages
|
||||||
values:
|
values:
|
||||||
permalink: /index:output_ext
|
permalink: /index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/es_ES/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /es_ES/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/fi_FI/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /fi_FI/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/fr_FR/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /fr_FR/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/he_IL/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /he_IL/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/hu_HU/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /hu_HU/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/id_ID/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /id_ID/index:output_ext
|
||||||
- scope:
|
- scope:
|
||||||
path: "_pages/it_IT/home.md"
|
path: "_pages/it_IT/home.md"
|
||||||
type: pages
|
type: pages
|
||||||
values:
|
values:
|
||||||
permalink: /it_IT/index:output_ext
|
permalink: /it_IT/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ja_JP/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ja_JP/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ko_KR/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ko_KR/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ms_MY/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ms_MY/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/no_NO/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /no_NO/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/nl_NL/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /nl_NL/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/pl_PL/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /pl_PL/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/es_MX/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /es_MX/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/pt_BR/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /pt_BR/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/pt_PT/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /pt_PT/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ro_RO/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ro_RO/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/ru_RU/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /ru_RU/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/sr_SP/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /sr_SP/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/sv_SE/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /sv_SE/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/th_TH/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /th_TH/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/tr_TR/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /tr_TR/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/uk_UA/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /uk_UA/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/vi_VN/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /vi_VN/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/zh_CN/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /zh_CN/index:output_ext
|
||||||
|
- scope:
|
||||||
|
path: "_pages/zh_TW/home.md"
|
||||||
|
type: pages
|
||||||
|
values:
|
||||||
|
permalink: /zh_TW/index:output_ext
|
||||||
|
|
12
_data/navigation.yml
Executable file
12
_data/navigation.yml
Executable file
|
@ -0,0 +1,12 @@
|
||||||
|
# main links
|
||||||
|
main:
|
||||||
|
- title: "Quick-Start Guide"
|
||||||
|
url: https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/
|
||||||
|
# - title: "About"
|
||||||
|
# url: https://mmistakes.github.io/minimal-mistakes/about/
|
||||||
|
# - title: "Sample Posts"
|
||||||
|
# url: /year-archive/
|
||||||
|
# - title: "Sample Collections"
|
||||||
|
# url: /collection-archive/
|
||||||
|
# - title: "Sitemap"
|
||||||
|
# url: /sitemap/
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -12,24 +12,27 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ (Häufig gestellte Fragen)
|
title: FAQ (Häufig gestellte Fragen)
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: Diese Website verwendet Cookies, um den aktuellen Anleitungsfortschritt auf der Seitenleiste anzuzeigen und die Website anderweitig zu verbessern.
|
title: Diese Website verwendet Cookies, um den aktuellen Anleitungsfortschritt auf der Seitenleiste anzuzeigen und die Website anderweitig zu verbessern.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: 'Für Unterstützung in englischer Sprache, frag unter folgendem Link nach Hilfe: <a href="https://discord.gg/b4Y7jfD">RiiConnect24 bei Discord</a>.'
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Quellcode
|
title: Quellcode
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Seitennavigation
|
title: Seitennavigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: Spenden
|
title: Spenden
|
||||||
url: privacy-policy
|
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: donations
|
url: donations
|
||||||
sidebar_title:
|
sidebar_title:
|
||||||
-
|
-
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ (Häufig gestellte Fragen)
|
title: FAQ (Häufig gestellte Fragen)
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Spenden
|
title: Spenden
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
68
_data/navigation/en_US.yml
Normal file → Executable file
68
_data/navigation/en_US.yml
Normal file → Executable file
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
top:
|
|
||||||
-
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
|
top:
|
||||||
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,47 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -12,6 +12,12 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
|
@ -21,13 +27,10 @@ bottom:
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
58
_data/navigation/es_EM.yml
Normal file
58
_data/navigation/es_EM.yml
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
---
|
||||||
|
main:
|
||||||
|
-
|
||||||
|
title: Wii Guide
|
||||||
|
url: /
|
||||||
|
-
|
||||||
|
title: Start Here
|
||||||
|
url: get-started
|
||||||
|
-
|
||||||
|
title: Site Navigation
|
||||||
|
url: site-navigation
|
||||||
|
-
|
||||||
|
title: FAQ
|
||||||
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
|
top:
|
||||||
|
-
|
||||||
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
|
bottom:
|
||||||
|
-
|
||||||
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
|
footer:
|
||||||
|
-
|
||||||
|
title: Source
|
||||||
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
|
-
|
||||||
|
title: Site Navigation
|
||||||
|
url: site-navigation
|
||||||
|
-
|
||||||
|
title: Donations
|
||||||
|
url: donations
|
||||||
|
sidebar_title:
|
||||||
|
-
|
||||||
|
title: Overall Progress
|
||||||
|
sidebar_pages:
|
||||||
|
-
|
||||||
|
title: Wii Guide
|
||||||
|
url: /
|
||||||
|
-
|
||||||
|
title: FAQ
|
||||||
|
url: faq
|
||||||
|
-
|
||||||
|
title: Donations
|
||||||
|
url: donations
|
||||||
|
-
|
||||||
|
title: Credits
|
||||||
|
url: credits
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: Preguntas frecuentes
|
title: Preguntas frecuentes
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: Este sitio web utiliza cookies para mejorar tu experiencia de navegación.
|
title: Este sitio web utiliza cookies para mejorar tu experiencia de navegación.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: Si necesitas ayuda, puedes solicitarla (en inglés) a través del <a href="https://discord.gg/MWxPgEp">servidor de Discord de Nintendo Homebrew</a>.
|
title: Si tienes problemas para seguir los pasos de esta guía, por favor solicita ayuda en nuestro <a href="https://discord.gg/rc24">servidor de Discord</a> (recomendado), o envíanos un <a href="mailto:support@riiconnect24.net">correo electrónico</a>. Soporte disponible solo en inglés.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Código fuente
|
title: Código fuente
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Mapa del sitio
|
title: Mapa del sitio
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Donaciones
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donaciones
|
title: Donaciones
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Preguntas frecuentes
|
title: Preguntas frecuentes
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donaciones
|
title: Donaciones
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Créditos
|
title: Créditos
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Varias opciones
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Instalación del Canal Homebrew y BootMii
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Canal Homebrew - solo para Wii mini
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: Copia de seguridad de BootMii
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS para Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Extractor de NAND para Wii mini
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
58
_data/navigation/es_MX.yml
Executable file
58
_data/navigation/es_MX.yml
Executable file
|
@ -0,0 +1,58 @@
|
||||||
|
---
|
||||||
|
main:
|
||||||
|
-
|
||||||
|
title: Wii Guide
|
||||||
|
url: /
|
||||||
|
-
|
||||||
|
title: Start Here
|
||||||
|
url: get-started
|
||||||
|
-
|
||||||
|
title: Site Navigation
|
||||||
|
url: site-navigation
|
||||||
|
-
|
||||||
|
title: FAQ
|
||||||
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
|
top:
|
||||||
|
-
|
||||||
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
|
bottom:
|
||||||
|
-
|
||||||
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
|
footer:
|
||||||
|
-
|
||||||
|
title: Source
|
||||||
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
|
-
|
||||||
|
title: Site Navigation
|
||||||
|
url: site-navigation
|
||||||
|
-
|
||||||
|
title: Donations
|
||||||
|
url: donations
|
||||||
|
sidebar_title:
|
||||||
|
-
|
||||||
|
title: Overall Progress
|
||||||
|
sidebar_pages:
|
||||||
|
-
|
||||||
|
title: Wii Guide
|
||||||
|
url: /
|
||||||
|
-
|
||||||
|
title: FAQ
|
||||||
|
url: faq
|
||||||
|
-
|
||||||
|
title: Donations
|
||||||
|
url: donations
|
||||||
|
-
|
||||||
|
title: Credits
|
||||||
|
url: credits
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -7,76 +7,52 @@ main:
|
||||||
title: Start Here
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Navigation du site
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: Ce site web utilise des cookies pour afficher la progression sur la barre latérale et sinon améliorer le site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: Pour du soutien en Anglais, demander de l'aide sur <a href="https://discord.gg/MWxPgEp">le serveur Discord de Nintendo Homebrew</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Index du site
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: privacy-policy
|
|
||||||
-
|
|
||||||
title: Faire un don
|
|
||||||
url: donations
|
url: donations
|
||||||
sidebar_title:
|
sidebar_title:
|
||||||
-
|
-
|
||||||
title: Progression globale
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Wii Guide
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Options multiples
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Installation de la chaine Homebrew et BootMii
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Chaine Homebrew - pour Wii mini seulement
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: Sauvegarde avec Bootmii
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Chaine Open Shop
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS pour Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Dump NAND Wii mini
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
84
_data/navigation/it_IT.yml
Normal file → Executable file
84
_data/navigation/it_IT.yml
Normal file → Executable file
|
@ -1,82 +1,58 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Menu Principale
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Per Iniziare
|
title: Start Here
|
||||||
url: per-iniziare
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Navigazione del Sito
|
title: Site Navigation
|
||||||
url: navigazione-sito
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: Questo sito web utilizza i cookie per visualizzare l'avanzamento corrente della guida sulla barra laterale e per migliorare il sito.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: Per supporto in Inglese, chiedere aiuto sul server <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew su Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Fonte
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Navigazione del Sito
|
title: Site Navigation
|
||||||
url: navigazione-sito
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: Informativa sulla Privacy
|
title: Donations
|
||||||
url: privacy-policy
|
|
||||||
-
|
|
||||||
title: Donazioni
|
|
||||||
url: donations
|
url: donations
|
||||||
sidebar_title:
|
sidebar_title:
|
||||||
-
|
-
|
||||||
title: Progresso Complessivo
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Menu Principale
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Per Iniziare
|
title: FAQ
|
||||||
url: per-iniziare
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Opzioni Multiple
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Installazione dell'Homebrew Channel e di BootMii
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - solo per Wii mini
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: Backup BootMii
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS per Wii mini (sperimentale)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -4,79 +4,55 @@ main:
|
||||||
title: Wii Guide
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: はじめに
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: サイトマップ
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: よくある質問
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: このサイトではサイトバーに現在のガイド状況を表示するためにCookieを使用しています。
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: サポートが必要な場合は、<a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord<</a>に英語でお問い合わせください。
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: ソース
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: サイトガイダンス
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: privacy-policy
|
|
||||||
-
|
|
||||||
title: 寄付
|
|
||||||
url: donations
|
url: donations
|
||||||
sidebar_title:
|
sidebar_title:
|
||||||
-
|
-
|
||||||
title: 進捗
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Wii Guide
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: さまざまな手段
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew ChannelとBootMiiのインストール
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channelのインストール(Wii mini)
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: NANDのバックアップ(BootMii)
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii Mini(ベータ版)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii MiniのNANDダンパー
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: 홈페이지
|
title: Wii 가이드
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: 시작하기
|
title: 여기서 시작하기
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: 사이트 탐색
|
title: 사이트 탐색
|
||||||
|
@ -12,24 +12,27 @@ main:
|
||||||
-
|
-
|
||||||
title: 자주 묻는 질문
|
title: 자주 묻는 질문
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: 이 사이트는 현재 진행상황을 표시하고 사용자 경험을 향상시키기 위해 쿠키를 사용합니다.
|
title: 이 웹사이트는 쿠키를 사용하여 사이드바에 현재 가이드 진행 상황을 표시하고 기타 사이트를 개선합니다.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: 영어로 지원을 요청하고 싶으시면 <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew Discord 서버</a>에 도움을 요청해 주세요.
|
title: 영어 지원이 필요하면, <a href="https://discord.gg/b4Y7jfD">디스코드의 RiiConnect24</a>에서 도움을 요청하세요.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: 소스 코드
|
title: 출처
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: 사이트 탐색
|
title: 사이트 탐색
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: 개인정보 보호 정책
|
title: 기부
|
||||||
url: privacy-policy
|
|
||||||
-
|
|
||||||
title: 기부하기
|
|
||||||
url: donations
|
url: donations
|
||||||
sidebar_title:
|
sidebar_title:
|
||||||
-
|
-
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: 자주 묻는 질문
|
title: 자주 묻는 질문
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: 기부
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: 크레딧
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: 다중 옵션
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: 홈브류 채널과 BootMii 설치
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: 홈브류 채널 - Wii 미니 전용
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii 백업
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: Wii 미니를 위한 d2xl cIOS (실험 단계)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND 덤프
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
50
_data/navigation/pl_PL.yml
Normal file → Executable file
50
_data/navigation/pl_PL.yml
Normal file → Executable file
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
50
_data/navigation/pt_BR.yml
Normal file → Executable file
50
_data/navigation/pt_BR.yml
Normal file → Executable file
|
@ -12,24 +12,27 @@ main:
|
||||||
-
|
-
|
||||||
title: Perguntas frequentes
|
title: Perguntas frequentes
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: Este site utiliza cookies para mostrar o progresso do guia na barra ao lado.
|
title: Este site utiliza cookies para mostrar o progresso do guia na barra ao lado.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: Para suporte em Inglês, peça ajuda em <a href="https://discord.gg/b4Y7jfD">RiiConnect24 no Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Fonte
|
title: Fonte
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Navegação do Site
|
title: Navegação do Site
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: Doações
|
title: Doações
|
||||||
url: privacy-policy
|
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: donations
|
url: donations
|
||||||
sidebar_title:
|
sidebar_title:
|
||||||
-
|
-
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Perguntas frequentes
|
title: Perguntas frequentes
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Doações
|
title: Doações
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Créditos
|
title: Créditos
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -7,76 +7,52 @@ main:
|
||||||
title: Start Here
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Navigare Site
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: FAQ - Întrebări Frecvente
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: Acest website folosește cookie-uri pentru afișarea curentă a progresului pe bara laterală și pentru îmbunătățirea altfel a site-ului.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: Pentru suport în Engleză, cereți ajutor pe <a href="https://discord.gg/MWxPgEp">serverul de Discord Nintendo Homebrew</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Sursă
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Navigare Site
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: privacy-policy
|
|
||||||
-
|
|
||||||
title: Donații
|
|
||||||
url: donations
|
url: donations
|
||||||
sidebar_title:
|
sidebar_title:
|
||||||
-
|
-
|
||||||
title: Progres General
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Wii Guide
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Opțiuni Multiple
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel și Instalare BootMii
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - numai pentru Wii mini
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: cIOS d2xl pentru Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,85 +0,0 @@
|
||||||
---
|
|
||||||
main:
|
|
||||||
-
|
|
||||||
title: Home
|
|
||||||
url: /
|
|
||||||
-
|
|
||||||
title: Get Started
|
|
||||||
url: get-started
|
|
||||||
-
|
|
||||||
title: Site Navigation
|
|
||||||
url: site-navigation
|
|
||||||
-
|
|
||||||
title: FAQ
|
|
||||||
url: faq
|
|
||||||
top:
|
|
||||||
-
|
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
|
||||||
bottom:
|
|
||||||
-
|
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
|
||||||
footer:
|
|
||||||
-
|
|
||||||
title: Source
|
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
|
||||||
-
|
|
||||||
title: Site Navigation
|
|
||||||
url: site-navigation
|
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: donations
|
|
||||||
sidebar_title:
|
|
||||||
-
|
|
||||||
title: Overall Progress
|
|
||||||
sidebar_pages:
|
|
||||||
-
|
|
||||||
title: Home
|
|
||||||
url: /
|
|
||||||
-
|
|
||||||
title: Get Started
|
|
||||||
url: get-started
|
|
||||||
-
|
|
||||||
title: LetterBomb
|
|
||||||
url: letterbomb
|
|
||||||
-
|
|
||||||
title: BlueBomb
|
|
||||||
url: bluebomb
|
|
||||||
-
|
|
||||||
title: FlashHax
|
|
||||||
url: flashhax
|
|
||||||
-
|
|
||||||
title: str2hax
|
|
||||||
url: str2hax
|
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
58
_data/navigation/sr_SP.yml
Normal file
58
_data/navigation/sr_SP.yml
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
---
|
||||||
|
main:
|
||||||
|
-
|
||||||
|
title: Wii Guide
|
||||||
|
url: /
|
||||||
|
-
|
||||||
|
title: Start Here
|
||||||
|
url: get-started
|
||||||
|
-
|
||||||
|
title: Site Navigation
|
||||||
|
url: site-navigation
|
||||||
|
-
|
||||||
|
title: FAQ
|
||||||
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
|
top:
|
||||||
|
-
|
||||||
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
|
bottom:
|
||||||
|
-
|
||||||
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
|
footer:
|
||||||
|
-
|
||||||
|
title: Source
|
||||||
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
|
-
|
||||||
|
title: Site Navigation
|
||||||
|
url: site-navigation
|
||||||
|
-
|
||||||
|
title: Donations
|
||||||
|
url: donations
|
||||||
|
sidebar_title:
|
||||||
|
-
|
||||||
|
title: Overall Progress
|
||||||
|
sidebar_pages:
|
||||||
|
-
|
||||||
|
title: Wii Guide
|
||||||
|
url: /
|
||||||
|
-
|
||||||
|
title: FAQ
|
||||||
|
url: faq
|
||||||
|
-
|
||||||
|
title: Donations
|
||||||
|
url: donations
|
||||||
|
-
|
||||||
|
title: Credits
|
||||||
|
url: credits
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: Credits
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
main:
|
main:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: Start Here
|
||||||
url: get-started
|
url: get-started
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
|
@ -12,22 +12,25 @@ main:
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
title: This website uses cookies to display the current guide progress on the sidebar and otherwise enhance the site.
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: For support in English, ask for help at <a href="https://discord.gg/b4Y7jfD">RiiConnect24 on Discord</a>.
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: Source
|
title: Source
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: Site Navigation
|
title: Site Navigation
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: Privacy Policy
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: Donations
|
title: Donations
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -36,50 +39,20 @@ sidebar_title:
|
||||||
title: Overall Progress
|
title: Overall Progress
|
||||||
sidebar_pages:
|
sidebar_pages:
|
||||||
-
|
-
|
||||||
title: Home
|
title: Wii Guide
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: Get Started
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: LetterBomb
|
title: Donations
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: BlueBomb
|
title: Credits
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: FlashHax
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: str2hax
|
title: Wiimmfi
|
||||||
url: str2hax
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -10,24 +10,27 @@ main:
|
||||||
title: 网站导航
|
title: 网站导航
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: 常见问题指南
|
title: FAQ
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: 本网站使用 cookie 来在侧边栏显示当前指南进度,并提升网站的其它功能。
|
title: 本网站使用 cookie 来在侧边栏显示当前指南进度,并提升网站的其它功能。
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: 若要寻求支持,请在</a> <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew Discord 频道上使用英语寻求帮助。
|
title: 如果需要中文帮助,国内用户可以添加 QQ 群:417992332。如果需要英文帮助,请在 <a href="https://discord.gg/b4Y7jfD">RiiConnect24 Discord</a> 上寻求帮助。
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: 来源
|
title: 来源
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: 网站导航
|
title: 网站导航
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
|
||||||
title: 捐赠
|
|
||||||
url: privacy-policy
|
|
||||||
-
|
-
|
||||||
title: 捐赠
|
title: 捐赠
|
||||||
url: donations
|
url: donations
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: FAQ
|
title: FAQ
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: 捐赠
|
title: 捐赠
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: 制作人员
|
title: 制作人员
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: 多选项
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: 安装Homebrew Channel和BootMii
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - 仅适用于Wii mini
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii 备份
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: 供Wii mini安装的d2xl cIOS (实验性功能)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
|
@ -12,24 +12,27 @@ main:
|
||||||
-
|
-
|
||||||
title: 常見問題
|
title: 常見問題
|
||||||
url: faq
|
url: faq
|
||||||
|
-
|
||||||
|
title: RiiConnect24
|
||||||
|
url: riiconnect24
|
||||||
|
-
|
||||||
|
title: Wiimmfi
|
||||||
|
url: wiimmfi
|
||||||
top:
|
top:
|
||||||
-
|
-
|
||||||
title: 此網站透過 Cookies 來顯示您手冊的操作進度以及提升此網站的使用經驗。
|
title: 此網站透過 Cookies 來顯示您手冊的操作進度以及提升此網站的使用經驗。
|
||||||
bottom:
|
bottom:
|
||||||
-
|
-
|
||||||
title: For support in English, ask for help at <a href="https://discord.gg/MWxPgEp">Nintendo Homebrew on Discord</a>.
|
title: 若需英語支援,請於<a href="https://discord.gg/b4Y7jfD">Discord 上的 RiiConnect24 伺服器</a>發問。
|
||||||
footer:
|
footer:
|
||||||
-
|
-
|
||||||
title: 原始碼
|
title: 原始碼
|
||||||
url: https://github.com/hacks-guide/Guide_Wii
|
url: https://github.com/RiiConnect24/Wii-Guide/
|
||||||
-
|
-
|
||||||
title: 網站導覽
|
title: 網站導覽
|
||||||
url: site-navigation
|
url: site-navigation
|
||||||
-
|
-
|
||||||
title: 贊助
|
title: 贊助
|
||||||
url: privacy-policy
|
|
||||||
-
|
|
||||||
title: Donations
|
|
||||||
url: donations
|
url: donations
|
||||||
sidebar_title:
|
sidebar_title:
|
||||||
-
|
-
|
||||||
|
@ -40,43 +43,16 @@ sidebar_pages:
|
||||||
url: /
|
url: /
|
||||||
-
|
-
|
||||||
title: 常見問題
|
title: 常見問題
|
||||||
url: get-started
|
url: faq
|
||||||
-
|
-
|
||||||
title: 贊助
|
title: 贊助
|
||||||
url: letterbomb
|
url: donations
|
||||||
-
|
-
|
||||||
title: 製作群
|
title: 製作群
|
||||||
url: bluebomb
|
url: credits
|
||||||
-
|
-
|
||||||
title: RiiConnect24
|
title: RiiConnect24
|
||||||
url: flashhax
|
url: riiconnect24
|
||||||
-
|
-
|
||||||
title: Wiimmfi
|
title: Wiimmfi
|
||||||
url: Wiimmfi
|
url: wiimmfi
|
||||||
-
|
|
||||||
title: Wilbrand
|
|
||||||
url: wilbrand
|
|
||||||
-
|
|
||||||
title: Multiple Options
|
|
||||||
url: multiple-options
|
|
||||||
-
|
|
||||||
title: Homebrew Channel and BootMii Installation
|
|
||||||
url: hbc
|
|
||||||
-
|
|
||||||
title: Homebrew Channel - for Wii mini only
|
|
||||||
url: hbc-mini
|
|
||||||
-
|
|
||||||
title: BootMii Backup
|
|
||||||
url: bootmii
|
|
||||||
-
|
|
||||||
title: Priiloader
|
|
||||||
url: priiloader
|
|
||||||
-
|
|
||||||
title: Open Shop Channel
|
|
||||||
url: osc
|
|
||||||
-
|
|
||||||
title: d2xl cIOS for Wii mini (experimental)
|
|
||||||
url: cios-mini
|
|
||||||
-
|
|
||||||
title: Wii mini NAND Dumper
|
|
||||||
url: wnd-mini
|
|
||||||
|
|
502
_data/ui-text.yml
Executable file
502
_data/ui-text.yml
Executable file
|
@ -0,0 +1,502 @@
|
||||||
|
# User interface text and labels
|
||||||
|
|
||||||
|
# English (default)
|
||||||
|
# -----------------
|
||||||
|
en: &DEFAULT_EN
|
||||||
|
page : "Page"
|
||||||
|
pagination_previous : "Previous"
|
||||||
|
pagination_next : "Next"
|
||||||
|
breadcrumb_home_label : "Home"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label : "Toggle Menu"
|
||||||
|
toc_label : "On This Page"
|
||||||
|
ext_link_label : "Direct Link"
|
||||||
|
less_than : "less than"
|
||||||
|
minute_read : "minute read"
|
||||||
|
share_on_label : "Share on"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Tags:"
|
||||||
|
categories_label : "Categories:"
|
||||||
|
date_label : "Updated:"
|
||||||
|
comments_label : "Leave a Comment"
|
||||||
|
comments_title : "Comments"
|
||||||
|
more_label : "Learn More"
|
||||||
|
related_label : "You May Also Enjoy"
|
||||||
|
follow_label : "Follow:"
|
||||||
|
feed_label : "Feed"
|
||||||
|
powered_by : "Powered by"
|
||||||
|
website_label : "Website"
|
||||||
|
email_label : "Email"
|
||||||
|
recent_posts : "Recent Posts"
|
||||||
|
undefined_wpm : "Undefined parameter words_per_minute at _config.yml"
|
||||||
|
comment_form_info : "Your email address will not be published. Required fields are marked"
|
||||||
|
comment_form_comment_label : "Comment"
|
||||||
|
comment_form_md_info : "Markdown is supported."
|
||||||
|
comment_form_name_label : "Name"
|
||||||
|
comment_form_email_label : "Email address"
|
||||||
|
comment_form_website_label : "Website (optional)"
|
||||||
|
comment_btn_submit : "Submit Comment"
|
||||||
|
comment_btn_submitted : "Submitted"
|
||||||
|
comment_success_msg : "Thanks for your comment! It will show on the site once it has been approved."
|
||||||
|
comment_error_msg : "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again."
|
||||||
|
loading_label : "Loading..."
|
||||||
|
en-US:
|
||||||
|
<<: *DEFAULT_EN
|
||||||
|
en-CA:
|
||||||
|
<<: *DEFAULT_EN
|
||||||
|
en-GB:
|
||||||
|
<<: *DEFAULT_EN
|
||||||
|
en-AU:
|
||||||
|
<<: *DEFAULT_EN
|
||||||
|
|
||||||
|
# Spanish
|
||||||
|
# --------------
|
||||||
|
es: &DEFAULT_ES
|
||||||
|
page : "Página"
|
||||||
|
pagination_previous : "Anterior"
|
||||||
|
pagination_next : "Siguiente"
|
||||||
|
breadcrumb_home_label : "Inicio"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label :
|
||||||
|
toc_label : "Contenidos"
|
||||||
|
ext_link_label : "Enlace"
|
||||||
|
less_than : "menos de"
|
||||||
|
minute_read : "minuto de lectura"
|
||||||
|
share_on_label : "Compartir"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Etiquetas:"
|
||||||
|
categories_label : "Categorías:"
|
||||||
|
date_label : "Actualizado:"
|
||||||
|
comments_label : "Comentar"
|
||||||
|
comments_title :
|
||||||
|
more_label : "Ver más"
|
||||||
|
related_label : "Podrías ver también"
|
||||||
|
follow_label : "Seguir:"
|
||||||
|
feed_label : "Feed"
|
||||||
|
powered_by : "Powered by"
|
||||||
|
website_label : "Sitio web"
|
||||||
|
email_label : "Email"
|
||||||
|
recent_posts : "Entradas recientes"
|
||||||
|
undefined_wpm : "Parametro words_per_minute (Palabras por minuto) no definido en _config.yml"
|
||||||
|
comment_form_info :
|
||||||
|
comment_form_comment_label :
|
||||||
|
comment_form_md_info :
|
||||||
|
comment_form_name_label :
|
||||||
|
comment_form_email_label :
|
||||||
|
comment_form_website_label :
|
||||||
|
comment_btn_submit :
|
||||||
|
comment_btn_submitted :
|
||||||
|
comment_success_msg :
|
||||||
|
comment_error_msg :
|
||||||
|
loading_label :
|
||||||
|
es-ES:
|
||||||
|
<<: *DEFAULT_ES
|
||||||
|
es-MX:
|
||||||
|
<<: *DEFAULT_ES
|
||||||
|
es-CO:
|
||||||
|
<<: *DEFAULT_ES
|
||||||
|
|
||||||
|
# French
|
||||||
|
# -----------------
|
||||||
|
fr: &DEFAULT_FR
|
||||||
|
page : "Page"
|
||||||
|
pagination_previous : "Précédent"
|
||||||
|
pagination_next : "Suivant"
|
||||||
|
breadcrumb_home_label : "Accueil"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label :
|
||||||
|
toc_label : "Sur cette page"
|
||||||
|
ext_link_label : "Lien direct"
|
||||||
|
less_than : "plus petit que"
|
||||||
|
minute_read : "minute de lecture"
|
||||||
|
share_on_label : "Partager sur"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Tags :"
|
||||||
|
categories_label : "Catégories :"
|
||||||
|
date_label : "Mis à jour :"
|
||||||
|
comments_label : "Laisser un commentaire"
|
||||||
|
comments_title :
|
||||||
|
more_label : "Lire plus"
|
||||||
|
related_label : "Vous pourriez aimer"
|
||||||
|
follow_label : "Suivez moi"
|
||||||
|
feed_label : "Flux"
|
||||||
|
powered_by : "Propulsé par"
|
||||||
|
website_label : "Site"
|
||||||
|
email_label : "Email"
|
||||||
|
recent_posts : "Posts récents"
|
||||||
|
undefined_wpm : "Le paramètre words_per_minute n'est pas défini dans _config.yml"
|
||||||
|
comments_title : "Commentaires"
|
||||||
|
comment_form_info : "Votre adresse email ne sera pas visible. Les champs obligatoires sont marqués"
|
||||||
|
comment_form_comment_label : "Commentaire"
|
||||||
|
comment_form_md_info : "Markdown est supporté."
|
||||||
|
comment_form_name_label : "Nom"
|
||||||
|
comment_form_email_label : "Adresse mail"
|
||||||
|
comment_form_website_label : "Site web (optionnel)"
|
||||||
|
comment_btn_submit : "Envoyer"
|
||||||
|
comment_btn_submitted : "Envoyé"
|
||||||
|
comment_success_msg : "Merci pour votre comentaire, il sera visible sur le site une fois approuvé."
|
||||||
|
comment_error_msg : "Désolé, une erreur est survenue lors de la soumission. Vérifiez que les champs obligatoires ont été remplis et réessayez."
|
||||||
|
loading_label : "Chargement..."
|
||||||
|
fr-FR:
|
||||||
|
<<: *DEFAULT_FR
|
||||||
|
fr-BE:
|
||||||
|
<<: *DEFAULT_FR
|
||||||
|
fr-CH:
|
||||||
|
<<: *DEFAULT_FR
|
||||||
|
|
||||||
|
# Turkish
|
||||||
|
# -----------------
|
||||||
|
tr: &DEFAULT_TR
|
||||||
|
page : "Sayfa"
|
||||||
|
pagination_previous : "Önceki"
|
||||||
|
pagination_next : "Sonraki"
|
||||||
|
breadcrumb_home_label : "Ana Sayfa"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label :
|
||||||
|
toc_label : "İçindekiler"
|
||||||
|
ext_link_label : "Doğrudan Bağlantı"
|
||||||
|
less_than : "Şu süreden az: "
|
||||||
|
minute_read : "dakika tahmini okuma süresi"
|
||||||
|
share_on_label : "Paylaş"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Etiketler:"
|
||||||
|
categories_label : "Kategoriler:"
|
||||||
|
date_label : "Güncelleme tarihi:"
|
||||||
|
comments_label : "Yorum yapın"
|
||||||
|
comments_title : "Yorumlar"
|
||||||
|
more_label : "Daha fazlasını öğrenin"
|
||||||
|
related_label : "Bunlar ilginizi çekebilir:"
|
||||||
|
follow_label : "Takip et:"
|
||||||
|
feed_label : "RSS"
|
||||||
|
powered_by : "Emeği geçenler: "
|
||||||
|
website_label : "Web sayfası"
|
||||||
|
email_label : "E-posta"
|
||||||
|
recent_posts : "Son yazılar"
|
||||||
|
undefined_wpm : "_config.yml dosyasında tanımlanmamış words_per_minute parametresi"
|
||||||
|
comment_form_info : "Email adresiniz gösterilmeyecektir. Zorunlu alanlar işaretlenmiştir"
|
||||||
|
comment_form_comment_label : "Yorumunuz"
|
||||||
|
comment_form_md_info : "Markdown desteklenmektedir."
|
||||||
|
comment_form_name_label : "Adınız"
|
||||||
|
comment_form_email_label : "Email adresiniz"
|
||||||
|
comment_form_website_label : "Websiteniz (opsiyonel)"
|
||||||
|
comment_btn_submit : "Yorum Yap"
|
||||||
|
comment_btn_submitted : "Gönderildi"
|
||||||
|
comment_success_msg : "Yorumunuz için teşekkürler! Yorumunuz onaylandıktan sonra sitede gösterilecektir."
|
||||||
|
comment_error_msg : "Maalesef bir hata oluştu. Lütfen zorunlu olan tüm alanları doldurduğunuzdan emin olun ve sonrasında tekrar deneyin."
|
||||||
|
loading_label : "Yükleniyor..."
|
||||||
|
tr-TR:
|
||||||
|
<<: *DEFAULT_TR
|
||||||
|
|
||||||
|
# Portuguese
|
||||||
|
# -----------------
|
||||||
|
pt: &DEFAULT_PT
|
||||||
|
page : "Página"
|
||||||
|
pagination_previous : "Anterior"
|
||||||
|
pagination_next : "Seguinte"
|
||||||
|
breadcrumb_home_label : "Início"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label :
|
||||||
|
toc_label : "Nesta Página"
|
||||||
|
ext_link_label : "Link Direto"
|
||||||
|
less_than : "menos de"
|
||||||
|
minute_read : "minutos de leitura"
|
||||||
|
share_on_label : "Partilhar no"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Etiquetas:"
|
||||||
|
categories_label : "Categorias:"
|
||||||
|
date_label : "Atualizado:"
|
||||||
|
comments_label : "Deixe um Comentário"
|
||||||
|
comments_title : "Comentários"
|
||||||
|
more_label : "Saber mais"
|
||||||
|
related_label : "Também pode gostar de"
|
||||||
|
follow_label : "Siga:"
|
||||||
|
feed_label : "Feed"
|
||||||
|
powered_by : "Feito com"
|
||||||
|
website_label : "Site"
|
||||||
|
email_label : "Email"
|
||||||
|
recent_posts : "Artigos Recentes"
|
||||||
|
undefined_wpm : "Parâmetro words_per_minute não definido em _config.yml"
|
||||||
|
comment_form_info : "O seu endereço email não será publicado. Os campos obrigatórios estão assinalados"
|
||||||
|
comment_form_comment_label : "Comentário"
|
||||||
|
comment_form_md_info : "Markdown é suportado."
|
||||||
|
comment_form_name_label : "Nome"
|
||||||
|
comment_form_email_label : "Endereço Email"
|
||||||
|
comment_form_website_label : "Site (opcional)"
|
||||||
|
comment_btn_submit : "Sumbeter Comentário"
|
||||||
|
comment_btn_submitted : "Submetido"
|
||||||
|
comment_success_msg : "Obrigado pelo seu comentário! Será visível no site logo que aprovado."
|
||||||
|
comment_error_msg : "Lamento, ocorreu um erro na sua submissão. Por favor verifique se todos os campos obrigatórios estão corretamente preenchidos e tente novamente."
|
||||||
|
loading_label : "A carregar..."
|
||||||
|
# Brazilian Portuguese
|
||||||
|
pt-BR:
|
||||||
|
page : "Página"
|
||||||
|
pagination_previous : "Anterior"
|
||||||
|
pagination_next : "Próxima"
|
||||||
|
breadcrumb_home_label : "Home"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label :
|
||||||
|
toc_label : "Nesta página"
|
||||||
|
ext_link_label : "Link direto"
|
||||||
|
less_than : "meno que"
|
||||||
|
minute_read : "minutos de leitura"
|
||||||
|
share_on_label : "Compartilhe em"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Tags:"
|
||||||
|
categories_label : "Categorias:"
|
||||||
|
date_label : "Atualizado em:"
|
||||||
|
comments_label : "Deixe um comentário"
|
||||||
|
comments_title :
|
||||||
|
more_label : "Aprenda Mais"
|
||||||
|
related_label : "Você Talvez Goste Também"
|
||||||
|
follow_label : "Acompanhe em"
|
||||||
|
feed_label : "Feed"
|
||||||
|
powered_by : "Feito com"
|
||||||
|
website_label : "Site"
|
||||||
|
email_label : "Email"
|
||||||
|
recent_posts : "Postagens recentes"
|
||||||
|
undefined_wpm : "Parâmetro indefinido em word_per_minute no _config.yml"
|
||||||
|
comment_form_info :
|
||||||
|
comment_form_comment_label :
|
||||||
|
comment_form_md_info :
|
||||||
|
comment_form_name_label :
|
||||||
|
comment_form_email_label :
|
||||||
|
comment_form_website_label :
|
||||||
|
comment_btn_submit :
|
||||||
|
comment_btn_submitted :
|
||||||
|
comment_success_msg :
|
||||||
|
comment_error_msg :
|
||||||
|
loading_label :
|
||||||
|
pt-BR:
|
||||||
|
<<: *DEFAULT_PT
|
||||||
|
|
||||||
|
# Italian
|
||||||
|
# -----------------
|
||||||
|
it: &DEFAULT_IT
|
||||||
|
page : "Pagina"
|
||||||
|
pagination_previous : "Precedente"
|
||||||
|
pagination_next : "Prossima"
|
||||||
|
breadcrumb_home_label : "Home"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label :
|
||||||
|
toc_label : "Indice della pagina"
|
||||||
|
ext_link_label : "Link"
|
||||||
|
less_than : "meno di"
|
||||||
|
minute_read : "minuto/i di lettura"
|
||||||
|
share_on_label : "Condividi"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Tags:"
|
||||||
|
categories_label : "Categorie:"
|
||||||
|
date_label : "Aggiornato:"
|
||||||
|
comments_label : "Scrivi un commento"
|
||||||
|
comments_title :
|
||||||
|
more_label : "Scopri di più"
|
||||||
|
related_label : "Potrebbe Piacerti Anche"
|
||||||
|
follow_label : "Segui:"
|
||||||
|
feed_label : "Feed"
|
||||||
|
powered_by : "Powered by"
|
||||||
|
website_label : "Website"
|
||||||
|
email_label : "Email"
|
||||||
|
recent_posts : "Articoli Recenti"
|
||||||
|
undefined_wpm : "Parametro words_per_minute non definito in _config.yml"
|
||||||
|
comment_form_info : "Il tuo indirizzo email non sarà pubblicato. Sono segnati i campi obbligatori"
|
||||||
|
comment_form_comment_label : "Commenta"
|
||||||
|
comment_form_md_info : "Il linguaggio Markdown è supportato"
|
||||||
|
comment_form_name_label : "Nome"
|
||||||
|
comment_form_email_label : "Indirizzo email"
|
||||||
|
comment_form_website_label : "Sito Web (opzionale)"
|
||||||
|
comment_btn_submit : "Invia commento"
|
||||||
|
comment_btn_submitted : "Inviato"
|
||||||
|
comment_success_msg : "Grazie per il tuo commento! Verrà visualizzato nel sito una volta che sarà approvato."
|
||||||
|
comment_error_msg : "C'è stato un errore con il tuo invio. Assicurati che tutti i campi richiesti siano stati completati e riprova."
|
||||||
|
loading_label : "Caricamento..."
|
||||||
|
it-IT:
|
||||||
|
<<: *DEFAULT_IT
|
||||||
|
|
||||||
|
# Chinese (zh-CN Chinese - China)
|
||||||
|
# -----------------
|
||||||
|
zh: &DEFAULT_ZH
|
||||||
|
page : "页面"
|
||||||
|
pagination_previous : "向前"
|
||||||
|
pagination_next : "向后"
|
||||||
|
breadcrumb_home_label : "首页"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label :
|
||||||
|
toc_label : "在本页上"
|
||||||
|
ext_link_label : "直接链接"
|
||||||
|
less_than : "少于"
|
||||||
|
minute_read : "分钟 阅读"
|
||||||
|
share_on_label : "分享"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "标签:"
|
||||||
|
categories_label : "分类:"
|
||||||
|
date_label : "最新的:"
|
||||||
|
comments_label : "留下评论"
|
||||||
|
comments_title : "评论"
|
||||||
|
more_label : "了解更多"
|
||||||
|
related_label : "猜您还喜欢"
|
||||||
|
follow_label : "关注:"
|
||||||
|
feed_label : "Feed"
|
||||||
|
powered_by : "Powered by"
|
||||||
|
website_label : "网站"
|
||||||
|
email_label : "Email"
|
||||||
|
recent_posts : "最新文章"
|
||||||
|
undefined_wpm : "Undefined parameter words_per_minute at _config.yml"
|
||||||
|
comment_form_info : "Your email address will not be published. Required fields are marked"
|
||||||
|
comment_form_comment_label : "Comment"
|
||||||
|
comment_form_md_info : "Markdown is supported."
|
||||||
|
comment_form_name_label : "Name"
|
||||||
|
comment_form_email_label : "Email address"
|
||||||
|
comment_form_website_label : "Website (optional)"
|
||||||
|
comment_btn_submit : "Submit Comment"
|
||||||
|
comment_btn_submitted : "Submitted"
|
||||||
|
comment_success_msg : "Thanks for your comment! It will show on the site once it has been approved."
|
||||||
|
comment_error_msg : "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again."
|
||||||
|
loading_label : "Loading..."
|
||||||
|
zh-CN:
|
||||||
|
<<: *DEFAULT_ZH
|
||||||
|
zh-HK:
|
||||||
|
<<: *DEFAULT_ZH
|
||||||
|
zh-SG:
|
||||||
|
<<: *DEFAULT_ZH
|
||||||
|
zh-TW:
|
||||||
|
<<: *DEFAULT_ZH
|
||||||
|
|
||||||
|
# German / Deutsch
|
||||||
|
# -----------------
|
||||||
|
de: &DEFAULT_DE
|
||||||
|
page : "Seite"
|
||||||
|
pagination_previous : "Vorherige"
|
||||||
|
pagination_next : "Nächste"
|
||||||
|
breadcrumb_home_label : "Home"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label :
|
||||||
|
toc_label : "Auf dieser Seite"
|
||||||
|
ext_link_label : "Direkter Link"
|
||||||
|
less_than : "weniger als"
|
||||||
|
minute_read : "Minuten zum lesen"
|
||||||
|
share_on_label : "Teilen auf"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Tags:"
|
||||||
|
categories_label : "Kategorien:"
|
||||||
|
date_label : "Aktualisiert:"
|
||||||
|
comments_label : "Hinterlassen sie einen Kommentar"
|
||||||
|
comments_title : "Kommentare"
|
||||||
|
more_label : "Mehr anzeigen"
|
||||||
|
related_label : "Ihnen gefällt vielleicht auch"
|
||||||
|
follow_label : "Folgen:"
|
||||||
|
feed_label : "Feed"
|
||||||
|
powered_by : "Powered by"
|
||||||
|
website_label : "Webseite"
|
||||||
|
email_label : "E-Mail"
|
||||||
|
recent_posts : "Aktuelle Beiträge"
|
||||||
|
undefined_wpm : "Undefinierter Parameter words_per_minute in _config.yml"
|
||||||
|
comment_form_info : "Ihre E-Mail Adresse wird nicht veröffentlicht. Benötigte Felder sind markiert"
|
||||||
|
comment_form_comment_label : "Kommentar"
|
||||||
|
comment_form_md_info : "Markdown wird unterstützt."
|
||||||
|
comment_form_name_label : "Name"
|
||||||
|
comment_form_email_label : "E-Mail Addresse"
|
||||||
|
comment_form_website_label : "Webseite (optional)"
|
||||||
|
comment_btn_submit : "Kommentar absenden"
|
||||||
|
comment_btn_submitted : "Versendet"
|
||||||
|
comment_success_msg : "Danke für ihren Kommentar! Er wird auf der Seite angezeigt, nachdem er geprüft wurde."
|
||||||
|
comment_error_msg : "Entschuldigung, es gab einen Fehler. Bitte füllen sie alle benötigten Felder aus und versuchen sie es erneut."
|
||||||
|
loading_label : "Lade..."
|
||||||
|
de-DE:
|
||||||
|
<<: *DEFAULT_DE
|
||||||
|
de-AT:
|
||||||
|
<<: *DEFAULT_DE
|
||||||
|
de-CH:
|
||||||
|
<<: *DEFAULT_DE
|
||||||
|
de-BE:
|
||||||
|
<<: *DEFAULT_DE
|
||||||
|
de-LI:
|
||||||
|
<<: *DEFAULT_DE
|
||||||
|
de-LU:
|
||||||
|
<<: *DEFAULT_DE
|
||||||
|
|
||||||
|
# Dutch / Nederlands
|
||||||
|
# -----------------
|
||||||
|
nl: &DEFAULT_NL
|
||||||
|
page : "Pagina"
|
||||||
|
pagination_previous : "Vorige"
|
||||||
|
pagination_next : "Volgende"
|
||||||
|
breadcrumb_home_label : "Home"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label : "Toggle Menu"
|
||||||
|
toc_label : "Op Deze Pagina"
|
||||||
|
ext_link_label : "Directe Link"
|
||||||
|
less_than : "minder dan"
|
||||||
|
minute_read : "minuten lezen"
|
||||||
|
share_on_label : "Deel op"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Tags:"
|
||||||
|
categories_label : "Categorieën:"
|
||||||
|
date_label : "Geüpdate:"
|
||||||
|
comments_label : "Laat een reactie achter:"
|
||||||
|
comments_title : "Reacties"
|
||||||
|
more_label : "Kom Meer Te Weten"
|
||||||
|
related_label : "Ook Interessant Voor Jou"
|
||||||
|
follow_label : "Volg:"
|
||||||
|
feed_label : "Feed"
|
||||||
|
powered_by : "Aangedreven door"
|
||||||
|
website_label : "Website"
|
||||||
|
email_label : "E-mail"
|
||||||
|
recent_posts : "Recente Berichten"
|
||||||
|
undefined_wpm : "Parameter words_per_minute in _config.yml niet gedefinieerd"
|
||||||
|
comment_form_info : "Je e-mailadres zal niet openbaar gemaakt worden. Vereiste velden zijn gemarkeerd"
|
||||||
|
comment_form_comment_label : "Commentaar"
|
||||||
|
comment_form_md_info : "Markdown wordt ondersteund."
|
||||||
|
comment_form_name_label : "Naam"
|
||||||
|
comment_form_email_label : "E-mailadres"
|
||||||
|
comment_form_website_label : "Website (optioneel)"
|
||||||
|
comment_btn_submit : "Verstuur Commentaar"
|
||||||
|
comment_btn_submitted : "Verstuurd"
|
||||||
|
comment_success_msg : "Bedankt voor je commentaar! Nadat het goedgekeurd is, zal het op deze site weergeven worden."
|
||||||
|
comment_error_msg : "Helaas, er is een probleem opgetreden met het versturen van je commentaar. Zorg dat alle vereiste velden ingevuld zijn en probeer opnieuw."
|
||||||
|
loading_label : "Laden..."
|
||||||
|
|
||||||
|
# Polish / Polski
|
||||||
|
# -----------------
|
||||||
|
pl: &DEFAULT_PL
|
||||||
|
page : "Strona"
|
||||||
|
pagination_previous : "Poprzedni"
|
||||||
|
pagination_next : "Następny"
|
||||||
|
breadcrumb_home_label : "Home"
|
||||||
|
breadcrumb_separator : "/"
|
||||||
|
menu_label : "Otwórz menu"
|
||||||
|
toc_label : "Na tej stronie"
|
||||||
|
ext_link_label : "Link bezpośredni"
|
||||||
|
less_than : "mniej niż"
|
||||||
|
minute_read : "minuta czytania"
|
||||||
|
share_on_label : "Udostępnij na"
|
||||||
|
meta_label :
|
||||||
|
tags_label : "Tagi:"
|
||||||
|
categories_label : "Kategorie:"
|
||||||
|
date_label : "Zaktualizowanie:"
|
||||||
|
comments_label : "Zostaw komentarz"
|
||||||
|
comments_title : "Komentarze"
|
||||||
|
more_label : "Dowiedz się więcej"
|
||||||
|
related_label : "Również może Ci się spodobać"
|
||||||
|
follow_label : "Obserwuj:"
|
||||||
|
feed_label : "Kanał"
|
||||||
|
powered_by : "Powered by"
|
||||||
|
website_label : "Strona"
|
||||||
|
email_label : "Email"
|
||||||
|
recent_posts : "Ostatnie posty"
|
||||||
|
undefined_wpm : "Undefined parameter words_per_minute at _config.yml"
|
||||||
|
comment_form_info : "Twój adres email nie zostanie upubliczniony. Wymagane pola zostały podkreślone."
|
||||||
|
comment_form_comment_label : "Komentarz"
|
||||||
|
comment_form_md_info : "Markdown is supported."
|
||||||
|
comment_form_name_label : "Imię"
|
||||||
|
comment_form_email_label : "Adres email"
|
||||||
|
comment_form_website_label : "Strona (opcjonalne)"
|
||||||
|
comment_btn_submit : "Zatwierdź komentarz"
|
||||||
|
comment_btn_submitted : "Zatwierdzone"
|
||||||
|
comment_success_msg : "Dziękujemy za komentarz! Pojawi się on na stronie gdy zostanie on zatweirdzony."
|
||||||
|
comment_error_msg : "Przepraszamy, wystąpił błąd z twoim zgłoszeniem. Upewnij się żę wszystki pola zostały zapełnione i spróbuj ponownie."
|
||||||
|
loading_label : "Ładowanie..."
|
||||||
|
pl_PL:
|
||||||
|
<<: *DEFAULT_PL
|
||||||
|
|
||||||
|
# Another locale
|
||||||
|
# --------------
|
3
_includes/analytics-providers/custom.html
Normal file
3
_includes/analytics-providers/custom.html
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<!-- start custom analytics snippet -->
|
||||||
|
|
||||||
|
<!-- end custom analytics snippet -->
|
9
_includes/analytics-providers/google-universal.html
Normal file
9
_includes/analytics-providers/google-universal.html
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<script>
|
||||||
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', '{{ site.analytics.google.tracking_id }}', 'auto');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
</script>
|
11
_includes/analytics-providers/google.html
Normal file
11
_includes/analytics-providers/google.html
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<script type="text/javascript">
|
||||||
|
var _gaq = _gaq || [];
|
||||||
|
_gaq.push(['_setAccount', '{{ site.analytics.google.tracking_id }}']);
|
||||||
|
_gaq.push(['_trackPageview']);
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||||
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||||
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||||
|
})();
|
||||||
|
</script>
|
12
_includes/analytics.html
Normal file
12
_includes/analytics.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{% if site.analytics.provider and page.analytics != false %}
|
||||||
|
|
||||||
|
{% case site.analytics.provider %}
|
||||||
|
{% when "google" %}
|
||||||
|
{% include /analytics-providers/google.html %}
|
||||||
|
{% when "google-universal" %}
|
||||||
|
{% include /analytics-providers/google-universal.html %}
|
||||||
|
{% when "custom" %}
|
||||||
|
{% include /analytics-providers/custom.html %}
|
||||||
|
{% endcase %}
|
||||||
|
|
||||||
|
{% endif %}
|
38
_includes/archive-single.html
Normal file
38
_includes/archive-single.html
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
{% if post.header.teaser %}
|
||||||
|
{% capture teaser %}{{ post.header.teaser }}{% endcapture %}
|
||||||
|
{% else %}
|
||||||
|
{% assign teaser = site.teaser %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if post.id %}
|
||||||
|
{% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %}
|
||||||
|
{% else %}
|
||||||
|
{% assign title = post.title %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="{{ include.type | default: "list" }}__item">
|
||||||
|
<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">
|
||||||
|
{% if include.type == "grid" and teaser %}
|
||||||
|
<div class="archive__item-teaser">
|
||||||
|
<img src=
|
||||||
|
{% if teaser contains "://" %}
|
||||||
|
"{{ teaser }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ teaser | absolute_url }}"
|
||||||
|
{% endif %}
|
||||||
|
alt="">
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
<h2 class="archive__item-title" itemprop="headline">
|
||||||
|
{% if post.link %}
|
||||||
|
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | absolute_url }}" rel="permalink"><i class="fa fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
|
||||||
|
{% else %}
|
||||||
|
<a href="{{ post.url | absolute_url }}" rel="permalink">{{ title }}</a>
|
||||||
|
{% endif %}
|
||||||
|
</h2>
|
||||||
|
{% if post.read_time %}
|
||||||
|
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
|
||||||
|
{% endif %}
|
||||||
|
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
|
||||||
|
</article>
|
||||||
|
</div>
|
7
_includes/author-profile-custom-links.html
Normal file
7
_includes/author-profile-custom-links.html
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<!--
|
||||||
|
<li>
|
||||||
|
<a href="http://link-to-whatever-social-network.com/user/" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw" aria-hidden="true"></i> Custom Social Profile Link
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
-->
|
249
_includes/author-profile.html
Normal file
249
_includes/author-profile.html
Normal file
|
@ -0,0 +1,249 @@
|
||||||
|
{% if page.author and site.data.authors[page.author] %}
|
||||||
|
{% assign author = site.data.authors[page.author] %}
|
||||||
|
{% else %}
|
||||||
|
{% assign author = site.author %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div itemscope itemtype="http://schema.org/Person">
|
||||||
|
|
||||||
|
{% if author.avatar %}
|
||||||
|
<div class="author__avatar">
|
||||||
|
{% if author.avatar contains "://" %}
|
||||||
|
<img src="{{ author.avatar }}" alt="{{ author.name }}" itemprop="image">
|
||||||
|
{% else %}
|
||||||
|
<img src="{{ author.avatar | absolute_url }}" class="author__avatar" alt="{{ author.name }}" itemprop="image">
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="author__content">
|
||||||
|
<h3 class="author__name" itemprop="name">{{ author.name }}</h3>
|
||||||
|
{% if author.bio %}
|
||||||
|
<p class="author__bio" itemprop="description">
|
||||||
|
{{ author.bio }}
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="author__urls-wrapper">
|
||||||
|
<button class="btn btn--inverse">{{ site.data.ui-text[site.locale].follow_label | remove: ":" | default: "Follow" }}</button>
|
||||||
|
<ul class="author__urls social-icons">
|
||||||
|
{% if author.location %}
|
||||||
|
<li itemprop="homeLocation" itemscope itemtype="http://schema.org/Place">
|
||||||
|
<i class="fa fa-fw fa-map-marker" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.uri %}
|
||||||
|
<li>
|
||||||
|
<a href="{{ author.uri }}" itemprop="url">
|
||||||
|
<i class="fa fa-fw fa-chain" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].website_label | default: "Website" }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.email %}
|
||||||
|
<li>
|
||||||
|
<a href="mailto:{{ author.email }}">
|
||||||
|
<meta itemprop="email" content="{{ author.email }}" />
|
||||||
|
<i class="fa fa-fw fa-envelope-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].email_label | default: "Email" }}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.keybase %}
|
||||||
|
<li>
|
||||||
|
<a href="https://keybase.io/{{ author.keybase }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-key" aria-hidden="true"></i> Keybase
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.twitter %}
|
||||||
|
<li>
|
||||||
|
<a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-twitter-square" aria-hidden="true"></i> Twitter
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.facebook %}
|
||||||
|
<li>
|
||||||
|
<a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-facebook-square" aria-hidden="true"></i> Facebook
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.google_plus %}
|
||||||
|
<li>
|
||||||
|
<a href="https://plus.google.com/+{{ author.google_plus }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-google-plus-square" aria-hidden="true"></i> Google+
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.linkedin %}
|
||||||
|
<li>
|
||||||
|
<a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-linkedin-square" aria-hidden="true"></i> LinkedIn
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.xing %}
|
||||||
|
<li>
|
||||||
|
<a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-xing-square" aria-hidden="true"></i> XING
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.instagram %}
|
||||||
|
<li>
|
||||||
|
<a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-instagram" aria-hidden="true"></i> Instagram
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.tumblr %}
|
||||||
|
<li>
|
||||||
|
<a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-tumblr-square" aria-hidden="true"></i> Tumblr
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.bitbucket %}
|
||||||
|
<li>
|
||||||
|
<a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-bitbucket" aria-hidden="true"></i> Bitbucket
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.github %}
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/{{ author.github }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-github" aria-hidden="true"></i> GitHub
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.gitlab %}
|
||||||
|
<li>
|
||||||
|
<a href="https://gitlab.com/{{ author.gitlab }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-gitlab" aria-hidden="true"></i> Gitlab
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.stackoverflow %}
|
||||||
|
<li>
|
||||||
|
<a href="https://www.stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-stack-overflow" aria-hidden="true"></i> Stackoverflow
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.lastfm %}
|
||||||
|
<li>
|
||||||
|
<a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-lastfm-square" aria-hidden="true"></i> Last.fm
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.dribbble %}
|
||||||
|
<li>
|
||||||
|
<a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-dribbble" aria-hidden="true"></i> Dribbble
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.pinterest %}
|
||||||
|
<li>
|
||||||
|
<a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-pinterest" aria-hidden="true"></i> Pinterest
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.foursquare %}
|
||||||
|
<li>
|
||||||
|
<a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-foursquare" aria-hidden="true"></i> Foursquare
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.steam %}
|
||||||
|
<li>
|
||||||
|
<a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-steam-square" aria-hidden="true"></i> Steam
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.youtube %}
|
||||||
|
{% if author.youtube contains "://" %}
|
||||||
|
<li>
|
||||||
|
<a href="{{ author.youtube }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-youtube-square" aria-hidden="true"></i> YouTube
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% else author.youtube %}
|
||||||
|
<li>
|
||||||
|
<a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-youtube-square" aria-hidden="true"></i> YouTube
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.soundcloud %}
|
||||||
|
<li>
|
||||||
|
<a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-soundcloud" aria-hidden="true"></i> Soundcloud
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.weibo %}
|
||||||
|
<li>
|
||||||
|
<a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-weibo" aria-hidden="true"></i> Weibo
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.flickr %}
|
||||||
|
<li>
|
||||||
|
<a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-flickr" aria-hidden="true"></i> Flickr
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.codepen %}
|
||||||
|
<li>
|
||||||
|
<a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-codepen" aria-hidden="true"></i> CodePen
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.vine %}
|
||||||
|
<li>
|
||||||
|
<a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-vine" aria-hidden="true"></i> Vine
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% include author-profile-custom-links.html %}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
5
_includes/base_path
Normal file
5
_includes/base_path
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{% if site.url %}
|
||||||
|
{% assign base_path = site.url | append: site.baseurl %}
|
||||||
|
{% else %}
|
||||||
|
{% assign base_path = site.github.url %}
|
||||||
|
{% endif %}
|
39
_includes/breadcrumbs.html
Normal file
39
_includes/breadcrumbs.html
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{% case site.category_archive.type %}
|
||||||
|
{% when "liquid" %}
|
||||||
|
{% assign path_type = "#" %}
|
||||||
|
{% when "jekyll-archives" %}
|
||||||
|
{% assign path_type = nil %}
|
||||||
|
{% endcase %}
|
||||||
|
|
||||||
|
{% if page.collection != 'posts' %}
|
||||||
|
{% assign path_type = nil %}
|
||||||
|
{% assign crumb_path = '/' %}
|
||||||
|
{% else %}
|
||||||
|
{% assign crumb_path = site.category_archive.path %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<nav class="breadcrumbs">
|
||||||
|
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
|
||||||
|
{% assign crumbs = page.url | split: '/' %}
|
||||||
|
{% assign i = 1 %}
|
||||||
|
{% for crumb in crumbs offset: 1 %}
|
||||||
|
{% if forloop.first %}
|
||||||
|
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
||||||
|
<a href="{{ site.url }}{{ site.baseurl }}/" itemprop="item"><span itemprop="name">{{ site.data.ui-text[site.locale].breadcrumb_home_label | default: "Home" }}</span></a>
|
||||||
|
<meta itemprop="position" content="{{ i }}" />
|
||||||
|
</li>
|
||||||
|
<span class="sep">{{ site.data.ui-text[site.locale].breadcrumb_separator | default: "/" }}</span>
|
||||||
|
{% endif %}
|
||||||
|
{% if forloop.last %}
|
||||||
|
<li class="current">{{ page.title }}</li>
|
||||||
|
{% else %}
|
||||||
|
{% assign i = i | plus: 1 %}
|
||||||
|
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
||||||
|
<a href="{{ crumb | downcase | replace: '%20', '-' | prepend: path_type | prepend: crumb_path | absolute_url }}" itemprop="item"><span itemprop="name">{{ crumb | replace: '-', ' ' | replace: '%20', ' ' | capitalize }}</span></a>
|
||||||
|
<meta itemprop="position" content="{{ i }}" />
|
||||||
|
</li>
|
||||||
|
<span class="sep">{{ site.data.ui-text[site.locale].breadcrumb_separator | default: "/" }}</span>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
</ol>
|
||||||
|
</nav>
|
3
_includes/browser-upgrade.html
Normal file
3
_includes/browser-upgrade.html
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<!--[if lt IE 9]>
|
||||||
|
<div class="notice--danger align-center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
|
||||||
|
<![endif]-->
|
26
_includes/category-list.html
Normal file
26
_includes/category-list.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{% case site.category_archive.type %}
|
||||||
|
{% when "liquid" %}
|
||||||
|
{% assign path_type = "#" %}
|
||||||
|
{% when "jekyll-archives" %}
|
||||||
|
{% assign path_type = nil %}
|
||||||
|
{% endcase %}
|
||||||
|
|
||||||
|
{% if site.category_archive.path %}
|
||||||
|
{% comment %}
|
||||||
|
<!-- Sort alphabetically regardless of case e.g. a B c d E -->
|
||||||
|
<!-- modified from http://www.codeofclimber.ru/2015/sorting-site-tags-in-jekyll/ -->
|
||||||
|
{% endcomment %}
|
||||||
|
{% capture page_categories %}{% for category in page.categories %}{{ category | downcase }}#{{ category }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
|
||||||
|
{% assign category_hashes = page_categories | split: ',' | sort %}
|
||||||
|
|
||||||
|
<p class="page__taxonomy">
|
||||||
|
<strong><i class="fa fa-fw fa-folder-open" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].categories_label | default: "Categories:" }} </strong>
|
||||||
|
<span itemprop="keywords">
|
||||||
|
{% for hash in category_hashes %}
|
||||||
|
{% assign keyValue = hash | split: '#' %}
|
||||||
|
{% capture category_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %}
|
||||||
|
<a href="{{ category_word | slugify | prepend: path_type | prepend: site.category_archive.path | absolute_url }}" class="page__taxonomy-item" rel="tag">{{ category_word }}</a>{% unless forloop.last %}<span class="sep">, </span>{% endunless %}
|
||||||
|
{% endfor %}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
22
_includes/comment.html
Normal file
22
_includes/comment.html
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
<article id="comment{{ include.index }}" class="js-comment comment" itemprop="comment" itemscope itemtype="http://schema.org/Comment">
|
||||||
|
<div class="comment__avatar-wrapper">
|
||||||
|
<img class="comment__avatar" src="https://www.gravatar.com/avatar/{{ include.email }}?d=mm&s=80" alt="{{ include.name }}">
|
||||||
|
</div>
|
||||||
|
<div class="comment__content-wrapper">
|
||||||
|
<h3 class="comment__author" itemprop="author" itemscope itemtype="http://schema.org/Person">
|
||||||
|
{% unless include.url == blank %}
|
||||||
|
<span itemprop="name"><a rel="external nofollow" itemprop="url" href="{{ include.url }}">{{ include.name }}</a></span>
|
||||||
|
{% else %}
|
||||||
|
<span itemprop="name">{{ include.name }}</span>
|
||||||
|
{% endunless %}
|
||||||
|
</h3>
|
||||||
|
<p class="comment__date">
|
||||||
|
{% if include.date %}
|
||||||
|
{% if include.index %}<a href="#comment{{ include.index }}" itemprop="url">{% endif %}
|
||||||
|
<time datetime="{{ include.date | date_to_xmlschema }}" itemprop="datePublished">{{ include.date | date: "%B %d, %Y at %I:%M %p" }}</time>
|
||||||
|
{% if include.index %}</a>{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
</p>
|
||||||
|
<div itemprop="text">{{ include.message | markdownify }}</div>
|
||||||
|
</div>
|
||||||
|
</article>
|
3
_includes/comments-providers/custom.html
Normal file
3
_includes/comments-providers/custom.html
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<!-- start custom comments snippet -->
|
||||||
|
|
||||||
|
<!-- end custom comments snippet -->
|
13
_includes/comments-providers/discourse.html
Normal file
13
_includes/comments-providers/discourse.html
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{% if site.comments.discourse.server %}
|
||||||
|
{% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | absolute_url }}{% else %}{{ page.url | absolute_url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
|
||||||
|
<script type="text/javascript">
|
||||||
|
DiscourseEmbed = { discourseUrl: '//{{ site.comments.discourse.server }}/',
|
||||||
|
discourseEmbedUrl: '{{ canonical }}' };
|
||||||
|
(function () {
|
||||||
|
var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
|
||||||
|
d.src = DiscourseEmbed.discourseUrl + 'javascripts/embed.js';
|
||||||
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<noscript>Please enable JavaScript to view the comments powered by <a href="https://www.discourse.org/">Discourse.</a></noscript>
|
||||||
|
{% endif %}
|
15
_includes/comments-providers/disqus.html
Normal file
15
_includes/comments-providers/disqus.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{% if site.comments.disqus.shortname %}
|
||||||
|
<script>
|
||||||
|
var disqus_config = function () {
|
||||||
|
this.page.url = "{{ page.url | absolute_url }}"; // Replace PAGE_URL with your page's canonical URL variable
|
||||||
|
this.page.identifier = "{{ page.id }}"; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
|
||||||
|
};
|
||||||
|
(function() { // DON'T EDIT BELOW THIS LINE
|
||||||
|
var d = document, s = d.createElement('script');
|
||||||
|
s.src = 'https://{{ site.comments.disqus.shortname }}.disqus.com/embed.js';
|
||||||
|
s.setAttribute('data-timestamp', +new Date());
|
||||||
|
(d.head || d.body).appendChild(s);
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||||
|
{% endif %}
|
8
_includes/comments-providers/facebook.html
Normal file
8
_includes/comments-providers/facebook.html
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<div id="fb-root"></div>
|
||||||
|
<script>(function(d, s, id) {
|
||||||
|
var js, fjs = d.getElementsByTagName(s)[0];
|
||||||
|
if (d.getElementById(id)) return;
|
||||||
|
js = d.createElement(s); js.id = id;
|
||||||
|
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5{% if site.comments.facebook.appid %}&appId={{ site.comments.facebook.appid }}{% endif %}";
|
||||||
|
fjs.parentNode.insertBefore(js, fjs);
|
||||||
|
}(document, 'script', 'facebook-jssdk'));</script>
|
2
_includes/comments-providers/google-plus.html
Normal file
2
_includes/comments-providers/google-plus.html
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<script async type="text/javascript" src="//apis.google.com/js/plusone.js?callback=gpcb"></script>
|
||||||
|
<noscript>Please enable JavaScript to view the <a href="https://plus.google.com/">comments powered by Google+.</a></noscript>
|
16
_includes/comments-providers/scripts.html
Normal file
16
_includes/comments-providers/scripts.html
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{% if site.comments.provider and page.comments %}
|
||||||
|
{% case site.comments.provider %}
|
||||||
|
{% when "disqus" %}
|
||||||
|
{% include /comments-providers/disqus.html %}
|
||||||
|
{% when "discourse" %}
|
||||||
|
{% include /comments-providers/discourse.html %}
|
||||||
|
{% when "facebook" %}
|
||||||
|
{% include /comments-providers/facebook.html %}
|
||||||
|
{% when "google-plus" %}
|
||||||
|
{% include /comments-providers/google-plus.html %}
|
||||||
|
{% when "staticman" %}
|
||||||
|
{% include /comments-providers/staticman.html %}
|
||||||
|
{% when "custom" %}
|
||||||
|
{% include /comments-providers/custom.html %}
|
||||||
|
{% endcase %}
|
||||||
|
{% endif %}
|
42
_includes/comments-providers/staticman.html
Normal file
42
_includes/comments-providers/staticman.html
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
{% if site.repository and site.staticman.branch %}
|
||||||
|
<script>
|
||||||
|
(function ($) {
|
||||||
|
var $comments = $('.js-comments');
|
||||||
|
|
||||||
|
$('#new_comment').submit(function () {
|
||||||
|
var form = this;
|
||||||
|
|
||||||
|
$(form).addClass('disabled');
|
||||||
|
$('#comment-form-submit').html('<i class="fa fa-spinner fa-spin fa-fw"></i> {{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }}');
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
type: $(this).attr('method'),
|
||||||
|
url: $(this).attr('action'),
|
||||||
|
data: $(this).serialize(),
|
||||||
|
contentType: 'application/x-www-form-urlencoded',
|
||||||
|
success: function (data) {
|
||||||
|
$('#comment-form-submit').html('{{ site.data.ui-text[site.locale].comment_btn_submitted | default: "Submitted" }}');
|
||||||
|
$('.page__comments-form .js-notice').removeClass('notice--danger');
|
||||||
|
$('.page__comments-form .js-notice').addClass('notice--success');
|
||||||
|
showAlert('{{ site.data.ui-text[site.locale].comment_success_msg | default: "Thanks for your comment! It will show on the site once it has been approved." }}');
|
||||||
|
},
|
||||||
|
error: function (err) {
|
||||||
|
console.log(err);
|
||||||
|
$('#comment-form-submit').html('{{ site.data.ui-text[site.locale].comment_btn_submit | default: "Submit Comment" }}');
|
||||||
|
$('.page__comments-form .js-notice').removeClass('notice--success');
|
||||||
|
$('.page__comments-form .js-notice').addClass('notice--danger');
|
||||||
|
showAlert('{{ site.data.ui-text[site.locale].comment_error_msg | default: "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again." }}');
|
||||||
|
$(form).removeClass('disabled');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
function showAlert(message) {
|
||||||
|
$('.page__comments-form .js-notice').removeClass('hidden');
|
||||||
|
$('.page__comments-form .js-notice-text').html(message);
|
||||||
|
}
|
||||||
|
})(jQuery);
|
||||||
|
</script>
|
||||||
|
{% endif %}
|
97
_includes/comments.html
Normal file
97
_includes/comments.html
Normal file
|
@ -0,0 +1,97 @@
|
||||||
|
<div class="page__comments">
|
||||||
|
{% capture comments_label %}{{ site.data.ui-text[site.locale].comments_label | default: "Comments" }}{% endcapture %}
|
||||||
|
{% case site.comments.provider %}
|
||||||
|
{% when "discourse" %}
|
||||||
|
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
||||||
|
<section id="discourse-comments"></section>
|
||||||
|
{% when "disqus" %}
|
||||||
|
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
||||||
|
<section id="disqus_thread"></section>
|
||||||
|
{% when "facebook" %}
|
||||||
|
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
||||||
|
<section class="fb-comments" data-href="{{ page.url | absolute_url }}" data-mobile="true" data-num-posts="{{ site.comments.facebook.num_posts | default: 5 }}" data-width="100%" data-colorscheme="{{ site.comments.facebook.colorscheme | default: 'light' }}"></section>
|
||||||
|
{% when "google-plus" %}
|
||||||
|
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
||||||
|
<section id="g-comments" class="g-comments">Loading Google+ Comments ...</section>
|
||||||
|
<script>
|
||||||
|
function initComment() {
|
||||||
|
gapi.comments.render("g-comments", {
|
||||||
|
href: "{{ page.url | absolute_url }}",
|
||||||
|
width: "624",
|
||||||
|
first_party_property: "BLOGGER",
|
||||||
|
view_type: "FILTERED_POSTMOD"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script async type="text/javascript" src="https://apis.google.com/js/plusone.js" onload="initComment()" />
|
||||||
|
<noscript>Please enable JavaScript to view the <a href="https://plus.google.com/">comments powered by Google+.</a></noscript>-->
|
||||||
|
{% when "staticman" %}
|
||||||
|
<section id="static-comments">
|
||||||
|
{% if site.repository and site.staticman.branch %}
|
||||||
|
<!-- Start static comments -->
|
||||||
|
<div class="js-comments">
|
||||||
|
{% if site.data.comments[page.slug] %}
|
||||||
|
<h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_title | default: "Comments" }}</h4>
|
||||||
|
{% assign comments = site.data.comments[page.slug] | sort %}
|
||||||
|
|
||||||
|
{% for comment in comments %}
|
||||||
|
{% assign email = comment[1].email %}
|
||||||
|
{% assign name = comment[1].name %}
|
||||||
|
{% assign url = comment[1].url %}
|
||||||
|
{% assign date = comment[1].date %}
|
||||||
|
{% assign message = comment[1].message %}
|
||||||
|
{% include comment.html index=forloop.index email=email name=name url=url date=date message=message %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<!-- End static comments -->
|
||||||
|
|
||||||
|
<!-- Start new comment form -->
|
||||||
|
<div class="page__comments-form">
|
||||||
|
<h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_label | default: "Leave a Comment" }}</h4>
|
||||||
|
<p class="small">{{ site.data.ui-text[site.locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} <span class="required">*</span></p>
|
||||||
|
<form id="new_comment" class="page__comments-form js-form form" method="post" action="https://api.staticman.net/v1/entry/{{ site.repository }}/{{ site.staticman.branch }}">
|
||||||
|
<div class="form__spinner">
|
||||||
|
<i class="fa fa-spinner fa-spin fa-3x fa-fw"></i>
|
||||||
|
<span class="sr-only">{{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }}</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<fieldset>
|
||||||
|
<label for="comment-form-message">{{ site.data.ui-text[site.locale].comment_form_comment_label | default: "Comment" }} <small class="required">*</small></label>
|
||||||
|
<textarea type="text" rows="3" id="comment-form-message" name="fields[message]" tabindex="1"></textarea>
|
||||||
|
<div class="small help-block"><a href="https://daringfireball.net/projects/markdown/">{{ site.data.ui-text[site.locale].comment_form_md_info | default: "Markdown is supported." }}</a></div>
|
||||||
|
</fieldset>
|
||||||
|
<fieldset>
|
||||||
|
<label for="comment-form-name">{{ site.data.ui-text[site.locale].comment_form_name_label | default: "Name" }} <small class="required">*</small></label>
|
||||||
|
<input type="text" id="comment-form-name" name="fields[name]" tabindex="2" />
|
||||||
|
</fieldset>
|
||||||
|
<fieldset>
|
||||||
|
<label for="comment-form-email">{{ site.data.ui-text[site.locale].comment_form_email_label | default: "Email address" }} <small class="required">*</small></label>
|
||||||
|
<input type="email" id="comment-form-email" name="fields[email]" tabindex="3" />
|
||||||
|
</fieldset>
|
||||||
|
<fieldset>
|
||||||
|
<label for="comment-form-url">{{ site.data.ui-text[site.locale].comment_form_website_label | default: "Website (optional)" }}</label>
|
||||||
|
<input type="url" id="comment-form-url" name="fields[url]" tabindex="4"/>
|
||||||
|
</fieldset>
|
||||||
|
<fieldset class="hidden" style="display: none;">
|
||||||
|
<input type="hidden" name="options[slug]" value="{{ page.slug }}">
|
||||||
|
<label for="comment-form-location">Not used. Leave blank if you are a human.</label>
|
||||||
|
<input type="text" id="comment-form-location" name="fields[hidden]" autocomplete="off"/>
|
||||||
|
</fieldset>
|
||||||
|
<!-- Start comment form alert messaging -->
|
||||||
|
<p class="hidden js-notice">
|
||||||
|
<strong class="js-notice-text"></strong>
|
||||||
|
</p>
|
||||||
|
<!-- End comment form alert messaging -->
|
||||||
|
<fieldset>
|
||||||
|
<button type="submit" id="comment-form-submit" tabindex="5" class="btn btn--primary btn--large">{{ site.data.ui-text[site.locale].comment_btn_submit | default: "Submit Comment" }}</button>
|
||||||
|
</fieldset>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<!-- End new comment form -->
|
||||||
|
{% endif %}
|
||||||
|
</section>
|
||||||
|
{% when "custom" %}
|
||||||
|
<section id="custom-comments"></section>
|
||||||
|
{% endcase %}
|
||||||
|
</div>
|
50
_includes/feature_row
Normal file
50
_includes/feature_row
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
{% if include.id %}
|
||||||
|
{% assign feature_row = page[include.id] %}
|
||||||
|
{% else %}
|
||||||
|
{% assign feature_row = page.feature_row %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="feature__wrapper">
|
||||||
|
|
||||||
|
{% for f in feature_row %}
|
||||||
|
|
||||||
|
{% if f.url contains "://" %}
|
||||||
|
{% capture f_url %}{{ f.url }}{% endcapture %}
|
||||||
|
{% else %}
|
||||||
|
{% capture f_url %}{{ f.url | absolute_url }}{% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="feature__item{% if include.type %}--{{ include.type }}{% endif %}">
|
||||||
|
<div class="archive__item">
|
||||||
|
{% if f.image_path %}
|
||||||
|
<div class="archive__item-teaser">
|
||||||
|
<img src=
|
||||||
|
{% if f.image_path contains "://" %}
|
||||||
|
"{{ f.image_path }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ f.image_path | absolute_url }}"
|
||||||
|
{% endif %}
|
||||||
|
alt="{% if f.alt %}{{ f.alt }}{% endif %}">
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div class="archive__item-body">
|
||||||
|
{% if f.title %}
|
||||||
|
<h2 class="archive__item-title">{{ f.title }}</h2>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if f.excerpt %}
|
||||||
|
<div class="archive__item-excerpt">
|
||||||
|
{{ f.excerpt | markdownify }}
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if f.url %}
|
||||||
|
<p><a href="{{ f_url }}" class="btn {{ f.btn_class }}">{{ f.btn_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
</div>
|
12
_includes/figure
Normal file
12
_includes/figure
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<figure class="{{ include.class }}">
|
||||||
|
<img src=
|
||||||
|
{% if include.image_path contains "://" %}
|
||||||
|
"{{ include.image_path }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ include.image_path | absolute_url }}"
|
||||||
|
{% endif %}
|
||||||
|
alt="{% if include.alt %}{{ include.alt }}{% endif %}">
|
||||||
|
{% if include.caption %}
|
||||||
|
<figcaption>{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
|
||||||
|
{% endif %}
|
||||||
|
</figure>
|
5
_includes/footer.html
Normal file
5
_includes/footer.html
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{% include base_path %}
|
||||||
|
{% assign split_path = page.path | split: "/" %}
|
||||||
|
{% assign locale = split_path[1] %}
|
||||||
|
{% assign titles = site.data.navigation[locale].footer %}
|
||||||
|
<div class="page__footer-copyright">© {{ site.time | date: '%Y' }} {{ site.name | default: site.title }} - <a href="https://github.com/RiiConnect24/Wii-Guide">{{ titles[0].title }}</a> - <a href="site-navigation">{{ titles[1].title }}</a> - <a href="privacy-policy">{{ titles[3].title }}</a></div>
|
3
_includes/footer/custom.html
Normal file
3
_includes/footer/custom.html
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<!-- start custom footer snippets -->
|
||||||
|
|
||||||
|
<!-- end custom footer snippets -->
|
47
_includes/gallery
Normal file
47
_includes/gallery
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{% if include.id %}
|
||||||
|
{% assign gallery = page[include.id] %}
|
||||||
|
{% else %}
|
||||||
|
{% assign gallery = page.gallery %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if gallery.size == 2 %}
|
||||||
|
{% assign gallery_layout = 'half' %}
|
||||||
|
{% elsif gallery.size >= 3 %}
|
||||||
|
{% assign gallery_layout = 'third' %}
|
||||||
|
{% else %}
|
||||||
|
{% assign gallery_layout = '' %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<figure class="{{ gallery_layout }} {{ include.class }}">
|
||||||
|
{% for img in gallery %}
|
||||||
|
{% if img.url %}
|
||||||
|
<a href=
|
||||||
|
{% if img.url contains "://" %}
|
||||||
|
"{{ img.url }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ img.url | absolute_url }}"
|
||||||
|
{% endif %}
|
||||||
|
{% if img.title %}title="{{ img.title }}"{% endif %}
|
||||||
|
>
|
||||||
|
<img src=
|
||||||
|
{% if img.image_path contains "://" %}
|
||||||
|
"{{ img.image_path }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ img.image_path | absolute_url }}"
|
||||||
|
{% endif %}
|
||||||
|
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
|
||||||
|
</a>
|
||||||
|
{% else %}
|
||||||
|
<img src=
|
||||||
|
{% if img.image_path contains "://" %}
|
||||||
|
"{{ img.image_path }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ img.image_path | absolute_url }}"
|
||||||
|
{% endif %}
|
||||||
|
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% if include.caption %}
|
||||||
|
<figcaption>{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
|
||||||
|
{% endif %}
|
||||||
|
</figure>
|
47
_includes/group-by-array
Normal file
47
_includes/group-by-array
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
<!--
|
||||||
|
# Jekyll Group-By-Array 0.1.0
|
||||||
|
# https://github.com/mushishi78/jekyll-group-by-array
|
||||||
|
# © 2015 Max White <mushishi78@gmail.com>
|
||||||
|
# MIT License
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Initialize -->
|
||||||
|
{% assign __empty_array = '' | split: ',' %}
|
||||||
|
{% assign group_names = __empty_array %}
|
||||||
|
{% assign group_items = __empty_array %}
|
||||||
|
|
||||||
|
<!-- Map -->
|
||||||
|
{% assign __names = include.collection | map: include.field %}
|
||||||
|
|
||||||
|
<!-- Flatten -->
|
||||||
|
{% assign __names = __names | join: ',' | join: ',' | split: ',' %}
|
||||||
|
|
||||||
|
<!-- Uniq -->
|
||||||
|
{% assign __names = __names | sort %}
|
||||||
|
{% for name in __names %}
|
||||||
|
|
||||||
|
<!-- If not equal to previous then it must be unique as sorted -->
|
||||||
|
{% unless name == previous %}
|
||||||
|
|
||||||
|
<!-- Push to group_names -->
|
||||||
|
{% assign group_names = group_names | push: name %}
|
||||||
|
{% endunless %}
|
||||||
|
|
||||||
|
{% assign previous = name %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
|
||||||
|
<!-- group_items -->
|
||||||
|
{% for name in group_names %}
|
||||||
|
|
||||||
|
<!-- Collect if contains -->
|
||||||
|
{% assign __item = __empty_array %}
|
||||||
|
{% for __element in include.collection %}
|
||||||
|
{% if __element[include.field] contains name %}
|
||||||
|
{% assign __item = __item | push: __element %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
<!-- Push to group_items -->
|
||||||
|
{% assign group_items = group_items | push: __item %}
|
||||||
|
{% endfor %}
|
43
_includes/head.html
Normal file
43
_includes/head.html
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
<meta charset="utf-8">
|
||||||
|
|
||||||
|
{% include seo.html %}
|
||||||
|
|
||||||
|
<link href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | absolute_url }}{% endif %}" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
|
||||||
|
|
||||||
|
<!-- http://t.co/dKP3o1e -->
|
||||||
|
<meta name="HandheldFriendly" content="True">
|
||||||
|
<meta name="MobileOptimized" content="320">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<script>
|
||||||
|
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js ';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- For all browsers -->
|
||||||
|
<link rel="stylesheet" href="{{ '/assets/css/main.css' | absolute_url }}">
|
||||||
|
|
||||||
|
<!--[if lte IE 9]>
|
||||||
|
<style>
|
||||||
|
/* old IE unsupported flexbox fixes */
|
||||||
|
.greedy-nav .site-title {
|
||||||
|
padding-right: 3em;
|
||||||
|
}
|
||||||
|
.greedy-nav button {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<![endif]-->
|
||||||
|
|
||||||
|
{% if site.head_scripts %}
|
||||||
|
{% for script in site.head_scripts %}
|
||||||
|
{% if script contains "://" %}
|
||||||
|
{% capture script_path %}{{ script }}{% endcapture %}
|
||||||
|
{% else %}
|
||||||
|
{% capture script_path %}{{ script | absolute_url }}{% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
<script src="{{ script_path }}"></script>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
53
_includes/head/custom.html
Normal file
53
_includes/head/custom.html
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
<!-- start custom head snippets -->
|
||||||
|
{% include base_path %}
|
||||||
|
<!-- insert favicons. use http://realfavicongenerator.net/ -->
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ base_path }}/images/apple-touch-icon.png?v=PYEmwKvQAx">
|
||||||
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/favicon-32x32.png?v=PYEmwKvQAx" sizes="32x32">
|
||||||
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/favicon-194x194.png?v=PYEmwKvQAx" sizes="194x194">
|
||||||
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/android-chrome-192x192.png?v=PYEmwKvQAx" sizes="192x192">
|
||||||
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/favicon-16x16.png?v=PYEmwKvQAx" sizes="16x16">
|
||||||
|
<link rel="manifest" href="{{ base_path }}/images/manifest.json?v=PYEmwKvQAx">
|
||||||
|
<link rel="mask-icon" href="{{ base_path }}/images/safari-pinned-tab.svg?v=PYEmwKvQAx" color="#2E3440">
|
||||||
|
<link rel="shortcut icon" href="{{ base_path }}/images/favicon.ico?v=PYEmwKvQAx">
|
||||||
|
<meta name="apple-mobile-web-app-title" content="Guide">
|
||||||
|
<meta name="application-name" content="Guide">
|
||||||
|
<meta name="msapplication-TileColor" content="#2E3440">
|
||||||
|
<meta name="msapplication-TileImage" content="{{ base_path }}/images/mstile-144x144.png?v=PYEmwKvQAx">
|
||||||
|
<meta name="msapplication-config" content="{{ base_path }}/images/browserconfig.xml?v=PYEmwKvQAx">
|
||||||
|
<meta name="theme-color" content="#2E3440">
|
||||||
|
|
||||||
|
|
||||||
|
{% assign split_path = page.path | split: "/" %}
|
||||||
|
{% assign locale = split_path[1] %}
|
||||||
|
{% if locale == 'en_US' %}
|
||||||
|
{% assign locale_var = '/' %}
|
||||||
|
{% else %}
|
||||||
|
{% assign locale_var = locale | prepend:'/' | append:'/' %}
|
||||||
|
{% endif %}
|
||||||
|
{% assign top = site.data.navigation[locale].top %}
|
||||||
|
|
||||||
|
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" />
|
||||||
|
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script>
|
||||||
|
<script type="text/javascript" src="{{ base_path }}/images/pwa.js"></script>
|
||||||
|
<script>
|
||||||
|
window.addEventListener("load", function(){
|
||||||
|
window.cookieconsent.initialise({
|
||||||
|
"palette": {
|
||||||
|
"popup": {
|
||||||
|
"background": "#2e3440"
|
||||||
|
},
|
||||||
|
"button": {
|
||||||
|
"background": "#60818f"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"theme": "edgeless",
|
||||||
|
"position": "top",
|
||||||
|
"static": true,
|
||||||
|
"content": {
|
||||||
|
"message": "{{ top[0].title }}"
|
||||||
|
}
|
||||||
|
})});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<!-- end custom head snippets -->
|
|
@ -1,20 +0,0 @@
|
||||||
<div class="revisiontable auto-grid-width">
|
|
||||||
<div align="center" class="r1 c1 console-model">
|
|
||||||
Wii
|
|
||||||
</div>
|
|
||||||
<div align="center" class="r1 c2 console-model">
|
|
||||||
Wii Mini
|
|
||||||
</div>
|
|
||||||
<div align="center" class="r1 c3 console-model">
|
|
||||||
Wii U
|
|
||||||
</div>
|
|
||||||
<div class="r2 c1 console-img auto-grid-height">
|
|
||||||
<img src="../images/get-started/wii.png" alt="Wii Console">
|
|
||||||
</div>
|
|
||||||
<div class="r2 c2 console-img auto-grid-height">
|
|
||||||
<img src="../images/get-started/wii-mini.png" alt="Wii Mini Console">
|
|
||||||
</div>
|
|
||||||
<div class="r2 c3 console-img auto-grid-height">
|
|
||||||
<img src="../images/get-started/wii-u.png" alt="Wii U Console">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
|
@ -1,68 +1,71 @@
|
||||||
{% capture logo_path %}{{ site.logo }}{% endcapture %}
|
<div class="masthead">
|
||||||
|
<div class="masthead__inner-wrap">
|
||||||
<div class="masthead">
|
<div class="masthead__menu">
|
||||||
<div class="masthead__inner-wrap">
|
<nav id="site-nav" class="greedy-nav">
|
||||||
<div class="masthead__menu">
|
<ul class="visible-links">
|
||||||
<nav id="site-nav" class="greedy-nav">
|
{% assign split_path = page.path | split: "/" %}
|
||||||
{% unless logo_path == empty %}
|
{% assign locale = split_path[1] %}
|
||||||
<a class="site-logo" href="{{ '/' | relative_url }}"><img src="{{ logo_path | relative_url }}" alt="{{ site.masthead_title | default: site.title }}"></a>
|
{% assign titles = site.data.navigation[locale].main %}
|
||||||
{% endunless %}
|
{% if locale == 'en_US' %}
|
||||||
<!-- hacks-guide change start: disable default masthead title -->
|
{% assign locale_var = '/' %}
|
||||||
<!--
|
{% else %}
|
||||||
<a class="site-title" href="{{ '/' | relative_url }}">
|
{% assign locale_var = locale | prepend:'/' | append:'/' %}
|
||||||
{{ site.masthead_title | default: site.title }}
|
{% endif %}
|
||||||
{% if site.subtitle %}<span class="site-subtitle">{{ site.subtitle }}</span>{% endif %}
|
{% for link in site.data.navigation[locale].main %}
|
||||||
</a>
|
{% if link.url == "/" %}
|
||||||
-->
|
<li class="masthead__menu-item masthead__menu-item--lg"><a href="{{ domain }}{{ locale_var }}">{{ link.title }}</a></li>
|
||||||
<!-- hacks-guide change end -->
|
{% else %}
|
||||||
<ul class="visible-links">
|
<li class="masthead__menu-item"><a href="{{ domain }}{{ locale_var }}{{ link.url }}">{{ link.title }}</a></li>
|
||||||
<!-- hacks-guide change start: multi-language configuration -->
|
{% endif %}
|
||||||
{% assign split_path = page.path | split: "/" %}
|
{% endfor %}
|
||||||
{% assign locale = split_path[1] %}
|
</ul>
|
||||||
{% assign titles = site.data.navigation[locale].main %}
|
<ul class="hidden-links links-menu hidden"></ul>
|
||||||
{% if locale == 'en_US' %}
|
<ul class="hidden-links lang-menu hidden">
|
||||||
{% assign locale_var = '/' %}
|
{% assign split_url = page.url | split: "/" %}
|
||||||
{% else %}
|
{% if split_url.size == 3 %}
|
||||||
{% assign locale_var = locale | prepend:'/' | append:'/' %}
|
{% assign langless_url = split_url[2] %}
|
||||||
{% endif %}
|
{% else %}
|
||||||
|
{% assign langless_url = split_url[1] %}
|
||||||
{% for link in site.data.navigation[locale].main %}
|
{% endif %}
|
||||||
{% if link.url == "/" %}
|
{% if langless_url == "index.html" %}
|
||||||
<li class="masthead__menu-item masthead__menu-item--lg"><a href="{{ domain }}{{ locale_var }}">{{ link.title }}</a></li>
|
{% assign langless_url = "" %}
|
||||||
{% else %}
|
{% endif %}
|
||||||
<li class="masthead__menu-item"><a href="{{ domain }}{{ locale_var }}{{ link.url }}">{{ link.title }}</a></li>
|
<li class="masthead__menu-item"><a href="{{ site.url }}/{{ langless_url }}">English</a></li>
|
||||||
{% endif %}
|
<li class="masthead__menu-item"><a href="{{ site.url }}/es_ES/{{ langless_url }}">Español</a></li>
|
||||||
{% endfor %}
|
<li class="masthead__menu-item"><a href="{{ site.url }}/de_DE/{{ langless_url }}">Deutsch</a></li>
|
||||||
<!-- hacks-guide change end -->
|
<li class="masthead__menu-item"><a href="{{ site.url }}/fr_FR/{{ langless_url }}">Français</a></li>
|
||||||
</ul>
|
<li class="masthead__menu-item"><a href="{{ site.url }}/it_IT/{{ langless_url }}">Italiano</a></li>
|
||||||
{% if site.search == true %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/nl_NL/{{ langless_url }}">Nederlands</a></li> -->
|
||||||
<button class="search__toggle" type="button">
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/pt_BR/{{ langless_url }}">Português do Brasil</a></li> -->
|
||||||
<span class="visually-hidden">{{ site.data.ui-text[site.locale].search_label | default: "Toggle search" }}</span>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/pt_PT/{{ langless_url }}">Português (Portugal)</a></li> -->
|
||||||
<i class="fas fa-search"></i>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ru_RU/{{ langless_url }}">Русский</a></li> -->
|
||||||
</button>
|
<li class="masthead__menu-item"><a href="{{ site.url }}/zh_CN/{{ langless_url }}">简体中文</a></li>
|
||||||
{% endif %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/zh_TW/{{ langless_url }}">繁體中文</a></li> -->
|
||||||
<!-- hacks-guide change start: Add language selector -->
|
<li class="masthead__menu-item"><a href="{{ site.url }}/pl_PL/{{ langless_url }}">Polski</a></li>
|
||||||
<ul class="hidden-links links-menu hidden"></ul>
|
<li class="masthead__menu-item"><a href="{{ site.url }}/tr_TR/{{ langless_url }}">Türkçe</a></li>
|
||||||
<ul class="hidden-links lang-menu hidden">
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/vi_VN/{{ langless_url }}">Tiếng Việt</a></li> -->
|
||||||
{% assign split_url = page.url | split: "/" %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ca_ES/{{ langless_url }}">Català</a></li> -->
|
||||||
{% if split_url.size == 3 %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/el_GR/{{ langless_url }}">Ελληνικά</a></li> -->
|
||||||
{% assign langless_url = split_url[2] %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/he_IL/{{ langless_url }}">עברית</a></li> -->
|
||||||
{% else %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/sv_SE/{{ langless_url }}">Svenska</a></li> -->
|
||||||
{% assign langless_url = split_url[1] %}
|
<li class="masthead__menu-item"><a href="{{ site.url }}/ko_KR/{{ langless_url }}">한국어</a></li>
|
||||||
{% endif %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/no_NO/{{ langless_url }}">Norsk</a></li> -->
|
||||||
{% if langless_url == "index.html" %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ja_JP/{{ langless_url }}">日本語</a></li> -->
|
||||||
{% assign langless_url = "" %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ar_SA/{{ langless_url }}">اللغة العربية</a></li> -->
|
||||||
{% endif %}
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/hu_HU/{{ langless_url }}">Magyar</a></li> -->
|
||||||
<li class="masthead__menu-item"><a href="{{ site.url }}/{{ langless_url }}">English</a></li>
|
<li class="masthead__menu-item"><a href="{{ site.url }}/ro_RO/{{ langless_url }}">Română</a></li>
|
||||||
<li class="masthead__menu-item"><a href="{{ site.url }}/it_IT/{{ langless_url }}">Italiano</a></li>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/sr_SP/{{ langless_url }}">Српски</a></li> -->
|
||||||
</ul>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/af_ZA/{{ langless_url }}">Afrikaans</a></li> -->
|
||||||
<button class="greedy-nav__toggle hidden" type="button">
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ms_MY/{{ langless_url }}">Bahasa Melayu</a></li> -->
|
||||||
<span class="visually-hidden">{{ site.data.ui-text[site.locale].menu_label | default: "Toggle menu" }}</span>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/fi_FI/{{ langless_url }}">Suomi</a></li> -->
|
||||||
<div class="navicon"></div>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/da_DK/{{ langless_url }}">Dansk</a></li> -->
|
||||||
</button>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/uk_UA/{{ langless_url }}">Українська</a></li> -->
|
||||||
<button class="greedy-nav__toggle_lang" type="button"><div class="langicon"><i class="fa fa-language fa-lg" aria-hidden="true"></i></div></button>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/cs_CZ/{{ langless_url }}">Čeština</a></li> -->
|
||||||
<!-- hacks-guide change end -->
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/en_PT/{{ langless_url }}">Pirate English</a></li> -->
|
||||||
</nav>
|
</ul>
|
||||||
</div>
|
<button class="navsel"><div class="navicon"></div></button>
|
||||||
</div>
|
<button class="langsel"><div class="langicon"><i class="fa fa-language fa-lg" aria-hidden="true"></i></div></button>
|
||||||
</div>
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
32
_includes/nav_list
Normal file
32
_includes/nav_list
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{% assign split_path = page.path | split: "/" %}
|
||||||
|
{% assign locale = split_path[1] %}
|
||||||
|
{% if locale == 'en_US' %}
|
||||||
|
{% assign locale_var = '/' %}
|
||||||
|
{% else %}
|
||||||
|
{% assign locale_var = locale | prepend:'/' | append:'/' %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% assign title = site.data.navigation[locale].sidebar_title %}
|
||||||
|
{% assign navigation = site.data.navigation[locale].sidebar_pages %}
|
||||||
|
|
||||||
|
<nav class="nav__list">
|
||||||
|
{% if page.sidebar.title %}<h3 class="nav__title" style="padding-left: 0;">{{ page.sidebar.title }}</h3>{% endif %}
|
||||||
|
<input id="ac-toc" name="accordion-toc" type="checkbox" />
|
||||||
|
<label for="ac-toc">{{ site.data.ui-text[site.locale].menu_label | default: "Toggle Menu" }}</label>
|
||||||
|
<ul class="nav__items">
|
||||||
|
<li>
|
||||||
|
<span class="nav__sub-title">{{ title[0].title }}</span>
|
||||||
|
<ol>
|
||||||
|
{% for link in site.data.navigation[locale].sidebar_pages %}
|
||||||
|
{% if link.url == "/" %}
|
||||||
|
<li style="display: none;" data-name="home"><a href='{{ domain }}{{ locale_var }}'>{{ link.title }}</a></li>
|
||||||
|
{% elsif link.url == "multiple-options" %}
|
||||||
|
<li style="display: none;" data-name="multiple-options"><i>({{ link.title }})</i></li>
|
||||||
|
{% else %}
|
||||||
|
<li style="display: none;" data-name="{{ site.data.navigation.en_US.sidebar_pages[forloop.index0].url }}"><a href='{{ domain }}{{ locale_var }}{{ link.url }}'>{{ link.title }}</a></li>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
61
_includes/page__hero.html
Normal file
61
_includes/page__hero.html
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
{% if page.header.image contains "://" %}
|
||||||
|
{% capture img_path %}{{ page.header.image }}{% endcapture %}
|
||||||
|
{% else %}
|
||||||
|
{% capture img_path %}{{ page.header.image | absolute_url }}{% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.header.cta_url contains "://" %}
|
||||||
|
{% capture cta_path %}{{ page.header.cta_url }}{% endcapture %}
|
||||||
|
{% else %}
|
||||||
|
{% capture cta_path %}{{ page.header.cta_url | absolute_url }}{% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.header.overlay_image contains "://" %}
|
||||||
|
{% capture overlay_img_path %}{{ page.header.overlay_image }}{% endcapture %}
|
||||||
|
{% elsif page.header.overlay_image %}
|
||||||
|
{% capture overlay_img_path %}{{ page.header.overlay_image | absolute_url }}{% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.header.overlay_filter contains "rgba" %}
|
||||||
|
{% capture overlay_filter %}{{ page.header.overlay_filter }}{% endcapture %}
|
||||||
|
{% elsif page.header.overlay_filter %}
|
||||||
|
{% capture overlay_filter %}rgba(0, 0, 0, {{ page.header.overlay_filter }}){% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.header.image_description %}
|
||||||
|
{% assign image_description = page.header.image_description %}
|
||||||
|
{% else %}
|
||||||
|
{% assign image_description = page.title %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% assign image_description = image_description | markdownify | strip_html | strip_newlines | escape_once %}
|
||||||
|
|
||||||
|
<div class="page__hero{% if page.header.overlay_color or page.header.overlay_image %}--overlay{% endif %}"
|
||||||
|
style="{% if page.header.overlay_color %}background-color: {{ page.header.overlay_color | default: 'transparent' }};{% endif %} {% if overlay_img_path %}background-image: {% if overlay_filter %}linear-gradient({{ overlay_filter }}, {{ overlay_filter }}), {% endif %}url('{{ overlay_img_path }}');{% endif %}"
|
||||||
|
>
|
||||||
|
{% if page.header.overlay_color or page.header.overlay_image %}
|
||||||
|
<div class="wrapper">
|
||||||
|
<h1 class="page__title" itemprop="headline">
|
||||||
|
{% if paginator and site.paginate_show_page_num %}
|
||||||
|
{{ site.title }}{% unless paginator.page == 1 %} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}
|
||||||
|
{% else %}
|
||||||
|
{{ page.title | default: site.title | markdownify | remove: "<p>" | remove: "</p>" }}
|
||||||
|
{% endif %}
|
||||||
|
</h1>
|
||||||
|
{% if page.excerpt %}
|
||||||
|
<p class="page__lead">{{ page.excerpt | markdownify | remove: "<p>" | remove: "</p>" }}</p>
|
||||||
|
{% endif %}
|
||||||
|
{% if site.read_time and page.read_time %}
|
||||||
|
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
|
||||||
|
{% endif %}
|
||||||
|
{% if page.header.cta_url %}
|
||||||
|
<p><a href="{{ cta_path }}" class="btn btn--light-outline btn--large">{{ page.header.cta_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
|
<img src="{{ img_path }}" alt="{{ image_description }}" class="page__hero-image">
|
||||||
|
{% endif %}
|
||||||
|
{% if page.header.caption %}
|
||||||
|
<span class="page__hero-caption">{{ page.header.caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
4
_includes/page__hero_video.html
Normal file
4
_includes/page__hero_video.html
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{% capture video_id %}{{ page.header.video.id }}{% endcapture %}
|
||||||
|
{% capture video_provider %}{{ page.header.video.provider }}{% endcapture %}
|
||||||
|
|
||||||
|
{% include video id=video_id provider=video_provider %}
|
7
_includes/page__taxonomy.html
Normal file
7
_includes/page__taxonomy.html
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{% if site.tag_archive.type and page.tags[0] %}
|
||||||
|
{% include tag-list.html %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if site.category_archive.type and page.categories[0] %}
|
||||||
|
{% include category-list.html %}
|
||||||
|
{% endif %}
|
69
_includes/paginator.html
Normal file
69
_includes/paginator.html
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
{% if paginator.total_pages > 1 %}
|
||||||
|
<nav class="pagination">
|
||||||
|
{% assign first_page_path = site.paginate_path | replace: 'page:num', '' | replace: '//', '/' | absolute_url %}
|
||||||
|
<ul>
|
||||||
|
{% comment %} Link for previous page {% endcomment %}
|
||||||
|
{% if paginator.previous_page %}
|
||||||
|
{% if paginator.previous_page == 1 %}
|
||||||
|
<li><a href="{{ first_page_path }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
|
||||||
|
{% else %}
|
||||||
|
<li><a href="{{ site.paginate_path | replace: ':num', paginator.previous_page | replace: '//', '/' | absolute_url }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
|
||||||
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
<li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</span></a></li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% comment %} First page {% endcomment %}
|
||||||
|
{% if paginator.page == 1 %}
|
||||||
|
<li><a href="#" class="disabled current">1</a></li>
|
||||||
|
{% else %}
|
||||||
|
<li><a href="{{ first_page_path }}">1</a></li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% assign page_start = 2 %}
|
||||||
|
{% if paginator.page > 4 %}
|
||||||
|
{% assign page_start = paginator.page | minus: 2 %}
|
||||||
|
{% comment %} Ellipsis for truncated links {% endcomment %}
|
||||||
|
<li><a href="#" class="disabled">…</a></li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% assign page_end = paginator.total_pages | minus: 1 %}
|
||||||
|
{% assign pages_to_end = paginator.total_pages | minus: paginator.page %}
|
||||||
|
{% if pages_to_end > 4 %}
|
||||||
|
{% assign page_end = paginator.page | plus: 2 %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% for index in (page_start..page_end) %}
|
||||||
|
{% if index == paginator.page %}
|
||||||
|
<li><a href="{{ site.paginate_path | replace: ':num', index | replace: '//', '/' | absolute_url }}" class="disabled current">{{ index }}</a></li>
|
||||||
|
{% else %}
|
||||||
|
{% comment %} Distance from current page and this link {% endcomment %}
|
||||||
|
{% assign dist = paginator.page | minus: index %}
|
||||||
|
{% if dist < 0 %}
|
||||||
|
{% comment %} Distance must be a positive value {% endcomment %}
|
||||||
|
{% assign dist = 0 | minus: dist %}
|
||||||
|
{% endif %}
|
||||||
|
<li><a href="{{ site.paginate_path | replace: ':num', index | absolute_url }}">{{ index }}</a></li>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
{% comment %} Ellipsis for truncated links {% endcomment %}
|
||||||
|
{% if pages_to_end > 3 %}
|
||||||
|
<li><a href="#" class="disabled">…</a></li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if paginator.page == paginator.total_pages %}
|
||||||
|
<li><a href="#" class="disabled current">{{ paginator.page }}</a></li>
|
||||||
|
{% else %}
|
||||||
|
<li><a href="{{ site.paginate_path | replace: ':num', paginator.total_pages | replace: '//', '/' | absolute_url }}">{{ paginator.total_pages }}</a></li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% comment %} Link next page {% endcomment %}
|
||||||
|
{% if paginator.next_page %}
|
||||||
|
<li><a href="{{ site.paginate_path | replace: ':num', paginator.next_page | replace: '//', '/' | absolute_url }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
|
||||||
|
{% else %}
|
||||||
|
<li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</span></a></li>
|
||||||
|
{% endif %}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
{% endif %}
|
14
_includes/post_pagination.html
Normal file
14
_includes/post_pagination.html
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{% if page.previous or page.next %}
|
||||||
|
<nav class="pagination">
|
||||||
|
{% if page.previous %}
|
||||||
|
<a href="{{ page.previous.url | absolute_url }}" class="pagination--pager" title="{{ page.previous.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
||||||
|
{% else %}
|
||||||
|
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
||||||
|
{% endif %}
|
||||||
|
{% if page.next %}
|
||||||
|
<a href="{{ page.next.url | absolute_url }}" class="pagination--pager" title="{{ page.next.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
||||||
|
{% else %}
|
||||||
|
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
||||||
|
{% endif %}
|
||||||
|
</nav>
|
||||||
|
{% endif %}
|
15
_includes/read-time.html
Normal file
15
_includes/read-time.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{% assign words_per_minute = site.words_per_minute | default: 200 %}
|
||||||
|
|
||||||
|
{% if post.read_time %}
|
||||||
|
{% assign words = post.content | strip_html | number_of_words %}
|
||||||
|
{% elsif page.read_time %}
|
||||||
|
{% assign words = page.content | strip_html | number_of_words %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if words < words_per_minute %}
|
||||||
|
{{ site.data.ui-text[site.locale].less_than | default: "less than" }} 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
|
||||||
|
{% elsif words == words_per_minute %}
|
||||||
|
1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
|
||||||
|
{% else %}
|
||||||
|
{{ words | divided_by:words_per_minute }} {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
|
||||||
|
{% endif %}
|
|
@ -1,2 +0,0 @@
|
||||||
<meta http-equiv="refresh" content="0; URL={{ include.redirect_to }}">
|
|
||||||
<link rel="canonical" href="{{ include.redirect_to }}">
|
|
15
_includes/scripts.html
Normal file
15
_includes/scripts.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{% if site.footer_scripts %}
|
||||||
|
{% for script in site.footer_scripts %}
|
||||||
|
{% if script contains "://" %}
|
||||||
|
{% capture script_path %}{{ script }}{% endcapture %}
|
||||||
|
{% else %}
|
||||||
|
{% capture script_path %}{{ script | absolute_url }}{% endcapture %}
|
||||||
|
{% endif %}
|
||||||
|
<script src="{{ script_path }}"></script>
|
||||||
|
{% endfor %}
|
||||||
|
{% else %}
|
||||||
|
<script src="{{ '/assets/js/main.min.js' | absolute_url }}"></script>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% include analytics.html %}
|
||||||
|
{% include /comments-providers/scripts.html %}
|
147
_includes/seo.html
Normal file
147
_includes/seo.html
Normal file
|
@ -0,0 +1,147 @@
|
||||||
|
<!-- begin SEO -->
|
||||||
|
{% if site.url %}
|
||||||
|
{% assign seo_url = site.url | append: site.baseurl %}
|
||||||
|
{% endif %}
|
||||||
|
{% assign seo_url = seo_url | default: site.github.url %}
|
||||||
|
|
||||||
|
{% if page.title %}
|
||||||
|
{% assign seo_title = page.title | append: " " | append: site.title_separator | append: " " | append: site.title %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if seo_title %}
|
||||||
|
{% assign seo_title = seo_title | markdownify | strip_html | strip_newlines | escape_once %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if site.url %}
|
||||||
|
{% assign canonical_url = page.url | replace: "index.html", "" | prepend: site.url %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<title>{{ seo_title | default: site.title }}{% if paginator %}{% unless paginator.page == 1 %} {{ site.title_separator }} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}{% endif %}</title>
|
||||||
|
|
||||||
|
{% assign seo_description = page.description | default: page.excerpt | default: site.description %}
|
||||||
|
{% if seo_description %}
|
||||||
|
{% assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<meta name="description" content="{{ seo_description }}">
|
||||||
|
|
||||||
|
{% assign seo_author = page.author | default: page.author[0] | default: site.author.name %}
|
||||||
|
{% if seo_author %}
|
||||||
|
{% if seo_author.twitter %}
|
||||||
|
{% assign seo_author_twitter = seo_author.twitter %}
|
||||||
|
{% else %}
|
||||||
|
{% if site.data.authors and site.data.authors[seo_author] %}
|
||||||
|
{% assign seo_author_twitter = site.data.authors[seo_author].twitter %}
|
||||||
|
{% else %}
|
||||||
|
{% assign seo_author_twitter = seo_author %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% assign seo_author_twitter = seo_author_twitter | replace: "@", "" %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<meta name="author" content="{{ seo_author }}">
|
||||||
|
|
||||||
|
<meta property="og:locale" content="{{ site.locale | replace: "-", "_" | default: "en_US" }}">
|
||||||
|
<meta property="og:site_name" content="{{ site.title }}">
|
||||||
|
<meta property="og:title" content="{{ page.title | default: site.title | markdownify | strip_html | strip_newlines | escape_once }}">
|
||||||
|
|
||||||
|
{% if seo_url %}
|
||||||
|
<link rel="canonical" href="{{ page.url | prepend: seo_url | replace: "/index.html", "/" }}">
|
||||||
|
<meta property="og:url" content="{{ page.url | prepend: seo_url | replace: "/index.html", "/" }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.excerpt %}
|
||||||
|
<meta property="og:description" content="{{ seo_description }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if site.twitter.username %}
|
||||||
|
<meta name="twitter:site" content="@{{ site.twitter.username | replace: "@", "" }}">
|
||||||
|
<meta name="twitter:title" content="{{ page.title | default: site.title | markdownify | strip_html | strip_newlines | escape_once }}">
|
||||||
|
<meta name="twitter:description" content="{{ seo_description }}">
|
||||||
|
<meta name="twitter:url" content="{{ canonical_url }}">
|
||||||
|
|
||||||
|
{% if page.header.image %}
|
||||||
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
|
<meta name="twitter:image" content="{% if page.header.image contains "://" %}{{ page.header.image }}{% else %}{{ page.header.image | absolute_url }}{% endif %}">
|
||||||
|
{% else %}
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
{% if page.header.teaser %}
|
||||||
|
<meta name="twitter:image" content="{% if page.header.teaser contains "://" %}{{ page.header.teaser }}{% else %}{{ page.header.teaser | absolute_url }}{% endif %}">
|
||||||
|
{% elsif site.og_image %}
|
||||||
|
<meta name="twitter:image" content="{{ site.og_image | absolute_url }}">
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if seo_author_twitter %}
|
||||||
|
<meta name="twitter:creator" content="@{{ seo_author_twitter }}">
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if site.facebook %}
|
||||||
|
{% if site.facebook.publisher %}
|
||||||
|
<meta property="article:publisher" content="{{ site.facebook.publisher }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if site.facebook.app_id %}
|
||||||
|
<meta property="fb:app_id" content="{{ site.facebook.app_id }}">
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.header.image %}
|
||||||
|
<meta property="og:image" content="{% if page.header.image contains "://" %}{{ page.header.image }}{% else %}{{ page.header.image | absolute_url }}{% endif %}">
|
||||||
|
{% elsif page.header.overlay_image %}
|
||||||
|
<meta property="og:image" content="{% if page.header.overlay_image contains "://" %}{{ page.header.overlay_image }}{% else %}{{ page.header.overlay_image | absolute_url }}{% endif %}">
|
||||||
|
{% elsif page.header.teaser %}
|
||||||
|
<meta property="og:image" content="{% if page.header.teaser contains "://" %}{{ page.header.teaser }}{% else %}{{ page.header.teaser | absolute_url }}{% endif %}">
|
||||||
|
{% elsif site.og_image %}
|
||||||
|
<meta property="og:image" content="{% if site.og_image contains "://" %}{{ site.og_image }}{% else %}{{ site.og_image | absolute_url }}{% endif %}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.date %}
|
||||||
|
<meta property="og:type" content="article">
|
||||||
|
<meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if paginator.previous_page %}
|
||||||
|
<link rel="prev" href="{{ paginator.previous_page_path | prepend: seo_url }}">
|
||||||
|
{% endif %}
|
||||||
|
{% if paginator.next_page %}
|
||||||
|
<link rel="next" href="{{ paginator.next_page_path | prepend: seo_url }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if site.og_image %}
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "http://schema.org",
|
||||||
|
"@type": "Organization",
|
||||||
|
"url": {{ seo_url | jsonify }},
|
||||||
|
"logo": {{ site.og_image | absolute_url | jsonify }}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if site.social %}
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context" : "http://schema.org",
|
||||||
|
"@type" : "{% if site.social.type %}{{ site.social.type }}{% else %}Person{% endif %}",
|
||||||
|
"name" : "{{ site.social.name | default: site.name }}",
|
||||||
|
"url" : {{ seo_url | jsonify }},
|
||||||
|
"sameAs" : {{ site.social.links | jsonify }}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if site.google_site_verification %}
|
||||||
|
<meta name="google-site-verification" content="{{ site.google_site_verification }}" />
|
||||||
|
{% endif %}
|
||||||
|
{% if site.bing_site_verification %}
|
||||||
|
<meta name="msvalidate.01" content="{{ site.bing_site_verification }}">
|
||||||
|
{% endif %}
|
||||||
|
{% if site.alexa_site_verification %}
|
||||||
|
<meta name="alexaVerifyID" content="{{ site.alexa_site_verification }}">
|
||||||
|
{% endif %}
|
||||||
|
{% if site.yandex_site_verification %}
|
||||||
|
<meta name="yandex-verification" content="{{ site.yandex_site_verification }}">
|
||||||
|
{% endif %}
|
||||||
|
<!-- end SEO -->
|
7
_includes/sidebar.html
Normal file
7
_includes/sidebar.html
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{% if page.sidebar %}
|
||||||
|
|
||||||
|
<div class="sidebar sticky" style="display: none;">
|
||||||
|
{% include nav_list %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% endif %}
|
13
_includes/social-share.html
Normal file
13
_includes/social-share.html
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<section class="page__share">
|
||||||
|
{% if site.data.ui-text[site.locale].share_on_label %}
|
||||||
|
<h4 class="page__share-title">{{ site.data.ui-text[site.locale].share_on_label | default: "Share on" }}</h4>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<a href="https://twitter.com/intent/tweet?{% if site.twitter.username %}via={{ site.twitter.username | url_encode }}&{% endif %}text={{ page.title | url_encode }}%20{{ page.url | absolute_url | url_encode }}" class="btn btn--twitter" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Twitter"><i class="fa fa-fw fa-twitter" aria-hidden="true"></i><span> Twitter</span></a>
|
||||||
|
|
||||||
|
<a href="https://www.facebook.com/sharer/sharer.php?u={{ page.url | absolute_url | url_encode }}" class="btn btn--facebook" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Facebook"><i class="fa fa-fw fa-facebook" aria-hidden="true"></i><span> Facebook</span></a>
|
||||||
|
|
||||||
|
<a href="https://plus.google.com/share?url={{ page.url | absolute_url | url_encode }}" class="btn btn--google-plus" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Google Plus"><i class="fa fa-fw fa-google-plus" aria-hidden="true"></i><span> Google+</span></a>
|
||||||
|
|
||||||
|
<a href="https://www.linkedin.com/shareArticle?mini=true&url={{ page.url | absolute_url | url_encode }}" class="btn btn--linkedin" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} LinkedIn"><i class="fa fa-fw fa-linkedin" aria-hidden="true"></i><span> LinkedIn</span></a>
|
||||||
|
</section>
|
26
_includes/tag-list.html
Normal file
26
_includes/tag-list.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{% case site.tag_archive.type %}
|
||||||
|
{% when "liquid" %}
|
||||||
|
{% assign path_type = "#" %}
|
||||||
|
{% when "jekyll-archives" %}
|
||||||
|
{% assign path_type = nil %}
|
||||||
|
{% endcase %}
|
||||||
|
|
||||||
|
{% if site.tag_archive.path %}
|
||||||
|
{% comment %}
|
||||||
|
<!-- Sort alphabetically regardless of case e.g. a B c d E -->
|
||||||
|
<!-- modified from http://www.codeofclimber.ru/2015/sorting-site-tags-in-jekyll/ -->
|
||||||
|
{% endcomment %}
|
||||||
|
{% capture page_tags %}{% for tag in page.tags %}{{ tag | downcase }}#{{ tag }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
|
||||||
|
{% assign tag_hashes = page_tags | split: ',' | sort %}
|
||||||
|
|
||||||
|
<p class="page__taxonomy">
|
||||||
|
<strong><i class="fa fa-fw fa-tags" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].tags_label | default: "Tags:" }} </strong>
|
||||||
|
<span itemprop="keywords">
|
||||||
|
{% for hash in tag_hashes %}
|
||||||
|
{% assign keyValue = hash | split: '#' %}
|
||||||
|
{% capture tag_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %}
|
||||||
|
<a href="{{ tag_word | slugify | prepend: path_type | prepend: site.tag_archive.path | absolute_url }}" class="page__taxonomy-item" rel="tag">{{ tag_word }}</a>{% unless forloop.last %}<span class="sep">, </span>{% endunless %}
|
||||||
|
{% endfor %}
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
7
_includes/toc
Normal file
7
_includes/toc
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<aside class="sidebar__right">
|
||||||
|
<nav class="toc" markdown="1">
|
||||||
|
<header><h4 class="nav__title"><i class="fa fa-{{ include.icon | default: 'file-text' }}"></i> {{ include.title | default: site.data.ui-text[site.locale].toc_label }}</h4></header>
|
||||||
|
* Auto generated table of contents
|
||||||
|
{:toc .toc__menu}
|
||||||
|
</nav>
|
||||||
|
</aside>
|
11
_includes/video
Normal file
11
_includes/video
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{% capture video_id %}{{ include.id }}{% endcapture %}
|
||||||
|
{% capture video_provider %}{{ include.provider }}{% endcapture %}
|
||||||
|
|
||||||
|
<!-- Courtesy of embedresponsively.com //-->
|
||||||
|
<div class="responsive-video-container">
|
||||||
|
{% if video_provider == "vimeo" %}
|
||||||
|
<iframe src="https://player.vimeo.com/video/{{ video_id }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
|
||||||
|
{% elsif video_provider == "youtube" %}
|
||||||
|
<iframe src="https://www.youtube.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
15
_layouts/archive-taxonomy.html
Normal file
15
_layouts/archive-taxonomy.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
author_profile: false
|
||||||
|
---
|
||||||
|
|
||||||
|
<div id="main" role="main">
|
||||||
|
{% include sidebar.html %}
|
||||||
|
|
||||||
|
<div class="archive">
|
||||||
|
<h1 class="page__title">{{ page.title }}</h1>
|
||||||
|
{% for post in page.posts %}
|
||||||
|
{% include archive-single.html %}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
26
_layouts/archive.html
Normal file
26
_layouts/archive.html
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
---
|
||||||
|
|
||||||
|
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
|
||||||
|
{% include page__hero.html %}
|
||||||
|
{% elsif page.header.video.id and page.header.video.provider %}
|
||||||
|
{% include page__hero_video.html %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.url != "/" and site.breadcrumbs %}
|
||||||
|
{% unless paginator %}
|
||||||
|
{% include breadcrumbs.html %}
|
||||||
|
{% endunless %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<div id="main" role="main">
|
||||||
|
{% include sidebar.html %}
|
||||||
|
|
||||||
|
<div class="archive">
|
||||||
|
{% unless page.header.overlay_color or page.header.overlay_image %}
|
||||||
|
<h1 class="page__title">{{ page.title }}</h1>
|
||||||
|
{% endunless %}
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
</div>
|
10
_layouts/compress.html
Normal file
10
_layouts/compress.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
# Jekyll layout that compresses HTML
|
||||||
|
# v3.0.2
|
||||||
|
# http://jch.penibelst.de/
|
||||||
|
# © 2014–2015 Anatol Broder
|
||||||
|
# MIT License
|
||||||
|
---
|
||||||
|
|
||||||
|
{% capture _LINE_FEED %}
|
||||||
|
{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue