This repository has been archived by the owner on Aug 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·51 lines (50 loc) · 2.54 KB
/
header.php
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="sixpoints.pl">
<title>OHIF Website</title>
<link href='http://fonts.googleapis.com/css?family=Sanchez:400,700,400italic&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link href="bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="stylesheets/app.css" />
<script src="bower_components/modernizr/modernizr.js"></script>
</head>
<body>
<header>
<nav class="top-bar" data-topbar role="navigation">
<ul class="title-area">
<li class="name">
<h1><a href="index.php"><img src="img/logo.png"></a></h1>
</li>
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li class="has-dropdown <?php if (@$p == 'solution') { echo 'active'; } ?>"><a href="#">Solution</a>
<ul class="dropdown">
<!-- <li><a href="#build">Product overview </a></li>-->
<li><a href="for-developers.php">For Developers </a></li>
<li><a href="for-managers.php">For Managers </a></li>
<li><a href="for-radiologists.php">For Radiologists</a></li>
<li><a href="for-imaging-pro.php">For Imaging Professional</a></li>
</ul></li>
<li><a href="http://chafey.github.io/cornerstoneDemo/" target="_blank">Demo</a></li>
<li class="has-dropdown <?php if (@$p == 'about') { echo 'active'; } ?>"><a href="about-us.php">About us</a>
<ul class="dropdown">
<li><a href="about-us.php">Story </a></li>
<li><a href="contact.php">Contact</a></li>
</ul></li></li>
<li><a href="/forum">Forum</a></li>
<li class="has-form">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="NQXLPHWKCY4CC">
<button type="submit" class="button orange-bg radius">Donate</button>
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</li>
</ul>
</section>
</nav>
</header>