standalone_app.html

 1   <!DOCTYPE html>
 2   <html lang="<#if user_context_language?? && user_context_language?has_content>${user_context_language}</#if>">
 3   <head>
 4   <base href="${base_url}"/>
 5   <title>#i18n{portal.site.standalone_app.applicationsList.pageTitle}</title>
 6   <meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1" >
 7   <meta charset="UTF-8"/>
 8   <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
 9   <meta http-equiv="Content-Language" content="<#if user_context_language?? && user_context_language?has_content>${user_context_language}</#if>"/>
 10   <meta name="author" content=""/>
 11   <meta name="copyright" content=""/>
 12   <meta name="keywords" content=""/>
 13   <meta name="description" content=""/>
 14   <meta name="generator" content="Lutece"/>
 15   <!-- Set the viewport width to device width for mobile -->
 16   <meta name="viewport" content="width=device-width, initial-scale=1.0">
 17   <!-- Le styles -->
 18   <link href="css/bootstrap.min.css" rel="stylesheet"/>
 19   <link href="css/page_template_styles.css" rel="stylesheet"  type="text/css"  media="screen"/>
 20   <link href="css/bootstrap-responsive.min.css" rel="stylesheet"/>
 21   <link href="js/jquery/plugins/ui/css/jquery-ui.custom.css" rel="stylesheet" />
 22   <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
 23   <!--[if lt IE 9]>
 24   <link rel="stylesheet" href="js/jquery/plugins/ui/css/jquery.ui.ie.css"/>
 25   <script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
 26   <link rel="stylesheet" href="css/page_template_styles.css_ie" type="text/css" media="screen, projection"/>
 27   <![endif]-->
 28   <!-- Le fav and touch icons -->
 29   <link rel="shortcut icon" href="favicon.ico"/>
 30   <!-- 
 31   <link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144-precomposed.png">
 32   <link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114-precomposed.png">
 33   <link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72-precomposed.png">
 34   <link rel="apple-touch-icon-precomposed" href="apple-touch-icon-57-precomposed.png">
 35   -->
 36   <!-- Included JS Files -->
 37   <script src="js/jquery/jquery.min.js"></script>
 38   </head>
 39   <body>
 40   <div class="container">
 41   	<div class="row">
 42   		<div class="col-xs-12 col-sm-12 col-md-12">
 43   			<h2>#i18n{portal.site.standalone_app.applicationsList.pageTitle}</h2>
 44   			<table class="table table-striped">
 45   				<tr>
 46   					<th>#i18n{portal.site.standalone_app.applicationsList.labelId}</th>
 47   					<th>#i18n{portal.site.standalone_app.applicationsList.labelName}</th>
 48   					<th>#i18n{portal.site.standalone_app.applicationsList.labelVersion}</th>
 49   					<th>#i18n{portal.site.standalone_app.applicationsList.labelDescription}</th>
 50   					<th>#i18n{portal.site.standalone_app.applicationsList.labelAuthor}</th>
 51   				</tr>
 52   				<#list entry_list as entry>
 53   					<tr>
 54   						<td><a href="jsp/site/RunStandaloneApp.jsp?page=${entry.id}">${entry.id}</a></td>
 55   						<#if entry.plugin??>
 56   							<#assign plugin=entry.plugin>
 57   						<#else>
 58   							<#assign plugin=core_plugin>
 59   						</#if>
 60   						<td>${plugin.name}</td>
 61   						<td>${plugin.version}</td>
 62   						<td>#i18n{${plugin.description}}</td>
 63   						<td>#i18n{${plugin.provider}}</td>
 64   					</tr>
 65   				</#list>
 66   			</table>
 67   		</div>
 68   	</div>
 69   </div>
 70   <!-- Le javascript ================================================== -->
 71   <!-- Placed at the end of the document so the pages load faster -->
 72   <script src="js/bootstrap.min.js"></script>
 73   </body>
 74   </html>