NelmioApiDocBundle/Resources/views/formatter_layout.html.php

33 lines
1.2 KiB
PHP

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta charset="utf-8" />
<!-- Always force latest IE rendering engine (even in intranet) and Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
<title><?php echo $api_name; ?></title>
<link href="http://fonts.googleapis.com/css?family=Droid+Sans:400,700" rel="stylesheet" type="text/css" />
<style type="text/css">
<?php echo file_get_contents(__DIR__ . '/../public/css/screen.css'); ?>
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<div id="header">
<h1><?php echo $api_name; ?></h1>
</div>
<div class="container" id="resources_container">
<ul id="resources">
<?php echo $content; ?>
</ul>
</div>
<p id="colophon">
Documentation auto-generated on <?php echo date(DATE_RFC822); ?>
</p>
<script type="text/javascript">
$('.toggler').click(function() {
$(this).next().slideToggle('slow');
});
</script>
</body>
</html>