Advertisement
Guest User

Morgenkåbe

a guest
Aug 28th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying all single posts.
  4. *
  5. * @package rcc
  6. */
  7.  
  8. get_header(); ?>
  9.  
  10. <div class="container">
  11. <div class="col-md-6 box">
  12. <div class="content project-comments">
  13. <?php while ( have_posts() ) : the_post(); ?>
  14.  
  15. <h1><?php the_title(); ?></h1>
  16. <p style="color:#333; text-transform:uppercase; font-family: 'Montserrat', sans-serif; font-weight: 400;">beskrivelse</p>
  17. <p style="margin-top:20px;"><?php the_content(); ?></p>
  18.  
  19. <?php endwhile; // end of the loop. ?>
  20. </div>
  21. <form role="form" style="margin-top:20px; margin-bottom:20px; display:block;">
  22. <div class="form-group" style="margin-top:50px; border-top:1px solid #ccc; padding-top:50px;">
  23. <p>Timer :</p>
  24. <input type="text" style="display:inline; float:left; width: 30%;" class="form-control" placeholder="00,00">
  25. <button type="submit" style="margin-bottom:20px; height: 34px; display:block; float:left" class="btn btn-default">TILFØJ</button>
  26. <p class="pull-right" style="padding-top:7px;">00,00 timer</p>
  27. </div>
  28. <div class="form-group" style="margin-top:50px; padding-top:50px;">
  29. <p>Billeder (kr.) :</p>
  30. <input type="text" style="display:inline; float:left; width: 30%;" class="form-control" placeholder="00,00 kr.">
  31. <button type="submit" style="margin-bottom:20px; height: 34px; display:block; float:left" class="btn btn-default">TILFØJ</button>
  32. <p class="pull-right" style="padding-top:7px;">00,00 kr.</p>
  33. </div>
  34. </form>
  35. <br><div class="clearfix"></div>
  36. <p class="default-p" style="margin-top:50px; border-top:1px solid #ccc; padding-top:50px;"><a href="<?php echo home_url(); ?>">til forsiden</a></p>
  37.  
  38. </div>
  39. <div class="col-md-6 box">
  40. <ul class="edit-inputs" style="margin-top:265px; border:1px solid #ccc; padding:20px; list-style:none;">
  41. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  42. <li>
  43. <p>Kunde : <input disabled=disabled type="text" value="<?php print_custom_field('client'); ?>"></p>
  44. </li>
  45. <li>
  46. <p>Antal : <input disabled=disabled type="text" value="<?php print_custom_field('amount'); ?>"></p>
  47. </li>
  48. <li>
  49. <p>Format : <input disabled=disabled type="text" value="<?php print_custom_field('format'); ?>"></p>
  50. </li>
  51. <li>
  52. <p>Farver : <input disabled=disabled type="text" value="<?php print_custom_field('color'); ?>"></p>
  53. </li>
  54. <li>
  55. <p>Materiale : <input disabled=disabled type="text" value="<?php print_custom_field('material'); ?>"></p>
  56. </li>
  57. <li>
  58. <p>Fysisk Pose : <input disabled=disabled type="text" value="<?php print_custom_field('physical'); ?>"></p>
  59. </li>
  60. <li>
  61. <p>Filer : <span><a style="font-size:14px;" href="/../firmaportal/licens.html" >Interne</a></span>, <span><a style="font-size:14px;" href="./eksterne/" >Eksterne</a></span></p>
  62. </li>
  63. <li>
  64. <p>Deadline : <input disabled=disabled type="text" value="<?php print_custom_field('deadline'); ?>"></p>
  65. </li>
  66. <?php endwhile ?>
  67. <?php endif ?>
  68. <div class="edit"><i class="fa fa-pencil"></i></div>
  69. <div class="update"><i class="fa fa-check"></i></div>
  70. </ul>
  71. <p style="margin-top:30px;">kommentarer</p>
  72. <?php comments_template(); ?>
  73.  
  74. </div>
  75. </div>
  76.  
  77. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement