aboutsummaryrefslogtreecommitdiffstats
path: root/doc/_templates/index.html
blob: ef2e9a61049848bc8f0c377c63823aa2e27c9255 (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
{% extends "layout.html" %}
{% set title = 'Overview' %}
{% block body %}
<div class="section">
  <h1>{{ project }} {{ version }}</h1>

    <p>{{ project }} is a plugin for Generator Runner, thsi generator generates CPython code instead of boost::python code as BoostPythonGenerator does.</p>

  <h2>Documentation</h2>
  <table class="contentstable" align="center" style="margin-left: 30px"><tr>
    <td width="50%">
      <p class="biglink"><a class="biglink" href="{{ pathto("contents") }}">Contents</a><br/>
         <span class="linkdescr">for a complete overview</span></p>
     <p class="biglink"><a class="biglink" href="{{ pathto("codeinjectionsemantics") }}">Code Injection Semantics</a><br/>
         <span class="linkdescr">explains how custom code injection is interpreted by {{ project }}</span></p>
      <p class="biglink"><a class="biglink" href="{{ pathto("sequenceprotocol") }}">Sequence Protocol</a><br/>
         <span class="linkdescr">support for python sequence protocol</span></p>
    </td>
    <td width="50%">
      <p class="biglink"><a class="biglink" href="{{ pathto("compiling") }}">Compiling/Installing</a><br/>
         <span class="linkdescr">how to compile and install {{ project }}</span></p>
      <p class="biglink"><a class="biglink" href="{{ pathto("faq") }}">FAQ</a><br/>
         <span class="linkdescr">answers for frequent asked questions</span></p>
    </td></tr>
  </table>
</div>
{% endblock %}