This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (67 loc) · 2.65 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>misfict: micro.serial.fiction</title>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/main-ui-behaviors.js"></script>
<link rel="stylesheet" type="text/css" href="css/styles.css"/>
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="/feed/rss"/>
</head>
<body>
<div id="page-header">
<h1>misfict: micro.serial.fiction</h1>
</div>
<div id="no-js">
<p>
You appear to have Javascript disabled, or to be using a browser that doesn't support it.
This site won't work without Javascript.
</p>
</div>
<div id="help-text">
<p>
This is a simple application designed to let you play the classic
<a href="http://en.wikipedia.org/wiki/Exquisite_corpse">exquisite corpse</a>
party game (and Dadaist writing technique) on the web. Each person sees the last line
written by someone else, and adds their own line to the story.
</p>
<p>
Each time you write a line, you must wait for someone else to write
one before you may contribute again. Furthermore, to read the entire
story, you give up the right to edit for an hour.
</p>
</div>
<div id="page-body">
<div id="prompt">
<p id="metadata"><span id="posted-at"></span></p>
<p id="post-body"><span id="post-num"></span><span id="post-text">Loading...</span></p>
</div>
<div id="interact">
<form id="input-form">
<p id="text-input">
<textarea id="next-sentence" rows="3" cols="70"></textarea>
</p>
<p id="form-controls">
<input type="button" id="input-form-submit" value="post" />
</p>
</form>
</div>
<div id="wait-msg">
<p>
You'll be able to post again after someone else has had a turn.
</p>
</div>
</div>
<div id="story-body">
<p id="story-loading">Loading...</p>
<ol id="story-entries">
</ol>
</div>
<div id="page-footer">
<p id="status-msg"></p>
<p>
<span id="story-link-label">read</span> the <a id="story-link" href="#">story so far</a> || feedback? questions? contact <a href="http://rcoder.net/">rcoder</a> || get the <a href="http://github.com/rcoder/misfict/tree/master">source code</a></p>
</div>
</body>
</html>