source: trunk/themes/default/template/no_photo_yet.tpl @ 5138

Last change on this file since 5138 was 5138, checked in by plg, 14 years ago

feature 1505: when there is no photo yet in the gallery, displays a big and
obvious message, guiding to the Administration>Images>Add page.

File size: 1.3 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5<title>Piwigo, {'Welcome'|@translate}</title>
6{literal}
7<style type="text/css">
8body {
9margin: 0;
10padding: 0;
11background-color:#111;
12}
13
14#global {
15position:absolute;
16left: 50%;
17top: 50%;
18width: 700px;
19height: 400px;
20margin-top: -200px; /* height half */
21margin-left: -350px; /* width half */
22
23background-color: #eee;
24background: #222222;
25border:2px solid #FF3363;
26}
27
28#noPhotoWelcome {font-size:25px; color:#888;text-align:center; letter-spacing:1px; margin-top:30px;}
29.bigButton {}
30
31.bigButton {text-align:center; margin-top:130px;}
32
33.bigButton a {
34    background-color:#333;
35    padding:10px;
36    text-decoration:none;
37    margin:0px 5px 0px 5px;
38    -moz-border-radius:6px;
39    -webkit-border-radius:6px;
40    color:#ff7700;
41    font-size:25px;
42    letter-spacing:2px;
43    padding:20px;
44}
45
46.bigButton a:hover {
47    background-color:#444;
48    outline:none;
49    color:#ff3333;
50}
51</style>
52{/literal}
53
54</head>
55
56<body>
57<div id="global">
58<p id="noPhotoWelcome">{'Welcome to your Piwigo photo gallery!'|@translate}</p>
59<div class="bigButton"><a href="{$next_step_url}">{'Add Photos'|@translate}</a></div>
60</div>
61</body>
62
63</html>
64
Note: See TracBrowser for help on using the repository browser.