what
This commit is contained in:
52
frontpage/templates/indextemplate.html
Normal file
52
frontpage/templates/indextemplate.html
Normal file
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Enstrayed</title>
|
||||
|
||||
<link rel="stylesheet" href="static/index.css">
|
||||
<script>
|
||||
fetch("/api/nowplayingbeta?format=html").then(response => response.text()).then(response => {document.getElementById("nowplaying").innerHTML = response})
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flexcolumn fc_rowgap5em">
|
||||
|
||||
<div>
|
||||
<h1>Enstrayed.com</h1>
|
||||
<div class="flexrow gap1em">
|
||||
<span>@enstrayed</span>
|
||||
<a href="https://twitter.com/enstrayed">Twitter</a>
|
||||
<a href="https://bsky.app/profile/enstrayed.com">Bluesky</a>
|
||||
<a href="https://github.com/enstrayed">GitHub</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flexrow" id="nowplaying">
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2>Quick Links</h2>
|
||||
<ul>
|
||||
<li><a href="posts/20240409-API-Documentation.html">API Documentation</a></li>
|
||||
<li><a href="urltoolbox">URL Toolbox (Shorten/Cobalt/etc)</a></li>
|
||||
<li><a href="https://downloads.enstrayed.com">Downloads</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h2>Pages</h2>
|
||||
<ul>
|
||||
<!--SSR_BLOGPOSTS-->
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<!--SSR_APIVERSION-->
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
21
frontpage/templates/markdownposttemplate.html
Normal file
21
frontpage/templates/markdownposttemplate.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/static/posts.css">
|
||||
<meta property="og:site_name" content="enstrayed.com">
|
||||
|
||||
<meta property="og:url" content="<!--SSR_REPLACE_URL-->>">
|
||||
|
||||
<title><!--SSR_REPLACE_TITLE--></title>
|
||||
<meta property="og:title" content="<!--SSR_REPLACE_TITLE-->">
|
||||
|
||||
<meta name="description" content="No description available.">
|
||||
<meta property="og:description" content="No description available.">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<a href="/">Return to enstrayed.com</a>
|
||||
<!--SSR_REPLACE_BODY-->
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user