This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we're showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
<%@ page session="false" %> |
| 2 |
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> |
| 3 |
<!DOCTYPE html> |
| 4 |
<html> |
| 5 |
<head> |
| 6 |
<title>Spring Mobile | Lite Showcase</title> |
| 7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> |
| 8 |
</head> |
| 9 |
<body> |
| 10 |
<header> |
| 11 |
<h1>Mobile Site</h1> |
| 12 |
</header> |
| 13 |
<footer> |
| 14 |
An Apache-licensed technology showcase by SpringSource. |
| 15 |
</footer> |
| 16 |
<aside id="site-switcher"> |
| 17 |
<p>Site: <c:if test="${currentSitePreference.mobile}"><a href="?site_preference=normal">Normal</a> | Mobile</c:if><c:if test="${!currentSitePreference.mobile}">Normal | <a href="?site_preference=mobile">Mobile</a></c:if></p> |
| 18 |
</aside> |
| 19 |
</body> |
| 20 |
</html> |