summaryrefslogtreecommitdiff
path: root/pecan/scaffolds/base/+package+/templates/index.html
blob: f17c3862eeb50092d95e61d5898abc0ae6ef3dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<%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>