2008-11-24 19:54:24 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
|
|
|
<meta name="viewport" content="width = 600" />
|
|
|
|
|
<title>$entry.name</title>
|
|
|
|
|
<style type="text/css">
|
|
|
|
|
body {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-family: "Lucida Grande", Arial, sans-serif;
|
|
|
|
|
color: #6d6d6d;
|
|
|
|
|
background: #acc95f;
|
|
|
|
|
margin: 10px auto;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2008-12-29 01:13:02 +00:00
|
|
|
h1 {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
2008-11-24 19:54:24 +00:00
|
|
|
a:link, a:visited {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: #4c4c4c;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
a:hover, a:focus {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
color: #6a6a6a;
|
|
|
|
|
}
|
|
|
|
|
div.photo {
|
|
|
|
|
align: center;
|
|
|
|
|
height: 200px;
|
|
|
|
|
}
|
|
|
|
|
img {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
2008-12-29 01:13:02 +00:00
|
|
|
.nav {
|
|
|
|
|
border: 0 none;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
2008-11-24 19:54:24 +00:00
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2008-12-29 01:13:02 +00:00
|
|
|
<h1>#if($prev && $prev.isFile())<a href="${prev.name}.photo"><img class="nav" src="${assets}/left.png"/></a>#else<img class="nav" src="${assets}/left-inactive.png"/>#end#if($parent)<a href="$parent"><img class="nav" src="${assets}/up.png"/></a>#else<img class="nav" src="${assets}/up-inactive.png"/>#end#if($next && $next.isFile())<a href="${next.name}.photo"><img class="nav" src="${assets}/right.png"/></a>#else<img class="nav" src="${assets}/right-inactive.png"/>#end$entry.name</h1>
|
|
|
|
|
<hr/>
|
2008-11-24 19:54:24 +00:00
|
|
|
#set($thmb = 480)
|
|
|
|
|
#set($dim = $entry.size.scaled($thmb))
|
|
|
|
|
<div class="photo">
|
2008-12-29 01:13:02 +00:00
|
|
|
<span class="name"></span><br/>
|
2008-11-24 19:54:24 +00:00
|
|
|
<a href="$entry.name"><img src="$entry.name?size=$thmb" border="0" width="$dim.width" height="$dim.height"/></a><br/>
|
|
|
|
|
<span class="caption">$!entry.caption</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|