This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| $cookie_name = "username"; | |
| $cookie_value = "devuser"; | |
| setcookie($cookie_name, $cookie_value, time()+3600); | |
| ?> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <header id="wrap-head" class="header <?php if ( is_user_logged_in() && is_admin_bar_showing() ) { echo 'logged-in'; } ?>"> | |
| </header> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <div class="featurewrap"> | |
| <div class="feature"> | |
| <?php | |
| $args = array( | |
| 'post_type' => 'post', | |
| 'tag' => 'blog' | |
| ); | |
| $quote_query = new WP_Query($args); ?> | |
| <div class="carousel testimonials slide-group-1" data-transition="fade" data-interval="9000"> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <app-root> | |
| <style type="text/css"> | |
| #pre-load { | |
| background-color: #484848; | |
| position: fixed; | |
| top: 0; | |
| right: 0; | |
| bottom: 0; | |
| left: 0; | |
| z-index: 999999; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | var people=[] | |
| people[0]={name:"Will", age:31} | |
| people[1]={name:"Edward", age:17} | |
| people[2]={name:"Christine", age:58} | |
| people[3]={name:"George", age:62} | |
| people.sort(function(a, b){ | |
| return a.age-b.age | |
| } |