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

Last change on this file since 5931 was 5931, checked in by nikrou, 14 years ago

Fix some errors in generated html

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