-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Even more efficient usage of templates
- Loading branch information
Showing
11 changed files
with
23 additions
and
29 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 |
---|---|---|
@@ -1,17 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
{{ include components/head.tmpl.html }} | ||
{{ include Components/head.tmpl.html }} | ||
<title class="site-title">404 | Youyin </title> | ||
</head> | ||
<body> | ||
{{ include components/header.tmpl.html }} | ||
{{ include Components/header.tmpl.html }} | ||
<main class="centered"> | ||
<h1 id="err-404-emoji">\(o_o)/</h1> | ||
<h1>Unfortunately this page doesn't exist 😔</h1> | ||
<br> | ||
</main> | ||
{{ include components/footer.tmpl.html }} | ||
<script src="./index.js"></script> | ||
{{ include Components/footer.tmpl.html }} | ||
</body> | ||
</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 |
---|---|---|
|
@@ -13,3 +13,4 @@ | |
<option value="7">🇯🇵 JP</option> | ||
</select> | ||
</footer> | ||
<script src="./index.js"></script> |
File renamed without changes.
File renamed without changes.
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,20 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
{{ include components/head.tmpl.html }} | ||
{{ include Components/head.tmpl.html }} | ||
<link rel="stylesheet" href="./deck.css" type="text/css"> | ||
|
||
<title class="site-title">Youyin </title> | ||
</head> | ||
<body data-gramm="false" data-gramm_editor="false" data-enable-grammarly="false" spellcheck="false"> | ||
{{ include components/header.tmpl.html }} | ||
{{ include Components/header.tmpl.html }} | ||
<main class="centered"> | ||
<h1 id="coming-soon-header">This page is coming soon! 🚧</h1> | ||
<p id="coming-soon-text">Maybe check out the main <a href="https://madladsquad.com/">MadLad Squad's page</a> or <a href="./index.html">return to the main page</a>!</p> | ||
<p id="coming-soon-text">Thank you for your patience! ❤️</p> | ||
</main> | ||
<hr id="main-page-hr"> | ||
{{ include components/footer.tmpl.html }} | ||
<script src="./index.js"></script> | ||
{{ include Components/footer.tmpl.html }} | ||
</body> | ||
</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,5 +1,5 @@ | ||
#!/bin/bash | ||
rm *.hmtl | ||
rm -rf components/ UBTCustomFunctions/ UVKBuildTool/ .github/ | ||
rm -rf Components/ UBTCustomFunctions/ UVKBuildTool/ .github/ | ||
mv build/*.html . | ||
rm -rf build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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