Try to update minimal-mistakes

This commit is contained in:
Larsen Vallecillo 2021-10-10 14:02:22 -05:00
parent 5a45608129
commit 9dca56d219
No known key found for this signature in database
GPG key ID: A392A43695F3A8AD
147 changed files with 4966 additions and 176 deletions

15
Gemfile
View file

@ -1,11 +1,6 @@
source "https://rubygems.org"
gem "jekyll", "~> 3.9"
gem "jekyll-paginate-v2", "~> 3.0"
gem "jekyll-sitemap", "~> 1.4"
gem "jekyll-gist", "~> 1.5"
gem "jekyll-feed", "~> 0.15.0"
gem "jekyll-data", "~> 1.1"
gem "jemoji", "~> 0.12"
gem "kramdown-parser-gfm", "~> 1.1"
gem "webrick", "~> 1.7"
gem "jemoji", "~> 0.8"
gem "jekyll-redirect-from", "~>0.16"
gem "kramdown-parser-gfm", "~>1.1"
gem "webrick", "~>1.7"
gemspec

0
_includes/analytics-providers/custom.html Executable file → Normal file
View file

0
_includes/analytics-providers/google-universal.html Executable file → Normal file
View file

0
_includes/analytics-providers/google.html Executable file → Normal file
View file

0
_includes/analytics.html Executable file → Normal file
View file

0
_includes/archive-single.html Executable file → Normal file
View file

0
_includes/author-profile-custom-links.html Executable file → Normal file
View file

0
_includes/author-profile.html Executable file → Normal file
View file

0
_includes/base_path Executable file → Normal file
View file

0
_includes/breadcrumbs.html Executable file → Normal file
View file

0
_includes/browser-upgrade.html Executable file → Normal file
View file

0
_includes/category-list.html Executable file → Normal file
View file

0
_includes/comment.html Executable file → Normal file
View file

0
_includes/comments-providers/custom.html Executable file → Normal file
View file

0
_includes/comments-providers/discourse.html Executable file → Normal file
View file

0
_includes/comments-providers/disqus.html Executable file → Normal file
View file

0
_includes/comments-providers/facebook.html Executable file → Normal file
View file

0
_includes/comments-providers/google-plus.html Executable file → Normal file
View file

0
_includes/comments-providers/scripts.html Executable file → Normal file
View file

0
_includes/comments-providers/staticman.html Executable file → Normal file
View file

0
_includes/comments.html Executable file → Normal file
View file

0
_includes/feature_row Executable file → Normal file
View file

0
_includes/figure Executable file → Normal file
View file

8
_includes/footer.html Executable file → Normal file
View file

@ -1,9 +1,5 @@
{% include base_path %}
{% assign split_path = page.path | split: "/" %}
{% assign locale = split_path[1] %}
<div class="page__footer-copyright">
&copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}
{% for item in site.data.navigation[locale].footer %}
- <a href="{{ item.url }}">{{ item.title }}</a>
{% endfor %}
</div>
{% assign titles = site.data.navigation[locale].footer %}
<div class="page__footer-copyright">&copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }} - <a href="https://github.com/hacks-guide/Guide_3DS">{{ titles[0].title }}</a> - <a href="site-navigation">{{ titles[1].title }}</a> - <a href="privacy-policy">{{ titles[3].title }}</a></div>

0
_includes/footer/custom.html Executable file → Normal file
View file

0
_includes/gallery Executable file → Normal file
View file

0
_includes/group-by-array Executable file → Normal file
View file

0
_includes/head.html Executable file → Normal file
View file

39
_includes/head/custom.html Executable file → Normal file
View file

