-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
49 lines (48 loc) · 2 KB
/
index.php
File metadata and controls
49 lines (48 loc) · 2 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
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Infinitum Framework</title>
<link href="css/reset.css" rel="stylesheet" type="text/css" media="screen" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="screen" />
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
</head>
<body>
<?php include_once("analyticstracking.php") ?>
<div id="container">
<?php include_once("header.php") ?>
<div class="center-content">
<div id="body">
<div id="body-left">
<a href="https://github.com/InfinitumFramework">
<img alt="Infinitum" id="logo" src="images/logo.png" />
</a>
<ul id="modules">
<li>Dependency Injection</li>
<li>Object-Relational Mapping</li>
<li>Aspect-Oriented Programming</li>
<li>RESTful Client</li>
<li>UI Data Binding</li>
</ul>
</div>
<div id="body-right">
<h1>Android, <i>ad Infinitum</i></h1>
<p><b>Infinitum</b> is a modular framework enabling Android
developers to quickly create rich, domain-driven
applications while facilitating the convention-over-
configuration paradigm.</p>
<p>One of its primary goals is to foster a strong separation
of concerns, empowering developers to write modular
and concise code for the Android platform. The idea is
to maintain focus on the fundamental business problem
of the software, not the underlying plumbing that
connects it.</p>
<br />
<a href="overview.php"><img id="more-btn" alt="Learn More" src="images/learn-more.png" /></a>
<a href="downloads.php"><img alt="Download" src="images/download.png" /></a>
</div>
</div>
</div>
<?php include_once("footer.php") ?>
</div>
</body>