Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
Latest commit
44 lines (38 loc) · 1.99 KB
/
Copy pathheader.php
File metadata and controls
44 lines (38 loc) · 1.99 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
* Gnuplotting.org
* header.php, adds the metadata and the header with title image
**/
?>
<!DOCTYPE html>
<html <?phplanguage_attributes('html'); ?>>
<head>
<meta http-equiv="Content-Type" content="<?phpbloginfo('html_type'); ?>; charset=<?phpbloginfo('charset'); ?>" />
<title><?phpwp_title('«', true, 'right'); ?><?phpbloginfo('name'); ?></title>
<link rel="shortcut icon" href="<?phpbloginfo('stylesheet_directory'); ?>/img/favicon.ico"/>
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.gnuplotting.org/feed/"/>
<!-- Adding google code prettifier -->
<link href="<?phpbloginfo('stylesheet_directory'); ?>/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<link href="<?phpbloginfo('stylesheet_directory'); ?>/css/font-awesome.min.css" type="text/css" rel="stylesheet" />
<link href="<?phpbloginfo('stylesheet_directory'); ?>/css/prettify.css" type="text/css" rel="stylesheet" />
<link href="<?phpbloginfo('stylesheet_directory'); ?>/style.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="<?phpbloginfo('stylesheet_directory'); ?>/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="<?phpbloginfo('stylesheet_directory'); ?>/js/prettify.js"></script>
<script type="text/javascript" src="<?phpbloginfo('stylesheet_directory'); ?>/js/bootstrap.min.js"></script>
<link rel="pingback" href="<?phpbloginfo('pingback_url'); ?>" />
<?phpwp_head(); ?>
<!--[if lt IE 9]>
<script src="<?phpbloginfo('stylesheet_directory'); ?>/js/html5shiv.js"></script>
<![endif]-->
</head>
<body <?phpbody_class(); ?> onload="prettyPrint()">
<!-- ======= Header ======= -->
<header id="overview">
<div class="container image">
</div><!-- </container> -->
<div class="container">
<h1><a href="<?phpechosite_url(); ?>">Gnuplotting</a></h1>
<p class="lead">Create scientific plots using gnuplot</p>
</div><!-- container -->
</header>
<?php// vim: set textwidth=120 ts=2 sw=2: ?>