moss-n-puddles/web/templates/website/index.html

85 lines
3.5 KiB
HTML

{% load static sekizai_tags %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Sitting on Moss & Jumping in Puddles</title>
<meta name="description" content="My cozy escape from the world." />
<!-- title -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap" rel="stylesheet">
<!-- rest of the words -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Goudy+Bookletter+1911&family=Merienda:wght@300..900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="{% static "website/css/website.css" %}" />
<link rel="stylesheet" type="text/css" href="{% static "website/css/moss-styles.css" %}" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="/img/dragon-head.svg" />
<link rel="icon" href="/img/dragon.svg" />
<link rel="me" href="https://pdx.sh/@howard" />
<meta http-equiv="X-Clacks-Overhead" content="Darol Allen" />
<meta http-equiv="X-Clacks-Overhead" content="George Vanecek" />
<meta http-equiv="X-Clacks-Overhead" content="Rick Cooper" />
<meta http-equiv="X-Clacks-Overhead" content="Terry Pratchett" />
</head>
<body>
</head>
<body>
<h1>Sitting on Moss <br/>&<br/> Jumping in Puddles</h1>
<div id="scrolled-instructions">
<p>
In a nutshell, this is a storybook game. You read a bit of a story, and like a
<em>choose your own adventure</em> book, you <strong><em>do</em></strong>
something to <em>move your story along</em>.
</p>
<p>
Technically, this is a <a href="">MUD</a>-like game, where many people can jump
into this <em>text adventure games</em>, and explore my cozy, little environment.
</p>
<p>
To play, follow these steps ...
</p>
<ol>
<li> Click the <b>Enter a cozy world...</b> button. </li>
<li> When two <em>windows</em> appear, click the lower one to enter some commands. </li>
<li> Type <code>create</code>, then a space, followed by some username, another space, and a password. Don't bother getting creative with the username. The password? Go nuts.</li>
<li>
Type the following (replacing the text on the right side of the <code>=</code> symbol):
<pre>
name self = Rambler
desc self = A frumpy, but spry person with large ears and dark blue cloak.
</pre>
When someone types, <code>look rambler</code>, they will see
the <code>desc</code> line. Make sense?
</li>
<li> When you return, type <code>connect</code> followed by the original username and password you typed the first time. </li>
</ol>
<p>
If you are ready to join me,
<a href="#"
onclick="document.getElementById('scrolled-instructions').style.display='none'">
close this window
</a>...
</div>
{% if webclient_enabled %}
<p class="buttons">
<a href="/moss{% url 'webclient:index' %}"
class="playbutton">Enter a cozy world...</a>
&nbsp; &nbsp; &nbsp; &nbsp;
<a href="#" onclick="document.getElementById('scrolled-instructions').style.display='block'"
class="playbutton">Wait, what is this?</a>
</p>
{% endif %}
</body>
</html>