@ -2,12 +2,6 @@
{% include base_path %}
<!-- insert favicons. use http://realfavicongenerator.net/ -->
<script type="text/javascript">
var host = "3ds.guide";
if ((host == window.location.host) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>
<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">
@ -22,4 +16,37 @@
<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>
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 -->

0
_includes/nav_list Executable file → Normal file
View file

0
_includes/page__hero.html Executable file → Normal file
View file

0
_includes/page__hero_video.html Executable file → Normal file
View file

0
_includes/page__taxonomy.html Executable file → Normal file
View file

0
_includes/paginator.html Executable file → Normal file
View file

0
_includes/post_pagination.html Executable file → Normal file
View file

0
_includes/read-time.html Executable file → Normal file
View file

0
_includes/scripts.html Executable file → Normal file
View file

0
_includes/seo.html Executable file → Normal file
View file

0
_includes/sidebar.html Executable file → Normal file
View file

0
_includes/social-share.html Executable file → Normal file
View file

0
_includes/tag-list.html Executable file → Normal file
View file

0
_includes/toc Executable file → Normal file
View file

0
_includes/video Executable file → Normal file
View file

0
_layouts/archive-taxonomy.html Executable file → Normal file
View file

0
_layouts/archive.html Executable file → Normal file
View file

0
_layouts/compress.html Executable file → Normal file
View file

0
_layouts/default.html Executable file → Normal file
View file

0
_layouts/home.html Executable file → Normal file
View file

189
_layouts/single.html Executable file → Normal file
View file

@ -1,85 +1,104 @@
---
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 %}
<article class="page" itemscope itemtype="http://schema.org/CreativeWork">
{% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
{% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: "%B %d, %Y" }}">{% endif %}
<div class="page__inner-wrap">
{% unless page.header.overlay_color or page.header.overlay_image %}
<header>
{% if page.title %}<h1 class="page__title" itemprop="headline">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</h1>{% endif %}
{% if page.read_time %}
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
{% endif %}
</header>
{% endunless %}
<section class="page__content" itemprop="text">
{{ content }}
{% if page.link %}<div><a href="{{ page.link }}" class="btn btn--primary">{{ site.data.ui-text[site.locale].ext_link_label | default: "Direct Link" }}</a></div>{% endif %}
</section>
<footer class="page__meta">
{% if site.data.ui-text[site.locale].meta_label %}
<h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4>
{% endif %}
{% include page__taxonomy.html %}
{% if page.last_modified_at %}
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.last_modified_at | date: "%Y-%m-%d" }}">{{ page.last_modified_at | date: "%B %d, %Y" }}</time></p>
{% elsif page.date %}
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time></p>
{% endif %}
</footer>
{% if page.share %}{% include social-share.html %}{% endif %}
{% include post_pagination.html %}
</div>
{% if site.comments.provider and page.comments %}
{% include comments.html %}
{% endif %}
</article>
{% comment %}<!-- only show related on a post page when `related: true` -->{% endcomment %}
{% if page.id and page.related and site.related_posts.size > 0 %}
<div class="page__related">
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
<div class="grid__wrapper">
{% for post in site.related_posts limit:4 %}
{% include archive-single.html type="grid" %}
{% endfor %}
</div>
</div>
{% comment %}<!-- otherwise show recent posts if no related when `related: true` -->{% endcomment %}
{% elsif page.id and page.related %}
<div class="page__related">
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
<div class="grid__wrapper">
{% for post in site.posts limit:4 %}
{% include archive-single.html type="grid" %}
{% endfor %}
</div>
</div>
{% endif %}
</div>
---
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 %}
<article class="page" itemscope itemtype="http://schema.org/CreativeWork">
{% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
{% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: "%B %d, %Y" }}">{% endif %}
<div class="page__inner-wrap">
{% unless page.header.overlay_color or page.header.overlay_image %}
<header>
{% if page.title %}<h1 class="page__title" itemprop="headline">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</h1>{% endif %}
{% if page.read_time %}
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
{% endif %}
</header>
{% endunless %}
<section class="page__content" itemprop="text">
<hr>
{% assign split_path = page.path | split: "/" %}
{% assign locale = split_path[1] %}
{% for link in site.data.navigation[locale].bottom %}
{% if link.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url | append: site.baseurl %}
{% endif %}
<div class ="notice"><b>{{ link.title }}</b></div>
{% endfor %}
<hr>
{{ content }}
{% if page.link %}<div><a href="{{ page.link }}" class="btn btn--primary">{{ site.data.ui-text[site.locale].ext_link_label | default: "Direct Link" }}</a></div>{% endif %}
<hr>
</section>
<footer class="page__meta">
{% if site.data.ui-text[site.locale].meta_label %}
<h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4>
{% endif %}
{% include page__taxonomy.html %}
{% if page.last_modified_at %}
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.last_modified_at | date: "%Y-%m-%d" }}">{{ page.last_modified_at | date: "%B %d, %Y" }}</time></p>
{% elsif page.date %}
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time></p>
{% endif %}
</footer>
{% if page.share %}{% include social-share.html %}{% endif %}
{% include post_pagination.html %}
</div>
{% if site.comments.provider and page.comments %}
{% include comments.html %}
{% endif %}
</article>
{% comment %}<!-- only show related on a post page when `related: true` -->{% endcomment %}
{% if page.id and page.related and site.related_posts.size > 0 %}
<div class="page__related">
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
<div class="grid__wrapper">
{% for post in site.related_posts limit:4 %}
{% include archive-single.html type="grid" %}
{% endfor %}
</div>
</div>
{% comment %}<!-- otherwise show recent posts if no related when `related: true` -->{% endcomment %}
{% elsif page.id and page.related %}
<div class="page__related">
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
<div class="grid__wrapper">
{% for post in site.posts limit:4 %}
{% include archive-single.html type="grid" %}
{% endfor %}
</div>
</div>
{% endif %}
</div>

