-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspecimenpage.php
More file actions
25 lines (23 loc) · 1.09 KB
/
Copy pathspecimenpage.php
File metadata and controls
25 lines (23 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<title><?php echo $_GET['searchterm']; ?>MassBase - Specimen Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Bree+Serif|Merriweather:400,300,300italic,400italic,700,700italic' rel='stylesheet' type='text/css'>
<link href="_/css/bootstrap.css" rel="stylesheet" media="screen">
<link href="_/css/mystyles.css" rel="stylesheet" media="screen">
</head>
<body id="search">
<section class="container">
<div class="content row">
<?php include "_/components/php/header-specimen.php"; ?>
<section class="main col col-lg-12">
<?php include "_/components/php/query-specimen.php"; ?>
<?php include "_/components/php/content-specimendetails.php"; ?>
</section>
</div><!-- content -->
</section><!-- container -->
<script src="_/js/bootstrap.js"></script>
<script src="_/js/myscript.js"></script>
</body>
</html>