mirror of
http://aero2k.de/repos/dfde-theme.git
synced 2017-09-06 15:25:40 +02:00
57 lines
995 B
HTML
57 lines
995 B
HTML
<!-- INCLUDE overall_header.html -->
|
|
|
|
<style type="text/css">
|
|
<!--
|
|
#pastebin_right {
|
|
float: right;
|
|
width: 21%;
|
|
}
|
|
#pastebin_left {
|
|
float: left;
|
|
width: 78%;
|
|
}
|
|
|
|
.latest_snippets {
|
|
|
|
}
|
|
.latest_snippets span {
|
|
color: #828282;
|
|
font-size: 9px;
|
|
}
|
|
-->
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
<!--
|
|
function toggle_moderate_snippet()
|
|
{
|
|
if (document.getElementById('moderate_snippet'))
|
|
{
|
|
document.getElementById('moderate_snippet').style.display = (document.getElementById('moderate_snippet').style.display == 'none') ? 'block' : 'none';
|
|
}
|
|
}
|
|
|
|
if (document.addEventListener)
|
|
{
|
|
document.addEventListener('DOMContentLoaded', toggle_moderate_snippet, false);
|
|
}
|
|
else
|
|
{
|
|
window.onload = toggle_moderate_snippet;
|
|
}
|
|
//-->
|
|
</script>
|
|
|
|
<div id="pagecontent">
|
|
|
|
<a href="./pastebin.php"><h2 class="solo">NoPaste</h2></a>
|
|
|
|
<!-- IF S_MODE eq 'view' -->
|
|
<!-- INCLUDE pastebin_view.html -->
|
|
<!-- ELSE -->
|
|
<!-- INCLUDE pastebin_post.html -->
|
|
<!-- ENDIF -->
|
|
|
|
</div>
|
|
|
|
<!-- INCLUDE overall_footer.html --> |