relocated downloads section in versions flyout menu and added downloads Hint in index.html

This commit is contained in:
nishant-sachdeva 2021-11-13 01:31:11 +05:30
parent e0c85c6f58
commit 5e59325d06
2 changed files with 10 additions and 4 deletions

View File

@ -13,13 +13,13 @@
</span> </span>
<div class="rst-other-versions"> <div class="rst-other-versions">
<dl> <dl>
<dt>{{ _('Versions') }}</dt> {% for slug, url in versions %} <dt>{{ _('Downloads') }}</dt> {% for type, url in downloads %}
<dd><a href="{{ url }}">{{ slug }}</a></dd> <dd><a href="{{ url }}">{{ type }}</a></dd>
{% endfor %} {% endfor %}
</dl> </dl>
<dl> <dl>
<dt>{{ _('Downloads') }}</dt> {% for type, url in downloads %} <dt>{{ _('Versions') }}</dt> {% for slug, url in versions %}
<dd><a href="{{ url }}">{{ type }}</a></dd> <dd><a href="{{ url }}">{{ slug }}</a></dd>
{% endfor %} {% endfor %}
</dl> </dl>
<dl> <dl>

View File

@ -31,6 +31,12 @@ a 0.y.z version number `to indicate this fast pace of change <https://semver.org
Ideas for improving Solidity or this documentation are always welcome, Ideas for improving Solidity or this documentation are always welcome,
read our :doc:`contributors guide <contributing>` for more details. read our :doc:`contributors guide <contributing>` for more details.
.. Hint::
You can download this documentation as PDF, HTML or Epub by clicking on the versions
flyout menu in the left bottom corner and selecting the preferred download format.
Getting Started Getting Started
--------------- ---------------