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.
31 lines
1.1 KiB
31 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>My Shop</title>
|
|
<script type="text/javascript" src="js/dojo/dojo.js"></script>
|
|
<script type="text/javascript" src="js/shop.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<link rel="stylesheet" href="js/dijit/themes/claro/claro.css" />
|
|
</head>
|
|
<body class="claro">
|
|
<div id="main_pane">
|
|
<div id="site_header">
|
|
<div id="site_logo"><img src="/img/logo.png" height="75px"/></div>
|
|
</div>
|
|
<div id="pages_container">
|
|
<div style="position: relative;">
|
|
<div id="page_title">
|
|
<h2><span id="title">Boutique</span></h2>
|
|
<h5><span id="subtitle">Subtitle</span></h5>
|
|
</div>
|
|
|
|
<div id="content_pane">
|
|
<div id="search_bar">Recherche : <input type="text" id="search_textbox" /><div id="search_results"></div></div>
|
|
<div id="category_bar"><div id="category_list_placeholder"></div></div>
|
|
<div id="products_pane"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|