-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommunity.html
More file actions
37 lines (31 loc) · 797 Bytes
/
community.html
File metadata and controls
37 lines (31 loc) · 797 Bytes
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
<?php
$page = 'Community';
require_once('header.php');
?>
<div id='main'>
<div class='wrapper'>
<div id='left'>
<h1>
Thimbl Community Forum
</h1>
<p>
Interested in learning more about Thimbl, helping out with the project or
just meeting other Thimblers? The best thing to do is join us over in our
<a href="http://community.thimbl.net">community forum!</a>
</p>
<p> </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>