-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html.erubis
65 lines (64 loc) · 2 KB
/
detail.html.erubis
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><%= title %></title>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="css/grid.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="css/type.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="css/plugins/gadgets.css" type="text/css" media="screen, projection">
<!--[if IE]>
<link rel="stylesheet" href="css/ie.css" type="text/css" media="screen, projection">
<![endif]-->
<style>
.main{width:40em;}
.bg1{background-color:#777; }
.bg2{background-color:#555; }
.bg3{background-color:#ccc; }
.bg4{background-color:#777; }
.hg1{ height:4em;}
.hg2{ height:20em;}
.hg3{height:10em;}
.hg5{height:5em;}
.hg4{height:1em;}
.hg6{height:10em;}
.pd1{padding-top:1em;}
.pd2{padding-top:2em;}
.pd3{padding-left:1em;}
/* h2{display:none; }*/
</style>
</head>
<body>
<div class="main">
<div class="hp tc hg1 clearfix pd1">
<h2><%= title %></h2>
</div>
<div class="dl40">
<div class="dl10 tc hg3 pd2">
<img src="img/<%= prof.id %>" hight="78" width="78">
</div>
<div class="dl30 tl hg3 pd1">
<h4><%= prof.description %></h4>
</div>
</div>
<div class="dl40">
<% prof.status.each do |st| -%>
<div class="dl40">
<div class="dl40 tl hg5 pd1">
<h4><%= st.text %></h4></div>
<div class="dl40 tr pd1"><%= st.created_at %></div>
</div>
<% end -%>
</div>
<div class="dc40">
<% prof.same.each do |sm| -%>
<div class="dl10">
<div class="dl10 tc pd1"><h2><img src="img/<%= sm %>" hight="78" width="78"></h2></div>
</div>
<% end-%>
</div>
</div>
<div class="hp tc hg1"><h2>Footer</h2> </div>
</div>
</body>
</html>