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
35 lines
865 B
HTML
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>
|