This commit is contained in:
Claude 2012-05-01 18:25:21 +02:00
parent cb80e53a9e
commit e9e271e585
2 changed files with 9 additions and 4 deletions

View File

@ -42,9 +42,7 @@ $this->carabiner->display('css');
<body>
<div class="paste">
<p>Data provided by <a href="<?php echo base_url(); ?>" target="_top">Stikked</a>
- <a href="<?php echo site_url('view/download/' . $pid); ?>">Download Raw</a>
- <a href="<?php echo site_url('view/' . $pid); ?>" target="_top">See Original</a></p>
<p><a href="<?php echo site_url('view/' . $pid); ?>" target="_top">This paste</a> brought to you by <a href="<?php echo base_url(); ?>" target="_top"><?php echo $this->config->item('site_name'); ?></a>. <a class="right" href="<?php echo site_url('view/raw/' . $pid); ?>">View Raw</a></p>
<div class="text_formatted">
<div class="container">
<?php echo $paste; ?>

View File

@ -1,4 +1,7 @@
body {
}
.paste {
margin: 0 auto;
width: auto;
@ -13,6 +16,10 @@
.paste p {
clear: both;
background: #ccc;
padding: 0 6px;
padding: 3px 6px;
}
.paste .right {
float: right;
}