diff options
author | plegall <plg@piwigo.org> | 2010-03-14 23:56:21 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-14 23:56:21 +0000 |
commit | b95eebbe1809fa74e333df85549c18d77fff7811 (patch) | |
tree | e4e5e2923f4ea6080871927c9aa462ff62e04a8a /themes/default/template | |
parent | 59d9c085aa6a86961f53055f7a1936a16f576712 (diff) |
feature 1505: when there is no photo yet in the gallery, displays a big and
obvious message, guiding to the Administration>Images>Add page.
git-svn-id: http://piwigo.org/svn/trunk@5138 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template')
-rw-r--r-- | themes/default/template/no_photo_yet.tpl | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/themes/default/template/no_photo_yet.tpl b/themes/default/template/no_photo_yet.tpl new file mode 100644 index 000000000..1ced9efca --- /dev/null +++ b/themes/default/template/no_photo_yet.tpl @@ -0,0 +1,64 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +<title>Piwigo, {'Welcome'|@translate}</title> +{literal} +<style type="text/css"> +body { +margin: 0; +padding: 0; +background-color:#111; +} + +#global { +position:absolute; +left: 50%; +top: 50%; +width: 700px; +height: 400px; +margin-top: -200px; /* height half */ +margin-left: -350px; /* width half */ + +background-color: #eee; +background: #222222; +border:2px solid #FF3363; +} + +#noPhotoWelcome {font-size:25px; color:#888;text-align:center; letter-spacing:1px; margin-top:30px;} +.bigButton {} + +.bigButton {text-align:center; margin-top:130px;} + +.bigButton a { + background-color:#333; + padding:10px; + text-decoration:none; + margin:0px 5px 0px 5px; + -moz-border-radius:6px; + -webkit-border-radius:6px; + color:#ff7700; + font-size:25px; + letter-spacing:2px; + padding:20px; +} + +.bigButton a:hover { + background-color:#444; + outline:none; + color:#ff3333; +} +</style> +{/literal} + +</head> + +<body> +<div id="global"> +<p id="noPhotoWelcome">{'Welcome to your Piwigo photo gallery!'|@translate}</p> +<div class="bigButton"><a href="{$next_step_url}">{'Add Photos'|@translate}</a></div> +</div> +</body> + +</html> + |