File: /var/www/hcv/wp-content/themes/hockey/header.php
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
  <meta charset="<?php bloginfo( 'charset' ); ?>" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>
    <?= wp_title() ?>
  </title>
  <?php wp_head(); ?>
  <link href="<?= THEMEROOT . 'frontend/css/styles.css' ?>" rel="stylesheet">
  <?php
  $html = '<script type="text/javascript">';
  $html .= 'var ajaxurl = "' . admin_url('admin-ajax.php') . '";';
  $html .= 'var themeurl = "' . get_template_directory_uri() . '";';
  $html .= 'var siteurl = "' . get_site_url() . '";';
  $html .= '</script>';
  echo $html;
  ?>
</head>
<body <?php body_class(); ?> id="<?php the_ID() ?>">