88 lines
3.2 KiB
HTML
88 lines
3.2 KiB
HTML
<html>
|
||
<head>
|
||
<title>Appy</title>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
<script language="JAVASCRIPT">
|
||
function sendMail(domain, user) {
|
||
var loc = 'mailto:' + user + '@' + domain;
|
||
parent.location = loc;
|
||
}
|
||
</script>
|
||
<link rel="stylesheet" href="appy.css" type="text/css">
|
||
</head>
|
||
<body>
|
||
<table class="main" align="center" width="100%" cellpadding="0" cellspacing="0">
|
||
<tr height="88px">
|
||
<td>
|
||
<table width="100%" cellpadding="0" cellspacing="0">
|
||
<tr valign="middle">
|
||
<td width="120px"><a href="/"><img src="img/appy.jpg"/></a>
|
||
</td>
|
||
<td align="center">
|
||
<div class="focus">
|
||
Appy (<b>Ap</b>plications in <b>py</b>thon) is a
|
||
<a href="http://www.gnu.org/copyleft/gpl.html">GPL</a> framework for creating
|
||
<a href="http://www.python.org">Python</a> web apps.<br/>
|
||
But faster. A LOT faster!<br/>
|
||
<i style="font-size: 95%">Grasp its <a href="principles.html">technical principles &
|
||
psychological effects</a> or download the <a href="AppyManifesto.odt">Appy manifesto</a>.
|
||
</i>
|
||
</div>
|
||
</td>
|
||
<td style="padding-left: 10px" align="center" width="120px">
|
||
<i>
|
||
<a href="http://launchpad.net/appy">Download</a> <img src="img/star.png"/>
|
||
<a href="https://answers.launchpad.net/appy">Forum</a><br/>
|
||
<a href="https://blueprints.launchpad.net/appy">To do</a> <img src="img/star.png"/>
|
||
<a href="javascript:sendMail('appyframework.org', 'info')">Contact</a><br/>
|
||
<a href="https://launchpad.net/appy/+announcements">News</a>
|
||
</i>
|
||
</td>
|
||
<td align="right" width="130px"><img src="img/advisory.png"/>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
<!-- The stripe -->
|
||
<tr>
|
||
<td>
|
||
<table class="userStrip" width="100%" cellpadding="0" cellspacing="0">
|
||
<tr>
|
||
<td align="center">
|
||
<span class="doc"><!-- class="doc" is required when parsed by publish.py -->
|
||
<a href="gen.html">appy.gen</a> – create <a href="genCreatingBasicClasses.html">basic</a> &
|
||
<a href="genCreatingAdvancedClasses.html">advanced</a> classes –
|
||
<a href="genSecurityAndWorkflows.html">security & workflows</a> ||
|
||
<a href="pod.html">appy.pod</a> – create <a href="podWritingTemplates.html">basic</a> &
|
||
<a href="podWritingAdvancedTemplates.html">advanced</a> templates –
|
||
<a href="podRenderingTemplates.html">render</a> templates.
|
||
</span>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
<!-- Content -->
|
||
{{ title }}
|
||
</tr>
|
||
<tr>
|
||
<td style="padding: 10px 15px 15px 15px">{{ content }}
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<table class="footer" cellpadding="0" cellspacing="0" width="100%">
|
||
<tr valign="middle">
|
||
<td class="footer"> All software on this site is distributed under the <br/>
|
||
<a href="http://www.gnu.org/copyleft/gpl.html">GNU General Public License (GPL)</a>.
|
||
</td>
|
||
<td align="right"><img src="img/gnu.png"/><img src="img/python.gif"/></td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</body>
|
||
</html>
|