-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
26 lines (25 loc) · 1 KB
/
index.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
<?php
// DON'T REMOVE THIS
require_once('./_mg/php/mg_brain.php');
// needs to stay at the top because it sends a header
slideshow();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title><?= $mg_name ?> » <? current_file_cat(); ?> » <? my_iptc('title'); ?></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="generator" content="minimalGallery <?= $mg_version ?>" /> <!-- leave this for stats -->
<style type="text/css" media="screen">
@import url( ./_mg/templates/<?= $current_theme ?>/mg.css );
</style>
<script src="_mg/js/jquery.js" type="text/javascript" charset="utf-8"></script>
<script src="_mg/templates/<?= $current_theme ?>/mg.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div id="content">
<? @include("./_mg/templates/$current_theme/view_$current_view.php"); ?>
</div>
</body>
</html>