Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. #sidebar {
  2. background-color: #eaeaea;
  3. width: 18.5vw;
  4. height: 100vh;
  5. position: fixed;
  6. align-items: stretch;
  7. }
  8.  
  9. <?php
  10. /**
  11. * The Template for displaying job details
  12. *
  13. * Override this template by copying it to yourtheme/simple_job_board/single-jobpost.php
  14. *
  15. * @author PressTigers
  16. * @package Simple_Job_Board
  17. * @subpackage Simple_Job_Board/Templates
  18. * @version 1.1.0
  19. * @since 2.2.0
  20. * @since 2.2.3 Enqueued Front Styles & Revised the HTML structure.
  21. * @since 2.2.4 Enqueued Front end Scripts.
  22. * @since 2.3.0 Added "sjb_archive_template" filter.
  23. */
  24. get_header(); ?>
  25.  
  26. <img src = '<?php bloginfo('template_directory'); ?>/images/nieuwspagina-header.png' class="not-front-page-header" />
  27.  
  28. <div class="match-wrapper">
  29.  
  30. <?php
  31. ob_start();
  32. global $post;
  33.  
  34. /**
  35. * Enqueue Frontend Scripts.
  36. *
  37. * @since 2.2.4
  38. */
  39. do_action('sjb_enqueue_scripts');
  40.  
  41. /*code continues....
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement