source: trunk/admin/themes/default/template/photos_add_ploader.tpl @ 10511

Last change on this file since 10511 was 9586, checked in by patdenice, 13 years ago

feature:2114
Simplify all admin templates.

File size: 1.7 KB
Line 
1{footer_script}{literal}
2jQuery().ready(function(){
3  jQuery("#pLoaderPage  img").fadeTo("fast", 0.6);
4
5  jQuery("#pLoaderPage  img").hover(
6    function(){
7      jQuery(this).fadeTo("fast", 1.0); // Opacity on hover
8    },
9    function(){
10      jQuery(this).fadeTo("fast", 0.6); // Opacity on mouseout
11    }
12  );
13});
14{/literal}{/footer_script}
15
16{html_head}{literal}
17<style type="text/css">
18#pLoaderPage {
19  width:600px;
20  margin:0 auto;
21  font-size:1.1em;
22}
23
24#pLoaderPage P {
25  text-align:left;
26}
27
28#pLoaderPage .downloads {
29  margin:10px auto 0 auto;
30}
31
32#pLoaderPage .downloads A {
33  display:block;
34  width:150px;
35  text-align:center;
36  font-size:16px;
37  font-weight:bold;
38}
39
40#pLoaderPage .downloads A:hover {
41  border:none;
42}
43
44#pLoaderPage LI {
45  margin:20px;
46}
47</style>
48{/literal}{/html_head}
49
50<div class="titrePage">
51  <h2>{'Piwigo Uploader'|@translate}</h2>
52</div>
53
54<div id="pLoaderPage">
55<p>{'pLoader stands for <em>Piwigo Uploader</em>. From your computer, pLoader prepares your photos and transfer them to your Piwigo photo gallery.'|@translate}</p>
56
57<ol>
58  <li>
59    {'Download,'|@translate}
60
61<table class="downloads">
62  <tr>
63    <td>
64      <a href="{$URL_DOWNLOAD_WINDOWS}">
65        <img src="http://piwigo.org/screenshots/windows.png" alt="windows">
66        <br>Windows
67      </a>
68    <td>
69    <td>
70      <a href="{$URL_DOWNLOAD_MAC}">
71        <img src="http://piwigo.org/screenshots/mac.png" alt="mac">
72        <br>Mac
73      </a>
74    <td>
75    <td>
76      <a href="{$URL_DOWNLOAD_LINUX}">
77        <img src="http://piwigo.org/screenshots/linux.png" alt="linux">
78        <br>Linux
79      </a>
80    <td>
81  </tr>
82</table>
83
84  </li>
85  <li>{'Install on your computer,'|@translate}</li>
86  <li>{'Start pLoader and add your photos.'|@translate}</li>
87</ol>
88</div>
Note: See TracBrowser for help on using the repository browser.