forked from looma/Looma-II
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlooma-experiment.php
54 lines (43 loc) · 1.11 KB
/
looma-experiment.php
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
<!doctype html>
<!--
LOOMA php code file
Filename: xxx.php
Description:
Programmer name:
Email:
Owner: VillageTech Solutions (villagetechsolutions.org)
Date:
Revision: Looma 2.0.x
Comments:
-->
<?php $page_title = 'Looma - Text File';
include ('includes/header.php');
?>
<link rel="stylesheet" href="css/looma-experiment.css">
</head>
<body>
<div id="main-container-horizontal">
<div id='fullscreen'>
<div id='editor'>
<p>1</p>
<p contenteditable>2</p>
<p contenteditable>3</p>
<p contenteditable>4</p>
<p contenteditable>5</p>
<p contenteditable>6</p>
<p contenteditable>7</p>
<p contenteditable>8</p>
<p contenteditable>9</p>
<p contenteditable>10</p>
<p contenteditable>11</p>
<p contenteditable>12</p>
<p contenteditable>13</p>
</div>
</div>
</div>
<?php
include ('includes/toolbar.php');
include ('includes/js-includes.php');
?>
<script src="js/looma-play-text.js"></script>
</body>