mirror of
https://github.com/bspeice/M28_App
synced 2024-11-04 15:18:16 -05:00
0576552ec6
Contains initial PhoneGap code, and Django template system Template system is set up to render the templates out so PhoneGap can use them, rather than having to re-code everything by hand.
18 lines
223 B
HTML
18 lines
223 B
HTML
{% block html %}
|
|
<html>
|
|
{% block head %}
|
|
<head>
|
|
<title>Testing...</title>
|
|
</head>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<body>
|
|
{% block body_content %}
|
|
{% endblock %}
|
|
</body>
|
|
{% endblock %}
|
|
|
|
</html>
|
|
{% endblock %}
|