aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/_templates/indexcontent.html
blob: d1bb65bbdc6a5b6a717b058093642ef1ab59a95e (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{# This file generates the top-level index.html file. We are very
   obviously stealing from the Python docs' style ;).
#}

<!-- Extend our layout.html. So inheritance hierarchy is Sphinx's
     layout, then our layout.html, then this file. -->
{% extends "layout.html" %}

<!-- Pull in extra index stylesheet -->
{% set css_files = css_files + ["_static/index-style.css"] %}

<!-- Separator for contents lists -->
{% set content_sep = "&middot;" %}

<!-- Content -->
{% block body %}
<h1>Hi!</h1>

This is the documentation for the LeafLabs Maple boards, version {{
release }}.

<h2>Read This First</h2>

Having problems? Check
out <a href="{{ pathto("troubleshooting") }}">Troubleshooting</a> and
the <a href="{{ pathto("faq") }}">FAQ</a>. Can't find what you want
here?  Look on the <a href="http://wiki.leaflabs.com/">LeafLabs
wiki</a>.
</p>

<p>See the <a href="{{ pathto("whats-new") }}">What's New</a> page for
changes that are new in {{ release }}.</p>

<h2>Contents at a Glance</h2>

<table class="contents-table">
  <tr>
    <td><p>Getting Started</p>
      <ul>
        <li><a href="{{ pathto("unix-toolchain") }}">Command-Line
                Toolchain</a></li>
      </ul>
    </td>
  </tr>
  <tr>
    <td><p>Programming</p>
      <ul>
        <li><a href="{{ pathto("language") }}">Language Reference</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("troubleshooting") }}">Troubleshooting</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("faq") }}">FAQ</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("libraries") }}">Libraries</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("libmaple") }}"><tt>libmaple</tt></a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("bootloader") }}">Bootloader</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("arm-gcc") }}">GCC and libc</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("arduino-compatibility") }}">Arduino
                Compatibility</a></li>
      </ul>
    </td>
    <td><p>Hardware and Peripherals</p>
      <ul>
        <li><a href="{{ pathto("stm32") }}">STM32</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("adc") }}">ADC</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("external-interrupts") }}">External
            Interrupts</a> {{ content_sep }}</li>
        <li><a href="{{ pathto("fsmc") }}">FSMC</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("gpio") }}">GPIO</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("i2c") }}">I<sup>2</sup>C</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("jtag") }}">JTAG</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("pwm") }}">PWM</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("spi") }}">SPI</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("systick") }}">SysTick</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("timers") }}">Timers</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("usart") }}">USART</a>
            {{ content_sep }}</li>
        <li><a href="{{ pathto("usb") }}">USB</a></li>
      </ul>
    </td>
  </tr>
</table>

{% endblock %}