Files
magnum/magnum/api/templates/index.html
Steven Dake 01725ef063 Rename dir from containers to magnum
The main code base should go in the "magnum" directory to match OpenStack
standards rather then the "containers" directory which does not match
OpenStack standards.

Co-Authored-By: Digambar Patil <digambarpat@gmail.com>
Co-Authored-By: Steven Dake <sdake@redhat.com>

Change-Id: I1c9ceab9d527550e17e7e6e9ed23d5a24798c01f
2014-11-11 19:01:26 +00:00

35 lines
865 B
HTML

<%inherit file="layout.html" />
## provide definitions for blocks we want to redefine
<%def name="title()">
Welcome to Pecan!
</%def>
## now define the body of the template
<header>
<h1><img src="/images/logo.png" /></h1>
</header>
<div id="content">
<p>This is a sample Pecan project.</p>
<p>
Instructions for getting started can be found online at <a
href="http://pecanpy.org" target="window">pecanpy.org</a>
</p>
<p>
...or you can search the documentation here:
</p>
<form method="POST" action="/">
<fieldset>
<input name="q" />
<input type="submit" value="Search" />
</fieldset>
<small>Enter search terms or a module, class or function name.</small>
</form>
</div>