Initial Commit
This commit is contained in:
49
html/base/index.html
Normal file
49
html/base/index.html
Normal file
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Auto Index</title>
|
||||
<style>
|
||||
body { font-family: Arial, sans-serif; margin: 20px; }
|
||||
h1 { color: #333; }
|
||||
li { transition: font-size 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);}
|
||||
li:hover { font-size: larger;}
|
||||
#nojs { display: inline-block;color: red;transition: transform 0.7s cubic-bezier(0.215, 0.610, 0.355, 1); }
|
||||
#nojs:hover { transform: skewX(-12deg);}
|
||||
</style>
|
||||
<link rel="icon" type="image/x-icon" href="../../css/favicon/favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<h1 id="nojs">Please enable Javascript!</h1>
|
||||
<p>
|
||||
<i><strong> If you might be wondering, what does the Script do?</strong></i><br/>
|
||||
<ul>
|
||||
<li>It strips the Links you see below from any .html extension</li>
|
||||
<li>It is essential for themeswitching to work</li>
|
||||
<li>it will definetly hak u >:3</li>
|
||||
</ul>
|
||||
</p>
|
||||
</noscript>
|
||||
<script>
|
||||
// we just repurpouse the nojs from css
|
||||
// much easier than adding a new element
|
||||
document.write('<h1 id="nojs" style="color:black;">Index of PyPost</h1>');
|
||||
</script>
|
||||
<p>Available pages:</p>
|
||||
<!-- CONTENT -->
|
||||
|
||||
|
||||
<script src="../../js/normal.js"></script>
|
||||
|
||||
<footer style="
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
">
|
||||
<p>
|
||||
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user