PerlaTheDog/index.php

44 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 ?>">
2023-01-09 09:47:41 -08:00
<meta property="og:url" content="/">
<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">
2023-09-09 12:44:33 -07:00
<h1><a href="/"><strong class="title"><?php echo title ?></strong></a></h1>
<nav>
<ul>
2022-12-22 17:18:53 -08:00
<?php
include(__DIR__ . '/assets/includes/menu.php');
2023-09-09 12:44:33 -07:00
?>
</ul>
</nav>
</header>
<!-- Main -->
<div id="main">
2023-09-09 12:44:33 -07:00
<article class="thumb">
<a href="/img/fulls/IMG_6325_624.webp" class="image"><img loading="lazy" src="/img/previews/IMG_6325_624.webp" alt="" /></a>
<h2>January 11th @ 9:03AM</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>