This repository was archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewest.php
More file actions
56 lines (46 loc) · 1.51 KB
/
newest.php
File metadata and controls
56 lines (46 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
<?php
if ( ! defined( 'WEBPATH' ) ) {
die();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">
<?php npgFilters::apply( 'theme_head' ); ?>
<title>Newest Images | <?php printGalleryTitle(); ?></title>
<?php require '_scripts.php'; ?>
</head>
<?php require '_header.php'; ?>
<main id="main" class="site-main">
<article class="post type-post status-publish format-standard hentry ast-article-single" id="post-17379" itemtype="https://schema.org/CreativeWork" itemscope="itemscope">
<div class="ast-post-format- single-layout-1">
<header class="entry-header">
<div class="ast-single-post-order">
<h1 class="entry-title" itemprop="headline">Newest Albums</h1>
<div class="entry-meta">
By <span class="posted-by vcard author" itemtype="https://schema.org/Person" itemscope="itemscope" itemprop="author">the Fans of LeFox Librarians</span>
</div>
</div>
</header>
<div class="entry-content clear" itemprop="text">
<!-- Content begins -->
<div id="padbox">
<?php
if ( function_exists( 'printLatestUpdatedAlbums' ) ) {
printLatestUpdatedAlbums( 4, true, true );
}
?>
</div> <!-- PadBox -->
<!-- Content Ends -->
</div>
</div>
</article>
</main>
<?php
require '_sidebar.php';
require '_footer.php';
?>
<?php npgFilters::apply( 'theme_body_close' ); ?>
</body>
</html>