comparison templates/learn/index.html @ 397:29d4b5e45423

Use flask to render site and get rid of submodules We don't want to use statically generated html files anymore. We are using flask to do the routing and render the templates for now. This means we also get rid of the submoduels and put everything together in templates/.
author David Soria Parra <davidsp@fb.com>
date Fri, 07 Mar 2014 14:47:13 -0800
parents
children 2b0669fed7a8
comparison
equal deleted inserted replaced
396:b3036c323c2d 397:29d4b5e45423
1 {% extends "base.html" %}
2
3 {% block content %}
4 <h1>Learn Mercurial</h1>
5 <p><em>Some links to resources for learning Mercurial, sorted by length</em></p>
6 <ul>
7 <li>
8 <p><a href="/quickstart">Quick Start</a><br />
9 Get started using Mercurial and understanding its basic concepts.</p>
10 </li>
11 <li>
12 <p><a href="http://mercurial.selenic.com/wiki/QuickStart">Quick Start from the wiki</a><br />
13 Learn the basic Mercurial commands. A bit more verbose than the short quick start above. </p>
14 </li>
15 <li>
16 <p><a href="http://bitbucket.org/tortoisehg/stable/wiki/intro">TortoiseHG basics</a><br />
17 Easily use Mercurial integrated into the Windows Explorer. </p>
18 </li>
19 <li>
20 <p><a href="/guide">Workflow guide</a><br />
21 Learn using Mercurial step by step in workflows. This guide skips the conceptual explanations to focus only on the practical usage. </p>
22 </li>
23 <li>
24 <p><a href="http://hginit.com/">Hg Init: a Mercurial tutorial</a><br />
25 In this user-friendly, six-part tutorial, Joel Spolsky teaches you the key concepts of Mercurial. Also includes a section explaining the differences between SVN and Mercurial. </p>
26 </li>
27 <li>
28 <p><a href="http://hgbook.red-bean.com/">Mercurial: The Definitive Guide</a> ("hgbook")<br />
29 The free book from Bryan O' Sullivan gives a detailed and easy to read introduction to Mercurial and the philosophy behind it. </p>
30 </li>
31
32 <li><p><em>Further resources<br />A wiki-page with links. If you've written a guide yourself, maybe for your team or for friends of yours, please add it! (It might be useful to have such a page in the wiki!)</em></p></li>
33 </ul>
34
35 {% endblock %}
36 {% block sidebar %}
37 {{ super() }}
38 {% endblock %}