mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 22:03:49 -07:00
parent
383ab0d356
commit
7c2b5c75b5
2 changed files with 50 additions and 32 deletions
|
@ -1,28 +1,46 @@
|
|||
<style type="text/css">
|
||||
#torhelp .catTitle { color: #AC0000; }
|
||||
#torhelp ul { padding: 6px 20px 4px; }
|
||||
#torhelp li { padding-bottom: 2px; }
|
||||
#torhelp a { text-decoration: none; color: #444444; }
|
||||
#torhelp p { padding-left: 10px; }
|
||||
#torhelp .catTitle {
|
||||
color: #AC0000;
|
||||
}
|
||||
|
||||
#torhelp ul {
|
||||
padding: 6px 20px 4px;
|
||||
}
|
||||
|
||||
#torhelp li {
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
#torhelp a {
|
||||
text-decoration: none;
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
#torhelp p {
|
||||
padding-left: 10px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div id="torhelp">
|
||||
|
||||
<table class="bordered bCenter w100">
|
||||
<tr><td class="catTitle">{L_TORHELP_TITLE}</td></tr>
|
||||
<tr>
|
||||
<td class="med bold row1 pad_8">
|
||||
<p class="normal floatR">[
|
||||
<a href="#" onclick="
|
||||
var timestamp = Math.floor((new Date()) / 1000);
|
||||
setCookie('torhelp', (timestamp + 20*60));
|
||||
$('#torhelp').hide('normal');
|
||||
return false;
|
||||
">{L_HIDE}</a>
|
||||
]</p>
|
||||
<ul><li>{TORHELP_TOPICS}</li></ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table class="bordered bCenter w100">
|
||||
<tr>
|
||||
<td class="catTitle">{L_TORHELP_TITLE}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="med bold row1 pad_8">
|
||||
<p class="normal floatR">[ <a href="#" onclick="tor_help(); return false;">{L_HIDE}</a> ]</p>
|
||||
<ul>
|
||||
<li>{TORHELP_TOPICS}</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><!--/torhelp-->
|
||||
|
||||
<script type="text/javascript">
|
||||
function tor_help() {
|
||||
let timestamp = Math.floor((new Date()) / 1000);
|
||||
setCookie('torhelp', (timestamp + 20 * 60));
|
||||
$('#torhelp').hide('normal');
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
<!-- IF postrow.IS_FIRST_POST -->
|
||||
<div>
|
||||
<fieldset class="attach">
|
||||
<legend>{L_DOWNLOAD}</legend>
|
||||
<h1 class="attach_link"><a href="profile.php?mode=register" style="color: brown;">{L_DOWNLOAD_INFO}</a></h1>
|
||||
<p id="guest-dl-tip" class="attach_comment med">
|
||||
<a href="{$bb_cfg['how_to_download_url_help']}" class="med"><b>{L_HOW_TO_DOWNLOAD}</b></a> ·
|
||||
<a href="{$bb_cfg['what_is_torrent_url_help']}" class="med"><b>{L_WHAT_IS_A_TORRENT}</b></a> ·
|
||||
<a href="{$bb_cfg['ratio_url_help']}" class="med"><b>{L_RATINGS_AND_LIMITATIONS}</b></a><br />
|
||||
</p>
|
||||
</fieldset>
|
||||
<fieldset class="attach">
|
||||
<legend>{L_DOWNLOAD}</legend>
|
||||
<h1 class="attach_link"><a href="{U_REGISTER}" style="color: brown;">{L_DOWNLOAD_INFO}</a></h1>
|
||||
<p id="guest-dl-tip" class="attach_comment med">
|
||||
<a href="{$bb_cfg['how_to_download_url_help']}" class="med"><b>{L_HOW_TO_DOWNLOAD}</b></a> ·
|
||||
<a href="{$bb_cfg['what_is_torrent_url_help']}" class="med"><b>{L_WHAT_IS_A_TORRENT}</b></a> ·
|
||||
<a href="{$bb_cfg['ratio_url_help']}" class="med"><b>{L_RATINGS_AND_LIMITATIONS}</b></a><br/>
|
||||
</p>
|
||||
</fieldset>
|
||||
</div>
|
||||
<!-- ENDIF -->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue