A search engine for MMP's eASLRB.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
asl-rulebook2/asl_rulebook2/webapp/templates/index.html

38 lines
1.0 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> {{APP_NAME}} </title>
<link rel="shortcut icon" href="{{url_for('static', filename='images/favicon.ico')}}">
<link rel="stylesheet" type="text/css" href="{{ url_for( 'static',
filename = 'jquery-ui/jquery-ui' + WEB_DEBUG_MIN + '.css'
) }}" />
</head>
<body>
<div id="main-app"></div>
</body>
{%if WEB_DEBUG%}
<script src="{{ url_for( 'static', filename='vue/vue.global.js' ) }}"></script>
{%else%}
<script src="{{ url_for( 'static', filename='vue/vue.global.prod.js' ) }}"></script>
{%endif%}
<script src="{{ url_for( 'static',
filename = 'jquery/jquery-3.6.0' + WEB_DEBUG_MIN + '.js'
) }}"></script>
<script src="{{ url_for( 'static',
filename = 'jquery-ui/jquery-ui' + WEB_DEBUG_MIN + '.js'
) }}"></script>
<script>
// create the main application
gMainApp = Vue.createApp( {
template: "<main-app />",
} ) ;
</script>
<script src="{{url_for('static',filename='src/MainApp.js')}}"></script>
<script> gMainApp.mount( "#main-app" ) ; </script>
</html>