-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (63 loc) · 1.94 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>Desi Meme Generator</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/Dark_meme.css" />
<link rel="stylesheet" href="css/jquery_mobile_icons.css" />
<link rel="stylesheet" href="css/jquery_mobile_structure.css" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
</script>
<script type="text/javascript" src="js/jquery_mobile.js"></script>
<style>
body{
text-transform:capitalize;
}
li img {
position:absolute;
top:0;
bottom:0;
margin:auto;
height:80px;
border-radius: 10px;
}
img{
height: 80px;
width:80px;
}
</style>
</head>
<body>
<div id="index" data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div><!-- /header -->
<div data-role="content" >
<ul class="content" data-role="listview" data-inset="true" data-filter="true">
<li><a href="#" rel="external"><img src="reso/image/akshay_02.jpg" /><h2>headder etx</h2></a></li>
<li><a href="#" rel="external"><img src="reso/image/akshay_03.jpg" /></a></li>
<li><a href="#" rel="external"><img src="reso/image/akshay_04.jpg" /></a></li>
</ul>
</div><!-- /content -->
<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /footer -->
</div><!-- /page -->
<script id="speakerstpl" type="text/template">
{{#memes}}
<li data-fileName={{file}} class="ui-li-has-thumb">
<a class="ui-btn ui-btn-icon-right ui-icon-carat-r" rel="external" href="#">
<img src="reso/image/{{file}}" alt="Photo of {{Title}}" />
<h2>{{Title}}</h2>
<!-- <h4>{{topText}}</h4> -->
<!-- <p>{{bottom text}}</p> -->
<!-- <input id="path" value="reso/image/{{file}}" /> -->
</a></li>
{{/memes}}
</script>
<script type="text/javascript" src="js/mustache.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>