-
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.
♻️: refactor all templates to use vue, update tw config
- Loading branch information
Showing
15 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
{% extends "_layouts/default.vue" %}{% block content %}<div class="hero min-h-[88vh]" style="background-image: url(static/assets/splash.jpg);"><div class="hero-overlay bg-opacity-60"></div><div class="hero-content text-neutral-content"><div class="max-w-md"><h1 class="mb-5 text-5xl font-bold">BerryDeck</h1><p class="mb-5">The definitive and comprehensive savefile editor. Work in progress.</p></div></div></div>{% endblock %} |
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 was deleted.
Oops, something went wrong.
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 @@ | ||
{% extends "_layouts/default.vue" %}{% block title %}400 Bad Request - BerryDeck{% endblock %}{% block content %}<div class="hero min-h-[88vh]"><div class="hero-content"><div class="max-w-md"><h1 class="mb-5 text-5xl font-bold">Bad or Damaged Savefile!</h1><p class="mb-5">Your savefile could not be read and parsed. This could be due to invalid XML syntax or file corruption. Select <b>Create</b> to start a new session.</p><br><b>Traceback:</b><div class="mockup-code bg-error text-primary-content"><pre><code>{{ err }}</code></pre></div></div></div></div>{% endblock %} |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
{% extends "_layouts/default.vue" %}{% block title %}Inactive Session - BerryDeck{% endblock %}{% block content %}<div class="hero min-h-[88vh]"><div class="hero-content text-center"><div class="max-w-md"><h1 class="mb-5 text-5xl font-bold">Inactive Session!</h1><p class="mb-5">Couldn't find your last editor session. Select <b>Create</b> to start a new one.</p></div></div></div>{% endblock %} |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
{% extends "_layouts/default.vue" %}{% block title %}Inactive Session - BerryDeck{% endblock %}{% block content %}<div class="hero min-h-[88vh]"><div class="hero-content text-center"><div class="max-w-md"><h1 class="mb-5 text-5xl font-bold">Expired Session!</h1><p class="mb-5">Your last editing session has expired, make to save your files before leaving the site! Select <b>Create</b> to start a new one.</p></div></div></div>{% endblock %} |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
{% extends "_layouts/default.vue" %}{% block navend %}{{ super() }}{% if s.get("fn") and s.get("semantic-fn") %}<a href="/editor" class="btn btn-success rounded gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true" class="w-6 h-6"><path stroke-linecap="round" stroke-linejoin="round" d="M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18a8.967 8.967 0 00-6 2.292m0-14.25v14.25"></path></svg>Current Session</a>{% endif %}{% endblock %}{% block content %}<div class="hero min-h-[88vh]" style="background-image: url(static/assets/splash.jpg);"><div class="hero-overlay bg-opacity-60"></div><div class="hero-content text-neutral-content"><div class="max-w-md"><h1 class="mb-5 text-5xl font-bold">BerryDeck</h1><p class="mb-5">The definitive and comprehensive savefile editor. Work in progress.</p></div></div></div>{% endblock %} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.