18 lines
710 B
PHP
18 lines
710 B
PHP
<?php
|
|
|
|
$config = [
|
|
'page_title' => 'Route 8 - Stow' //html page title
|
|
];
|
|
|
|
$camList = [ //list of cam titles and urls - currently must be 6
|
|
['Hudson Dr', 'https://itscameras.dot.state.oh.us/images/CLE/CLE034.jpg'],
|
|
['Graham Rd', 'https://itscameras.dot.state.oh.us/images/CLE/CLE036a-L.jpg'],
|
|
['Hampshire Rd', 'https://itscameras.dot.state.oh.us/images/CLE/CLE040-L.jpg'],
|
|
['Steels Corners', 'https://itscameras.dot.state.oh.us/images/CLE/CLE038-L.jpg'],
|
|
['Barlow Rd', 'https://itscameras.dot.state.oh.us/images/CLE/CLE044-L.jpg'],
|
|
['SR 303', 'https://itscameras.dot.state.oh.us/images/CLE/CLE013-L.jpg']
|
|
];
|
|
|
|
$analytics_id = "f555d43e-3a6b-4960-b356-e389fb67dbac"; //for use with ping.ericfawcett.com
|
|
|
|
?>
|