Skip to content

Instantly share code, notes, and snippets.

@cfjedimaster
Created May 5, 2012 16:41
Show Gist options
  • Save cfjedimaster/2603895 to your computer and use it in GitHub Desktop.
Save cfjedimaster/2603895 to your computer and use it in GitHub Desktop.
<cfset artService = new art()>
<cfset art = artService.getArtList()>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Art Lister</title>
<link rel="stylesheet" href="css/jquery.mobile-1.1.0.min.css" />
<script src="js/jquery-1.7.2.min.js"></script>
<script src="js/jquery.mobile-1.1.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Art</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<cfoutput query="art">
<li><a href="detail.cfm?id=#artid#">#artname#</a></li>
</cfoutput>
</ul>
</div>
<div data-role="footer">
<h4>Raymond Camden</h4>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment