-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
79 changed files
with
3,782 additions
and
3,296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.min.js | ||
_layouts/compress.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"semi": true, | ||
"trailingComma": "all", | ||
"singleQuote": false, | ||
"printWidth": 100, | ||
"useTabs": false, | ||
"tabWidth": 2, | ||
"bracketSpacing": true, | ||
"arrowParens": "always", | ||
"parser": "typescript", | ||
"plugins": ["@shopify/prettier-plugin-liquid"], | ||
"liquidSingleQuote": false, | ||
"embeddedSingleQuote": false, | ||
"overrides": [ | ||
{ "files": ["*.vue"], "options": { "parser": "vue" } }, | ||
{ "files": ["*.html"], "options": { "parser": "liquid-html" } } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,31 @@ | ||
--- | ||
layout: default | ||
title: 404 | ||
permalink: /404.html | ||
--- | ||
<div align="center"> | ||
<h1>Are you lost in The End?</h1> | ||
<p style="margin-bottom: 0;"> | ||
Unfortunately, the page you requested doesn't exist!<br>Try checking your spelling or going to the <strong><a href="/">main page</a></strong> to find what you were looking for. | ||
</p> | ||
<div id="animation_container"> | ||
<img id="tnt" src="{{ site.baseurl }}/image/404/tnt_side.png" alt="Boom" onclick="boom()"> | ||
<img id="diamond" class="hidden" src="{{ site.baseurl }}/image/404/diamond.png" alt="Diamond" onmouseover="boom()"> | ||
<img id="explosion" class="hidden" src="{{ site.baseurl }}/image/404/explosion_0.png" alt="Boom"> | ||
</div> | ||
</div> | ||
<link rel="stylesheet" href="{{ site.baseurl }}/css/404.css" id="darkcss"> | ||
<script defer src="{{ site.baseurl }}/js/404.js" ></script> | ||
--- | ||
layout: default | ||
title: 404 | ||
permalink: /404.html | ||
--- | ||
<div align="center"> | ||
<h1>Are you lost in The End?</h1> | ||
<p style="margin-bottom: 0;"> | ||
Unfortunately, the page you requested doesn't exist!<br> | ||
Try checking your spelling or going to the <strong><a href="/">main page</a></strong> to find | ||
what you were looking for. | ||
</p> | ||
<div id="animation_container"> | ||
<img id="tnt" src="{{ site.baseurl }}/image/404/tnt_side.png" alt="Boom" onclick="boom()"> | ||
<img | ||
id="diamond" | ||
class="hidden" | ||
src="{{ site.baseurl }}/image/404/diamond.png" | ||
alt="Diamond" | ||
onmouseover="boom()" | ||
> | ||
<img | ||
id="explosion" | ||
class="hidden" | ||
src="{{ site.baseurl }}/image/404/explosion_0.png" | ||
alt="Boom" | ||
> | ||
</div> | ||
</div> | ||
<link rel="stylesheet" href="{{ site.baseurl }}/css/404.css" id="darkcss"> | ||
<script defer src="{{ site.baseurl }}/js/404.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
{% for page in site.pages %} | ||
{% if page.path contains include.search_string %} | ||
|
||
{% assign counter = counter | plus: 1 %} | ||
|
||
{% if counter < 7 %} | ||
|
||
<a class="card img-card" href="{{ site.baseurl }}{{ page.url }}"> | ||
<img src="{{ site.baseurl }}/image/{{ page.header-img }}" alt="{{ page.title }}"> | ||
<h3>{{ page.title }}</h3> | ||
</a> | ||
|
||
{% endif %} | ||
|
||
{% endif %} | ||
{% endfor %} |
Oops, something went wrong.