58 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <html>
 | |
|   <head>
 | |
|     <title>Appy framework</title>
 | |
| 
 | |
|     <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 align="center" width="100%">
 | |
|     <tr>
 | |
|       <td>
 | |
|         <table width="100%" align="left">
 | |
|           <tr>
 | |
|             <td class="borders">
 | |
|               <img src="img/appy.jpg" align="left"/>
 | |
|               <img src="img/advisory.png" align="right"/>
 | |
|               <span class="siteTitle">The <b>Appy</b> framework</span>
 | |
|               <span class="tabs" align="left">
 | |
|                 <a href="/"><img src="img/home.png"/> Home</a> 
 | |
|                 <a href="http://launchpad.net/appy"><img src="img/download.gif"/> Download</a>
 | |
|                 <a href="https://answers.launchpad.net/appy"><img src="img/forum.png"/>Forum</a>
 | |
|                 <a href="https://blueprints.launchpad.net/appy"><img src="img/todo.gif"/> To do</a> 
 | |
|                 <a href="javascript:sendMail('appyframework.org', 'info')"><img src="img/contact.gif"/> Contact</a> 
 | |
|               </span><br/>
 | |
|               <span class="doc"><a href="docToc.html">Documentation</a> || <a href="gen.html">gen</a> - creating <a href="genCreatingBasicClasses.html">basic</a> and <a href="genCreatingAdvancedClasses.html">advanced</a> classes - <a href="genSecurityAndWorkflows.html">security and workflows</a> || <a href="pod.html">pod</a> -  creating <a href="podWritingTemplates.html">basic</a> and <a href="podWritingAdvancedTemplates.html">advanced</a> templates - <a href="podRenderingTemplates.html">rendering</a> templates</span>
 | |
|             </td>
 | |
|           </tr>
 | |
|           <tr>
 | |
|             <td class="borders headerStrip" valign="top">{{ title }}</td>
 | |
|           </tr>
 | |
|           <tr>
 | |
|             <td class="borders" valign="top">{{ content }}</td>
 | |
|           </tr>
 | |
|           <tr>
 | |
|             <td class="borders bottomStrip"><a href="http://launchpad.net/appy"><img src="img/download.gif"/> Download</a></td>
 | |
|           </tr>
 | |
|           <tr>
 | |
|             <td>
 | |
|               <table cellpadding="0" cellspacing="0" align="right">
 | |
|                 <tr>
 | |
|                   <td valign="bottom" 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>
 | |
|       </td>
 | |
|     </tr>
 | |
|   </table>
 | |
|   </body>
 | |
| </html>
 | 
