yacreader/release/server/templates/libraries.tpl
Felix Kauselmann 1b344d70e5 Update server code integration for QtWebApp 1.7.11
- Adapt server code for QtWebapp namespace 'stefanfrings'
- Implement custom modifications needed by v1 controller
  via template engine
- Unify iphone and ipad templates
2020-08-20 18:22:57 +02:00

28 lines
1009 B
Smarty

<!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" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="/css/reset.css" type="text/css" />
<link rel="stylesheet" href="/css/styles_{device}.css" type="text/css" />
<title>Libraries</title>
</head>
<body>
<div id="contentLibraries">
<h1>Libraries</h1>
<p>
<ul id="librariesList">
{loop library}
<li>
<div class="library-icon"> <img width="14px" height="18px" src="../images/library{display}.png" /> </div>
<div class="library-link"> {library.label} </div>
<div class="library-indicator"> <img width="5px" height="9px" src="../images/indicator{display}.png" /> </div>
<a href="/library/{library.name}/folder/1">&nbsp;</a>
<div class="clear">&nbsp;</div>
</li>
{end library}
</ul>
</p>
</div>
</body>
</html>