-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchResults.html
50 lines (47 loc) · 2.39 KB
/
searchResults.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="ms-design-extensionType" content="Search" />
<title>Search Contract</title>
<!-- WinJS references -->
<link href="//Microsoft.WinJS.1.0/css/ui-dark.css" rel="stylesheet" />
<script src="//Microsoft.WinJS.1.0/js/base.js"></script>
<script src="//Microsoft.WinJS.1.0/js/ui.js"></script>
<link href="/css/default.css" rel="stylesheet" />
<link href="/searchResults.css" rel="stylesheet" />
<script src="/js/data.js"></script>
</head>
<body>
<!-- This template is used to display each item in the ListView declared
below. -->
<div class="itemtemplate" data-win-control="WinJS.Binding.Template">
<div class="item">
<img class="item-image" src="#" data-win-bind="src: backgroundImage; alt: title" />
<div class="item-content">
<h3 class="item-title win-type-x-small win-type-ellipsis" data-win-bind="innerHTML: title searchResults.markText"></h3>
<h4 class="item-subtitle win-type-x-small win-type-ellipsis" data-win-bind="innerHTML: subtitle searchResults.markText"></h4>
<h4 class="item-description win-type-x-small win-type-ellipsis" data-win-bind="innerHTML: description searchResults.markText"></h4>
</div>
</div>
</div>
<!-- The content that will be loaded and displayed. -->
<div class="searchResults fragment">
<header aria-label="Header content" role="banner">
<button class="win-backbutton" aria-label="Back" disabled type="button"></button>
<div class="titlearea">
<h1 style="padding-left:80px;" class="pagetitle win-type-ellipsis"></h1>
<h2 class="pagesubtitle win-type-ellipsis"></h2>
</div>
</header>
<section aria-label="Main content" role="main">
<div class="resultsmessage win-type-x-large">Desculpe, o item que você está procurando não foi encontrado :(</div>
<div class="filterarea">
<ul class="filterbar"></ul>
<select class="filterselect"></select>
</div>
<div class="resultslist win-selectionstylefilled" aria-label="Search results" data-win-control="WinJS.UI.ListView" data-win-options="{ selectionMode: 'none' }"></div>
</section>
</div>
</body>
</html>