summaryrefslogtreecommitdiff
path: root/gallery.php
blob: 3def82c798188f6ee97d7d24f77b7bedfa4ee176 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<?php
  include('includes/common.php');

  $append = '';
  if (isset($_GET['dir'])) { $append = $_GET['dir'];  }
  placeHeader('Gallery' . $append);

  include('gallery/galerie.php');

  placeFooter();
?>