summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/comingSoon.shtml7
-rw-r--r--include/footnote.shtml24
-rw-r--r--include/frontPage.shtml37
-rw-r--r--include/initScripts.shtml15
4 files changed, 83 insertions, 0 deletions
diff --git a/include/comingSoon.shtml b/include/comingSoon.shtml
new file mode 100644
index 0000000..c1687eb
--- /dev/null
+++ b/include/comingSoon.shtml
@@ -0,0 +1,7 @@
+<div id="frontPage">
+ <div id="hamburger" onclick="toggleNavBar();"></div>
+
+ <p id="glyph">COMING SOON</p>
+</div>
+
+<div id="content"></div>
diff --git a/include/footnote.shtml b/include/footnote.shtml
new file mode 100644
index 0000000..2abd2ed
--- /dev/null
+++ b/include/footnote.shtml
@@ -0,0 +1,24 @@
+<footer id="footnote">
+ <p id="footnoteHeading">Achernar</p>
+ <br>
+ <table>
+ <tbody>
+ <tr>
+ <th>CVR</th>
+ <td>(TBA)</td>
+ </tr>
+ <tr>
+ <th>E-mail</th>
+ <td>Gabriel Bjørnager Jensen, see obfuscated address below.</td>
+ </tr>
+ </tbody>
+ </table>
+ <br>
+ <p>Communications can be done in English and Danish.</p>
+ <br>
+ <p>This webservice can be cloned from <a href="https://mandelbrot.dk/achernar/"><span class="code">mandelbrot.dk</span></a>.</p>
+
+ <div class="separator"></div>
+
+ <div class="obfuscatedText" style="mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAAAICAYAAAC78m4/AAAA/UlEQVRYw+1XQQ7EIAiExv9/2T01IQQJDNZ0rdyEFmEcBJmIqPfe6ciRzYRvYjMzS4Mk/Mim9RXbbY/YkGLM5BDdI4PZKAe5zuJi+fDWmTPK5F3hS2RPNPdLK/RHnk1ulLFJnbWWOsuGEhuNJetT27I5eP95WFskqJ5fJM4oX1Cso3FqXUNvrZHTWSNO5Zb+i5bpkGhmh/rMCGJwsEWJ6oEmq4mZefRftkpXEmq1T3Q0QPGMFNNul8kVBRYdD9CW94TMGHFW+ETx9OLw4nzTGVVw0cXa5INlxq2APEisNow8cN8EtMYzE2clP+9humIUqHKpwjOd+9Zz7ZFvyw87v+eHE6E5DAAAAABJRU5ErkJggg);"></div>
+</footer>
diff --git a/include/frontPage.shtml b/include/frontPage.shtml
new file mode 100644
index 0000000..0915cda
--- /dev/null
+++ b/include/frontPage.shtml
@@ -0,0 +1,37 @@
+<div id="frontPage">
+ <div id="hamburger" onclick="toggleNavBar();"></div>
+
+ <div data-state="Hidden" id="navBar">
+ <section>
+ <p class="heading">ACHERNAR</p>
+
+ <p class="clickable" onclick="loadPage('about');">ABOUT</p>
+ <a href="https://mandelbrot.dk" rel="noopener noreferrer" target="_blank">SOURCES</a>
+ </section>
+
+ <section>
+ <p class="heading">PRODUCTS</p>
+
+ <p class="clickable" onclick="loadPage('bowshock');">BOWSHOCK</p>
+ <p class="clickable" onclick="loadPage('deltaWorld');">DELTA&middot;WORLD</p>
+ </section>
+
+ <section>
+ <p class="heading">PROJECTS</p>
+
+ <p class="clickable" onclick="loadPage('agbsum');">AGBSUM</p>
+ <p class="clickable" onclick="loadPage('ax');">AX</p>
+ <p class="clickable" onclick="loadPage('backspace');">BACKSPACE</p>
+ <p class="clickable" onclick="loadPage('benoit');">BENOIT</p>
+ <p class="clickable" onclick="loadPage('bzipper');">BZIPPER</p>
+ <p class="clickable" onclick="loadPage('eas');">eAS</p>
+ <p class="clickable" onclick="loadPage('luma');">LUMA</p>
+ <p class="clickable" onclick="loadPage('pollex');">POLLEX</p>
+ <p class="clickable" onclick="loadPage('u8c');">U8C</p>
+ </section>
+
+ <p class="clickable" id="themeToggler" onclick="toggleTheme();">TOGGLE THEME</p>
+ </div>
+
+ <div id="glyph"></div>
+</div>
diff --git a/include/initScripts.shtml b/include/initScripts.shtml
new file mode 100644
index 0000000..86feb76
--- /dev/null
+++ b/include/initScripts.shtml
@@ -0,0 +1,15 @@
+<script src="/js/initImages.js" type="text/javascript"></script>
+<script src="/js/loadPage.js" type="text/javascript"></script>
+<script src="/js/setNavBarState.js" type="text/javascript"></script>
+<script src="/js/setTheme.js" type="text/javascript"></script>
+<script src="/js/toggleNavBar.js" type="text/javascript"></script>
+<script src="/js/toggleTheme.js" type="text/javascript"></script>
+
+<script type="text/javascript">
+ (function() {
+ let theme = JSON.parse(localStorage.getItem("theme"));
+ setTheme(theme);
+
+ initImages();
+ })();
+</script>