D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
stage
/
storage
/
framework
/
views
/
Filename :
601b79c3e4f2559029ae97a53d476e9a67391215.php
back
Copy
<!Doctype html> <html> <head> <meta charset="utf-8"> <title>Tattoo print</title> <!-- Styles --> <link href="<?php echo e(asset('bootstrap/css/bootstrap.min.css')); ?>" rel="stylesheet"> <link href="<?php echo e(asset('css/print.css')); ?>" rel="stylesheet"> <script src="<?php echo e(asset('js/jquery-2.1.3.min.js')); ?>"></script> <script type="text/javascript"> $(document).ready(function(){ //Check if the current URL contains '#' if(document.URL.indexOf("#")==-1){ // Set the URL to whatever it was plus "#". url = document.URL+"#"; location = "#"; //Reload the page location.reload(true); } }); </script> </head> <body id="cell"> <div class="print"> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td width="38px"> <div class="cm">cm</div> </td> <td height="38px"> <div class="sizes_h"> <?php for($i=0; $i<=$width; $i++): ?> <span class="si_h"><?php echo e($i); ?></span> <?php endfor; ?> </div> </td> </tr> <tr> <td width="38px"> <div class="sizes_w"> <?php for($i=0; $i<=$height; $i++): ?> <span class="si_w"><?php echo e($i); ?></span> <?php endfor; ?> </div> </td> <td valign="top" align="left"> <img id="pic" class="<?php echo e($pic_class); ?>" src="<?php echo e($cookie_picture->picture); ?>" width="<?php echo e($width*38); ?>" height="<?php echo e($height*38); ?>"/> </td> </tr> </table> </div> </body> </html>