-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.php
83 lines (68 loc) · 3 KB
/
gallery.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
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/*
Template Name: Gallery
*/
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 class="active"><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">
<!-- ======= Main page ======= -->
<div class="span12 gallery" id="main">
<!-- Get content -->
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!-- Single entry -->
<section <?php post_class() ?> id="post-<?php the_ID(); ?>">
<!-- Title of post -->
<div class="page-header">
<h1><a href="<?php the_permalink() ?>"
rel="bookmark"
title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
</div><!-- </page-header> -->
<!-- Entry -->
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<!-- Tags -->
<p class="postmetadata">
<?php the_tags('<strong>Tags:</strong> ', ', ', '<br />'); ?>
</p>
</section><!-- </post> -->
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div><!-- </span12> -->
</div><!-- </row> -->
<div class="footer_art">
</div><!-- </footer_art> -->
</div><!-- </container> -->
<?php get_footer(); ?>
<?php // vim: set textwidth=120 ts=2 sw=2: ?>