91 lines
3.4 KiB
HTML
91 lines
3.4 KiB
HTML
{% extends "layout.html" %}
|
|
{% set title = _('Overview') %}
|
|
{% block body %}
|
|
|
|
<h1>M68k-MicroPython documentation</h1>
|
|
|
|
<p>
|
|
{{ _('Welcome! This is the documentation for M68k-MicroPython') }}{% if last_updated %}, {{ _('last updated') }} {{ last_updated|e }}{% endif %}.
|
|
</p>
|
|
|
|
<p>
|
|
This is a fork of the MicroPython project, which aims to put an implementation
|
|
of Python 3.x on m68k Macintosh computers.
|
|
</p>
|
|
|
|
<p>
|
|
You can find the official micropython website at <a href="http://www.micropython.org">micropython.org</a>.
|
|
</p>
|
|
|
|
<p><strong>General documentation for MicroPython:</strong></p>
|
|
|
|
<table class="contentstable"><tr>
|
|
<td width="40%" style="padding-left:2em;">
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("library/index") }}">Library Reference</a><br/>
|
|
<span class="linkdescr">MicroPython libraries and modules</span>
|
|
</p>
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("genrst/index") }}">MicroPython Differences</a><br/>
|
|
<span class="linkdescr">MicroPython operations which differ from CPython</span>
|
|
</p>
|
|
</td>
|
|
<td width="40%" style="padding-left:2em;">
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("reference/index") }}">Language Reference</a><br/>
|
|
<span class="linkdescr">information about MicroPython specific language features</span>
|
|
</p>
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("license") }}">License</a><br/>
|
|
<span class="linkdescr">MicroPython license information</span>
|
|
</p>
|
|
</td>
|
|
</tr></table>
|
|
|
|
<p><strong>Indices and tables:</strong></p>
|
|
|
|
<table class="contentstable"><tr>
|
|
<td width="40%" style="padding-left:2em;">
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("py-modindex") }}">Module index</a><br/>
|
|
<span class="linkdescr">quick access to all modules</span>
|
|
</p>
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("genindex") }}">Full index</a><br/>
|
|
<span class="linkdescr">all functions, classes, constants</span>
|
|
</p>
|
|
</td>
|
|
<td width="40%" style="padding-left:2em;">
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("reference/glossary") }}">Glossary</a><br/>
|
|
<span class="linkdescr">MicroPython terms explained</span>
|
|
</p>
|
|
<p class="biglink">
|
|
<a class="biglink" href="{{ pathto("index") }}">Table of contents</a><br/>
|
|
<span class="linkdescr">a list of all sections and subsections</span>
|
|
</p>
|
|
</td></tr>
|
|
</table>
|
|
|
|
<p><strong>External links:</strong></p>
|
|
|
|
<table class="contentstable"><tr>
|
|
<td width="40%" style="padding-left:2em;">
|
|
<p class="biglink">
|
|
<a class="biglink" href="https://github.com/orgs/m68k-micropython/discussions">GitHub Discussions</a><br/>
|
|
<span class="linkdescr">community discussion for all things related to M68k-MicroPython</span>
|
|
</p>
|
|
</td>
|
|
<td width="40%" style="padding-left:2em;">
|
|
<p class="biglink">
|
|
<a class="biglink" href="https://github.com/m68k-micropython">M68k-MicroPython on GitHub</a><br/>
|
|
<span class="linkdescr">contribute to the source code on GitHub</span>
|
|
</p>
|
|
<p class="biglink">
|
|
<a class="biglink" href="http://micropython.org">MicroPython homepage</a><br/>
|
|
<span class="linkdescr">the official MicroPython site, our upstream project</span>
|
|
</p>
|
|
</td>
|
|
</tr></table>
|
|
|
|
{% endblock %}
|