-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
66 lines (52 loc) · 2.9 KB
/
index.php
File metadata and controls
66 lines (52 loc) · 2.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="KEYWORDS" content="Toobs Java Web Framework" />
<meta name="DESCRIPTION" content="Toobs, The java web framework" />
<!-- <meta name="robots" content="index,follow" /> -->
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<title>Toobs</title>
<link href="css/main.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<?php include("includes/header.php"); ?>
<div id="main">
<div id="biglogo">
<img src="images/toobs600.jpg"/>
</div>
<div id="vision">
<h1>Welcome to Toobs</h1>
<div id="visionbox">
"What java framework do you use to build web pages? Struts 2, WebWork, Widget?"<br/><br/>
ToobSmiths believe this is the wrong question to ask:<br/><br/>
People have been building pages for the web for a long time. With the advent of web 2.0 and AJAX, page-level frameworks have gotten in the way instead of easing development and increasing productivity, often leading to difficult solutions to easy-to-solve problems.<br/><br/>
A better question would be:<br/><br/>
“What java framework do you use to compose, aggregate, and manage your catalog of reusable components?”<br/><br/>
This surprisingly simple question is answered by decomposing web development into smaller, more manageable chunks: Pages, Components, Widgets and Properties. Toobs provides an implementation for organizing these elements in a consistent manner using a pluggable, secure environment backed by Spring. This allows for a blazing fast concurrent implementation that can be expanded to run any rendering engine of choice.<br/><br/>
</div>
<div class="downloadbox">
<h4>Download latest stable release</h4>
<a href="#"><img src="images/tar.jpg" height="75px" border="0"/></a>
<a href="#"><img src="images/zip.jpg" height="75px" border="0"/></a>
</div>
</div>
<div class="clearall"></div>
<div class="pad"></div>
<div class="leftbox">
<div class="right"><a href="http://blog.toobsframework.org/feed"><img src="images/rss1.jpg" border="0" height="20px"/></a></div>
<h2>Latest News</h2>
<?php include("includes/news.php"); ?>
</div>
<div class="rightbox">
<div class="right"><a href="http://github.com/feeds/toobs/commits/Toobs/master"><img src="images/rss1.jpg" border="0" height="20px"/></a></div>
<h2>Development Activity</h2>
<?php include("includes/devstream.php"); ?>
</div>
<div class="clearall"></div>
<div class="pad"></div>
</div>
<?php include("includes/footer.php"); ?>
</body>
</html>