-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
70 lines (53 loc) · 2.23 KB
/
404.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
/**
* Gnuplotting.org
* 404.php, page loading error
**/
get_header(); ?>
<!-- ======= Main Content ======= -->
<div class="container">
<!-- ======= Navbar ======= -->
<ul class="nav nav-pills">
<li><a href="<?php echo site_url(); ?>">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Gnuplot basics<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="<?php echo site_url(); ?>/plotting-functions/">Plotting functions</a></li>
<li><a href="<?php echo site_url(); ?>/plotting-data/">Plotting data</a></li>
<li><a href="<?php echo site_url(); ?>/output-terminals/">Output terminals</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Manpages<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="<?php echo site_url(); ?>/manpage-gnuplot-4-6/">Gnuplot 4.6</a></li>
<li><a href="http://gnuplot.info/docs_5.0/gnuplot.pdf">Gnuplot 5.0</a></li>
<li><a href="http://gnuplot.info/docs_5.2/Gnuplot_5.2.pdf">Gnuplot 5.2</a></li>
</ul>
</li>
<!--<li><a href="<?php echo site_url(); ?>/gallery.html">Gallery</a></li>-->
<li><a href="<?php echo site_url(); ?>/about/">About</a></li>
<?php if (is_user_logged_in()) { ?><li><a href="<?php echo site_url(); ?>/wp-admin">Dashboard <i class="icon-arrow-right"></i></a></li><?php } ?>
</ul>
<!-- Grid for main content and sidebar -->
<div class="row">
<!-- ======= Sidebar ======= -->
<div class="span3 sidebar">
<?php get_sidebar(); ?>
</div><!-- </span3> -->
<!-- ======= Main page ======= -->
<div class="span9" id="main">
<div id="content" class="narrowcolumn">
<br/>
<br/>
<br/>
<h2 class="center">Error 404 - Not Found</h2>
<p class="center">Oops, it seems that the desired address is not available. <img src="<?php bloginfo('stylesheet_directory'); ?>/img/404.png"/> </p>
</div>
</div><!-- </span9> -->
</div><!-- </row> -->
<div class="footer_art">
</div><!-- </footer_art> -->
</div><!-- </container> -->
<?php get_footer(); ?>
<?php // vim: set textwidth=120 ts=2 sw=2: ?>