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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
{% extends "layout.html" %}
{% block tables %}
<table class="contentstable" align="center">
<tr>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("what_is_morse") }}">What is MORSE?</a><br/>
<span class="linkdescr">A tour of MORSE features</span></p>
</td>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("what_new") }}">What's new in MORSE?</a><br/>
<span class="linkdescr">The latest updates of the simulator</span></p>
</td>
</tr>
<tr>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("user/installation") }}">Installation</a><br/>
<span class="linkdescr">Install MORSE on your platform</span></p>
</td>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("tutorials") }}">Tutorials</a><br/>
<span class="linkdescr">Learn how to use MORSE</span></p>
</td>
</tr>
</table>
<h2>Core documentation</h2>
<table class="contentstable" align="center">
<tr>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("user/builder") }}">Build your simulations</a><br/>
<span class="linkdescr">Documentation of the Builder API</span></p>
</td>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("user/integration") }}">Integrate MORSE in your architecture</a><br/>
<span class="linkdescr">Supported middlewares and language bindings</span></p>
</td>
</tr>
<tr>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("components_library") }}">Component library</a><br/>
<span class="linkdescr">What can be simulated in MORSE?</span></p>
</td>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("contributing") }}">Extend and contribute to MORSE</a><br/>
<span class="linkdescr">Fit MORSE to your needs: the developers' documentation</span></p>
</td>
</tr>
</table>
<h2>And more...</h2>
<table class="contentstable" align="center">
<tr>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("media") }}">Media & Dissemination</a><br/>
<span class="linkdescr">Screenshots, videos and academic publications</span></p>
</td>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("user/faq") }}">Frequently Asked Questions (FAQ)</a><br/>
<span class="linkdescr">Having trouble installing or running MORSE?</span></p>
</td>
</tr>
<tr>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("credits") }}">Credits</a><br/>
<span class="linkdescr">The people behind MORSE</span></p>
</td>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("user/available_addons") }}">Blender add-ons for MORSE</a><br/>
<span class="linkdescr">Simplifying simulation creation within Blender</span></p>
</td>
</tr>
</table>
<h2>Advanced usages</h2>
<table class="contentstable" align="center">
<tr>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("headless") }}">Headless Simulation</a><br/>
<span class="linkdescr">Run MORSE without GUI and/or without a GPU</span></p>
</td>
<td width="50%">
<p class="biglink"><a class="biglink" href="{{ pathto("multinode") }}">Multi-nodes simulation</a><br/>
<span class="linkdescr">Scale up your simulation!</span></p>
</td>
</tr>
</table>
<p>For any questions about the use of MORSE or if you have any issues with the
simulator, you can drop a mail to the mailing-list<br/>
<div style="text-align:center; font-weight:bold;"><a href="mailto:morse-users@laas.fr">morse-users@laas.fr</a></div>
<br/>
You can also subscribe to the mailing-list
<a href="https://sympa.laas.fr/sympa/subscribe/morse-users">here</a>.</p>
<p>Bug reports and feature proposals are always welcome on <a href="https://github.com/laas/morse/issues">our bug-tracker</a>.</p>
{% endblock %}
|