-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
52 lines (49 loc) · 1.08 KB
/
about.html
File metadata and controls
52 lines (49 loc) · 1.08 KB
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
<?php
$page = 'About';
require_once('header.php');
?>
<div id='main'>
<div class='wrapper'>
<div id='left'>
<h1>
Thimbl is a Manifesto for the Open Web written in code.
</h1>
<h3>
What? Why? How? Find out.
</h3>
</hgroup>
<h2>
<a href="/faq.html">FAQs</a>
</h2>
<p>
Got a question about Thimbl? Check here first, it might already be answered.
</p>
<h2>
<a href="/manifesto.html">The Manifesto</a>
</h2>
<p>
We are big fans of the open web, and believe the web should be more than it is now. Read the manifesto to find out why.
</p>
<h2>
<a href="/how.html">The How</a>
</h2>
<p>
The common question - "Man, how does this work?" - it's not difficult to answer!
</p>
</div>
<div id='right' class="notgrey">
<div id="rightpresentation">
<h2>
What is Thimbl?
</h2>
<a href="presentation.html"><img src="presentation_small.png" alt="Presentation"></a>
</div>
</div>
<div style="clear: both;"></div>
</div>
</div>
<?php
require_once('footer.php');
?>
</body>
</html>