tyedye/views/layout.html

26 lines
641 B
HTML
Raw Normal View History

2013-06-02 01:06:44 +02:00
$def with (main_block, sidebar_block, game_name)
<!DOCTYPE html>
<html>
<head>
<title>TyeDye control panel for $game_name</title>
2013-06-02 01:06:44 +02:00
<link rel='stylesheet' type='text/css' href='/static/main.css'>
</head>
<body>
<header>
<h1>TyeDye: $game_name control panel</h1>
2013-06-02 01:06:44 +02:00
</header>
<div class='container'>
<div class='main-content'>
$:main_block
</div>
<div class='sidebar'>
$:sidebar_block
</div>
</div>
<footer>
<p>Under GPL License v3</p>
</footer>
</body>
</html>