2022-06-06 15:58:55 +08:00

34 lines
926 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<#include "/extjs-header.ftl" />
<script type="text/javascript">
/**
* @version 1.0
* @author Shaun Chyxion <br />
* chyxion@163.com <br />
* Dec 05, 2014 15:49:16
*/
Ext.onReady(function() {
Ext.QuickTips.init();
Ext.create('Ext.Viewport', {
layout: 'border',
items: [{
xtype: 'box',
region: 'north',
html: '<h1>Tigon Code Gen!</h1>'
},
Ext.create('Tigon.views.CodeGen', {
region: 'center'
})
]
});
Ext.create('Tigon.views.ThemesBar').show();
});
var components = ${components};
</script>
<title>Tigon Code Gen</title>
</head>
<body>
</body>
</html>