File: /home/awaldron/_domains/michaelhorowitzmd.com/index.php
<?php
//echo '<pre>', print_r($_SERVER), '</pre>';
$topic = strlen($_SERVER['REQUEST_URI']) > 1 ? substr($_SERVER['REQUEST_URI'],1) : false;
?>
<!DOCTYPE html>
<!--[if IE 7]><html class="no-js ie7 oldie" lang="en-US"> <![endif]-->
<!--[if IE 8]><html class="no-js ie8 oldie" lang="en-US"> <![endif]-->
<!--[if gt IE 8]><!-->
<html lang="en">
<head>
<meta charset="utf-8">
<!-- TITLE OF SITE-->
<title>Michael Horowitz MD, Neurosurgeon, First Coast Neurosurgery - Orange Park, FL</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Dr. Michael Horowitz is a Neurosurgeon and Stroke specialist at Lee Health System in Fort Myers, FL">
<meta name="author" content="Alan Waldron, Build in Motion">
<link rel="shortcut icon" href="/icons/favicon.ico">
<link rel="apple-touch-icon" href="https://www.leehealth.org//images/icons/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="https://www.leehealth.org//images/icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="https://www.leehealth.org//images/icons/apple-touch-icon-114x114.png">
<link href="assets/css/materialize.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/animate.css">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/responsive.css" rel="stylesheet">
<!--[if lt IE 9]><script src="assets/js/ie8-responsive-file-warning.js"></script><![endif] -->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<script src="https://kit.fontawesome.com/6f308f91bc.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-148039872-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-148039872-1');
</script>
<style>
.img-polaroid { border: solid 1px #BBB; }
</style>
</head>
<body>
<!-- Start Container-->
<div class="container">
<!-- row -->
<div class="row">
<!-- =========================================
SIDEBAR
==========================================-->
<?php include "sections/_sidebar.php"; ?>
<section class="col s12 m12 l8 section">
<div class="row">
<!-- ========================================
CONDITIONS TREATED
==========================================-->
<?php if ($topic) {
include "sections/_title.php";
include "sections/videos.php";
include "sections/topics.php";
} ?>
<!-- ========================================
CONDITIONS TREATED
==========================================-->
<?php if (!$topic) include "sections/nav.php"; ?>
<!-- ========================================
Accepted Insurance Plans
==========================================-->
<?php include "sections/insurance.php"; ?>
<!-- ========================================
APPOINTMENTS
==========================================-->
<?php include "sections/appointments.php"; ?>
<!-- ========================================
Biography
==========================================-->
<?php include "sections/biography.php"; ?>
<!-- =========================================
Work experiences
==========================================-->
<?php include "sections/experience.php"; ?>
<!-- ========================================
Education
==========================================-->
<?php include "sections/education.php"; ?>
<!-- ========================================
MALPRACTICE RECORD
==========================================-->
<?php include "sections/malpractice.php"; ?>
<!-- ========================================
Media Coverage
==========================================-->
<?php include "sections/media.php"; ?>
<!-- ========================================
Video Library
==========================================-->
<?php if (!$topic) include "sections/videos.php"; ?>
<!-- ========================================
TOPIC REVIEWS Library
==========================================-->
<?php if (!$topic) include "sections/topics.php"; ?>
<!-- ========================================
Patents
==========================================-->
<?php include "sections/patents.php"; ?>
<!-- ========================================
Articles
==========================================-->
<?php include "sections/articles.php"; ?>
<!-- ========================================
Footer
==========================================-->
<div class="section-wrapper z-depth-1">
<div class="custom-content col s12 m12 l12 fadeIn a1" style="text-align: center">
<p> <br>Copyright © <?=date('Y')?> Michael Horowitz MD. All rights reserved.
<br><a href="https://www.buildinmotion.com/?utm_source=dr-horowitz&utm_medium=site-footer&utm_campaign=client-referral" target="_blank">Crafted by Build in Motion</a></p>
</div>
</div>
</div><!-- end row -->
</section><!-- end section -->
</div> <!-- end row -->
</div> <!-- end container -->
<!--=====================
JavaScript
===================== -->
<!-- Jquery core js-->
<script src="assets/js/jquery.min.js"></script>
<!-- materialize js-->
<script src="assets/js/materialize.min.js"></script>
<!-- js-->
<script src="assets/js/wow.min.js"></script>
<!-- Map api -->
<!-- <script src="//maps.googleapis.com/maps/api/js?v=3.exp"></script>-->
<!-- Masonry js-->
<script src="assets/js/masonry.pkgd.js"></script>
<script src="assets/js/validator.min.js"></script>
<!-- Customized js -->
<script src="assets/js/init.js"></script>
<script type="text/javascript">
const randomInt = (min, max) => {
return Math.floor(Math.random() * (max - min + 1)) + min;
};
const randomColor = (( hue ) => {
"use strict";
console.log('hue', hue);
return () => {
var h = hue; //randomInt(0, 360);
var s = randomInt(30, 70);
var l = randomInt(40, 65);
return `hsl(${h},${s}%,${l}%)`;
};
})();
$(document).ready(function() {
$('#logo-hover').hover(
function() { $('.lhs-logo-off, .lhs-logo-on').toggle(); },
function() { $('.lhs-logo-off, .lhs-logo-on').toggle(); }
);
$('.topic').each( function( i ) {
var h = randomInt(0, 360);
var s = 90;
var l = 42; //randomInt(50, 80);
$(this).css('backgroundColor', `hsl(${h},${s}%,${l}%)`);
console.log('i',i);
});
});
</script>
</body>
</html>