PerlaTheDog/index.php

45 lines
1.1 KiB
PHP
Raw Normal View History

<?php
include(__DIR__ . '/assets/config.php');
?>
2022-12-01 02:10:16 -08:00
<!DOCTYPE HTML>
<html>
<head>
<title><?php echo title ?></title>
2022-12-19 00:50:21 -08:00
<?php
include(__DIR__ . '/assets/includes/header.php');
?>
<meta name="description" content="Pictures Of <?php echo title ?>">
<meta property="og:url" content="https://perlathedog.com">
<meta property="og:type" content="website">
<meta property="og:title" content="<?php echo title ?>">
<meta property="og:description" content="Pictures Of <?php echo title ?>">
2022-12-01 02:10:16 -08:00
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<h1><a href="/"><strong><?php echo title ?></strong></a></h1>
<nav>
<ul>
2022-12-22 17:18:53 -08:00
<?php
include(__DIR__ . '/assets/includes/menu.php');
?>
</ul>
</nav>
</header>
<!-- Main -->
<div id="main">
2022-12-27 01:20:12 -08:00
<article class="thumb">
2023-01-01 06:29:47 -08:00
<a href="/img/fulls/IMG_4947.webp" class="image"><img src="/img/previews/IMG_4947.webp" alt="" /></a>
<h2>January 1st @ 12:16AM</h2> </article>
</div>
</div>
2022-12-19 00:50:21 -08:00
<?php
2022-12-18 19:56:39 -08:00
include(__DIR__ . '/assets/includes/footer.php');
?>
2022-12-19 00:50:21 -08:00
</html>