source: extensions/piwishack/template/controller.tpl @ 18316

Last change on this file since 18316 was 18316, checked in by Gotcha, 12 years ago

New icons, simplify the popup

File size: 2.2 KB
Line 
1<link rel="stylesheet" type="text/css" href="{$ROOT_URL}plugins/{$PLUGIN_NAME}/template/controller.css">
2
3<script type="text/javascript">
4if (window.opener==null)
5{ldelim}
6  window.close();
7  document.write("<h2>How did you get here ???</h2>");
8}
9
10function unloadPage()
11{ldelim}
12  window.opener.location = window.opener.location + "&{$PLUGIN_NAME}=closing";
13}
14window.onunload = unloadPage;
15
16</script>
17<div id="content">
18  <div class="titrePage">
19    <p><h2><span class="title_plugin">PiwiShack</span></h2></p>
20  </div>
21<fieldset class="name_share">
22  <legend>{'Partage_me'|@translate}</legend>
23  <span class="title_bloc">{'text_intro_thumbnail'|@translate}</span>
24  <table align="center">
25    <tr>
26      <td class="img_share">
27        <img src="../piwishack/icon/thumbnail.png" alt="Piwishack thumbnail" width=128 height=128/>
28      </td>
29      <td>
30        <div class="txt_share">{'Post_on_a_website'|@translate}</div>
31          <form>
32            <textarea name="thumb_Post_on_a_website" cols="140" rows="4" onclick="select()"></textarea>
33          </form>
34            <br>
35        <div class="txt_share">{'Post_on_a_forum'|@translate}</div>
36          <form>
37            <textarea name="thumb_Post_on_a_forum" cols="140" rows="3" onclick="select()"></textarea>
38          </form>
39      </td>
40    </tr>
41  </table>
42  <hr />
43  <span class="title_bloc">{'text_intro_normal_view'|@translate}</span>
44  <table align="center">
45    <tr>
46      <td class="img_share">
47        <img src="../piwishack/icon/web.png" alt="Piwishack thumbnail" width=128 height=128/>
48          </td>
49          <td>
50      <div class="txt_share">{'Post_on_a_website_dd'|@translate}</div>
51      <form>
52        <textarea name="view_Post_on_a_website" cols="140" rows="4" onclick="select()"></textarea>
53      </form>
54        <br>
55      <div class="txt_share">{'Post_on_a_forum'|@translate}</div>
56      <form>
57        <textarea name="view_Post_on_a_forum" cols="140" rows="3" onclick="select()"></textarea>
58      </form>        <br>
59      <div class="txt_share">{'Post_a_direct_link'|@translate}</div>
60      <form>
61        <textarea name="view_Direct_link" cols="140" rows="2" onclick="select()"></textarea>
62      </form>
63      </td>
64    </tr>
65  </table>
66</fieldset>
67</div>
Note: See TracBrowser for help on using the repository browser.