<?php $__env->startSection("title"); ?>
	Project 3 - Developer's Best Friend
<?php $__env->stopSection(); ?>

<?php $__env->startSection("head"); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection("content"); ?>

	<h1>Developer's Best Friend!</h1>

	<div id="lorem">
		<h3>Lorem Ipsum Generator</h3>
		<p>
			Generate random filler text.
		</p>
		<p class="generate">
			<a href="lorem-ipsum">Generate!</a>
		</p>
	</div>
	<div id="random">
		<h3>Random User Generator</h3>
		<p>
			Generate random users.
		</p>
		<p class="generate">
			<a href="user-generator">Generate!</a>
		</p>
	</div>

<?php $__env->stopSection(); ?>
<?php echo $__env->make("_master", array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>