Add bad coders webring, update kumaos.
This commit is contained in:
parent
770369c84b
commit
dc0b9b14cb
17 changed files with 401 additions and 155 deletions
|
|
@ -15,11 +15,6 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="{{ '/static/main.css?fixcache=1' | url }}">
|
||||
<link href="{{ '/static/prism.css' | url }}" rel="stylesheet"/>
|
||||
<script type="module" src="{{ '/static/scripts/ccd.js' | url }}"></script>
|
||||
<script type="module" src="{{ '/static/scripts/music.js' | url }}" defer></script>
|
||||
<script type="module" src="{{ '/static/scripts/88x31.js' | url }}" defer></script>
|
||||
<script type="module" src="{{ '/static/scripts/tips.js' | url }}" defer></script>
|
||||
<script type="module" src="{{ '/static/scripts/click.js' | url }}" defer></script>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ '/static/apple-touch-icon.png' | url }}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{{ '/static/favicon-32x32.png' | url }}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{{ '/static/favicon-16x16.png' | url }}">
|
||||
|
|
@ -31,21 +26,10 @@
|
|||
<meta property="og:image" content="{{ ('/static/images/' ~ (background or 'bear.jpg')) | url | absoluteUrl }}">
|
||||
</head>
|
||||
<body class="iframe">
|
||||
{% poison %}
|
||||
<script>
|
||||
const rootPrefix = "{{ '/' | url }}";
|
||||
</script>
|
||||
|
||||
<noscript>
|
||||
<style>
|
||||
.i88x31:hover {
|
||||
transform: scale(2);
|
||||
}
|
||||
</style>
|
||||
</noscript>
|
||||
|
||||
<div id="everythingHelper">
|
||||
{{ content | safe }}
|
||||
</div>
|
||||
{{ content | safe }}
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -241,6 +241,12 @@ headerLink: home
|
|||
image: "/static/images/metro-flowers.jpg"
|
||||
}) }}
|
||||
|
||||
<link rel="stylesheet" href="https://axelotl3001.neocities.org/webring/onionring.css">
|
||||
<div id='Bad-coders'>
|
||||
<script type="text/javascript" src="https://axelotl3001.neocities.org/webring/onionring-variables.js"></script>
|
||||
<script type="text/javascript" src="https://axelotl3001.neocities.org/webring/onionring-widget.js"></script>
|
||||
</div>
|
||||
|
||||
{% include 'widgets/droidring.html' %}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
---
|
||||
layout: text.njk
|
||||
pageTitle: kumaOS
|
||||
pagination:
|
||||
data: languages
|
||||
size: 1
|
||||
alias: langKey
|
||||
pageTitle: KumaOS
|
||||
background: bliss-dark.jpg
|
||||
---
|
||||
{% from "macros.njk" import i88x31 with context %}
|
||||
|
||||
<script type="module" src="{{ '/static/kumos/kernel.mjs' | url }}" defer></script>
|
||||
<script type="module" src="{{ '/static/kumos/shell.mjs' | url }}" defer></script>
|
||||
<script type="module" src="{{ '/static/kumos/guestbook.mjs' | url }}" defer></script>
|
||||
<script type="module" src="{{ '/static/kumos/browser.mjs' | url }}" defer></script>
|
||||
<script type="module" src="{{ '/static/kumos/apps.mjs' | url }}" defer></script>
|
||||
<script type="module" src="{{ '/static/kumos/taskmanager.mjs' | url }}" defer></script>
|
||||
<main>
|
||||
<h1>Welcome to KumOS</h1>
|
||||
<p>There's not much to do right now as the system is being developed... Try running <code>apps</code> to see what's available.</p>
|
||||
</main>
|
||||
<aside>
|
||||
<div id="aboutChangelog">
|
||||
<div>
|
||||
<h1 class="nomargin negativeMargin">{{ i18n[langKey].changes | smartTitle }}</h1>
|
||||
<hr style="margin-bottom: .4em;">
|
||||
</div>
|
||||
<ul>
|
||||
{%- for commit in collections.recentChanges %}
|
||||
<li class="doubleLine"><a class="textColored" href="https://github.com/adrianvic/adrianvic.github.io/commit/{{ commit.hash }}"><b>{{ commit.abbrevHash }}</b> {{ commit.subject }}</a></li>
|
||||
{%- endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</aside>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
<link rel="stylesheet" href="{{ '/static/kumos/kumos.css' | url }}">
|
||||
<script type="module" src="{{ '/static/kumos/kernel.mjs' | url }}" defer></script>
|
||||
<script type="module" src="{{ '/static/kumos/system/init.mjs' | url }}" defer></script>
|
||||
</head>
|
||||
<body>
|
||||
<div style="user-select: none; pointer-events: none; display: flex; gap: 1em;">
|
||||
<h1>kumaOS</h1>
|
||||
<p>demo - not for production</p>
|
||||
</div>
|
||||
<style>
|
||||
body {
|
||||
background-image: url("{{ '/static/images/bliss-dark.jpg' | url }}");
|
||||
background-size: cover;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in a new issue