aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/index.html
blob: 268bc7a56708bd8b0cb36f8137f3a4be5db6a0c7 (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
35
36
37
{% extends "frame.html" %}
{% block body %}  
{% include "previewform.html" %}

<div class="hero-unit">
<h1>Tools for testing and torturing HTTP clients, servers and proxies.</h1>
</div>

<div class="row">
    <div class="span4">
        <div class="well">
            <h1> <a href="/docs/pathod">pathod</a> </h1>

            A pathological web daemon.

        </div>
    </div>
    <div class="span4">
        <div class="well">
            <h1> <a href="/docs/pathoc">pathoc</a> </h1>

            A perverse HTTP client.

        </div>
    </div>
    <div class="span4">
        <div class="well">
            <h1> <a href="/docs/test">libpathod.test</a> </h1>

            Using pathod and pathoc in your unit tests.

        </div>
    </div>
</div>


{% endblock %}