Mercurial > hg-website
diff hgscm/templates/learn_mercurial.html @ 207:c1c9a4f809ba
integrated quick_start and learn_mercurial into the django project (with links).
Only missing parts: A wiki-page for links to learning resources and autodetection of the most current version.
author | Arne Babenhauserheide <bab@draketo.de> |
---|---|
date | Thu, 02 Jul 2009 15:35:27 +0200 |
parents | d3c0ba7f5284 |
children | b82201741188 |
line wrap: on
line diff
--- a/hgscm/templates/learn_mercurial.html Thu Jul 02 14:50:04 2009 +0200 +++ b/hgscm/templates/learn_mercurial.html Thu Jul 02 15:35:27 2009 +0200 @@ -1,8 +1,15 @@ +{% extends "base.html" %} + +{% load extras %} +{% block content %} + +<div class="row"> + <div class="col big"> <h1>Learn Mercurial</h1> -<p><em>Here you can find links to resources for learning Mercurial</em></p> +<p><em>Some links to resources for learning Mercurial</em></p> <ul> <li> -<p><a href="/quick_start.html">Quick_Start</a><br /> +<p><a href="{% url quick_start %}">Quick_Start</a><br /> Get started using Mercurial and understanding its basic concepts.</p> </li> <li> @@ -12,7 +19,7 @@ <!--(* TortoiseHG basics (For the Mercurial GUI) - when acessed from a windows box)--> <li> -<p><a href="/workflow_guide">workflow_guide</a><br /> +<p><a href="{% url workflow_guide %}">workflow_guide</a><br /> Learn using Mercurial step by step in workflows. This guide skips the conceptual explanations to focus only on the practical usage. </p> </li> <li> @@ -21,4 +28,12 @@ </li> <li><p><em>Further resources<br />A wiki-page with links. If you wrote some 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> -</ul> \ No newline at end of file +</ul> +</div> + <div class="col"> + {% download_button %} + {% mercurial_tricks %} + </div> +</div> + +{% endblock %}