9
_layouts/splash.html Executable file → Normal file
View file

@ -16,6 +16,7 @@ layout: default
{% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: "%B %d, %Y" }}">{% endif %}
<section class="page__content" itemprop="text">
<hr>
{% assign split_path = page.path | split: "/" %}
@ -30,8 +31,16 @@ layout: default
<div class ="notice"><b>{{ link.title }}</b></div>
{% endfor %}
<hr>
{{ content }}
</section>
</article>
<hr>
<center>
<div id="waldo-tag-4187"></div>
</center>
</div>

0
_sass/minimal-mistakes.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_animations.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_archive.scss Executable file → Normal file
View file

3
_sass/minimal-mistakes/_base.scss Executable file → Normal file
View file

@ -149,7 +149,6 @@ td > code {
border: 1px solid $border-color;
border-radius: $border-radius;
box-shadow: $box-shadow;
white-space: nowrap;
&:before, &:after {
letter-spacing: -0.2em;
@ -314,4 +313,4 @@ nav {
b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a, tr, td, form button, input[type="submit"], .btn, .highlight, .archive__item-teaser {
-webkit-transition: $global-transition;
transition: $global-transition;
}
}

0
_sass/minimal-mistakes/_buttons.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_footer.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_forms.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_masthead.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_mixins.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_navigation.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_notices.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_page.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_print.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_reset.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_sidebar.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_syntax.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/_tables.scss Executable file → Normal file
View file

11
_sass/minimal-mistakes/_utilities.scss Executable file → Normal file
View file

@ -345,11 +345,11 @@ body:hover .visually-hidden button {
transform: rotate3d(0,0,1,-45deg);
}
}
/*
Langicons
========================================================================== */
.langicon {
position: relative;
width: $navicon-width;
@ -377,7 +377,7 @@ body:hover .visually-hidden button {
bottom: (-2 * $navicon-height);
}
}
.close .langicon {
/* hide the middle line*/
background: transparent;
@ -585,8 +585,13 @@ a.reversefootnote {
.adsbygoogle {
border-bottom: none;
margin-bottom: 1rem;
margin-top: 1rem;
}
.adsbygoogle:last-child {
margin-bottom: 0;
}
.adsbygoogle:first-child {
margin-top: 0;
}

2
_sass/minimal-mistakes/_variables.scss Executable file → Normal file
View file

@ -14,7 +14,7 @@ $indent-var : 1.3em !default;
/* system typefaces */
$serif : Georgia, Times, serif !default;
$sans-serif : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif !default;
$sans-serif : -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", sans-serif !default;
$monospace : Monaco, Consolas, "Lucida Console", monospace !default;
/* sans serif typefaces */

0
_sass/minimal-mistakes/skins/_air.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/skins/_contrast.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/skins/_dark.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/skins/_default.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/skins/_dirt.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/skins/_mint.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/skins/_nord.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/skins/_sunrise.scss Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/_context.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/_settings.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss vendored Executable file → Normal file
View file

View file

View file

View file

View file

View file

View file

0
_sass/minimal-mistakes/vendor/font-awesome/_animated.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/font-awesome/_bordered-pulled.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/font-awesome/_core.scss vendored Executable file → Normal file
View file

0
_sass/minimal-mistakes/vendor/font-awesome/_fixed-width.scss vendored Executable file → Normal file
View file

Some files were not shown because too many files have changed in this diff Show more