|
1 | 1 | {% extends "base.html" %}
|
2 | 2 |
|
3 | 3 | {% load i18n %}
|
4 |
| - |
| 4 | +{% load humanize %} |
5 | 5 | {% load pagination_tags %}
|
6 | 6 |
|
| 7 | +{% block extra_metas %} |
| 8 | + <meta name="description" content="{% trans "Read the Docs simplifies technical documentation by automating building, versioning, and hosting for you. Build up-to-date documentation for the web, print, and offline use on every version control push automatically." %}"> |
| 9 | +{% endblock extra_metas %} |
| 10 | + |
7 | 11 | {% block title %}{% trans "Home" %}{% endblock %}
|
8 | 12 |
|
9 | 13 | {% block body_class %}home {% if not request.user.is_authenticated %}splash{% endif %}{% endblock %}
|
|
36 | 40 |
|
37 | 41 | {% block content %}
|
38 | 42 |
|
39 |
| - <div class="module"> |
40 |
| - <div class="module-wrapper"> |
41 |
| - |
42 |
| - <div class="module-header"> |
43 |
| - <h3>{% trans "What is this place?" %}</h3> |
44 |
| - <p> |
45 |
| -{% blocktrans %} |
46 |
| -Read the Docs hosts documentation, making it fully searchable and easy to find. |
47 |
| -You can import your docs using any major version control system, including Mercurial, Git, Subversion, and Bazaar. |
48 |
| -We support <a href="http://docs.readthedocs.io/en/latest/webhooks.html">webhooks</a> so your docs get built when you commit code. |
49 |
| -There's also support for <a href="http://docs.readthedocs.io/en/latest/versions.html">versioning</a> so you can build docs from tags and branches of your code in your repository. |
50 |
| -{% endblocktrans %} |
51 |
| - </p> |
52 |
| - <p> |
53 |
| -{% blocktrans %} |
54 |
| - Hosting documentation is free and simple, |
55 |
| - <a href="https://docs.readthedocs.io/en/latest/getting_started.html">read our guide</a> |
56 |
| - to get started! |
57 |
| -{% endblocktrans %} |
58 |
| - <p> |
59 |
| - <p> |
60 |
| -{% blocktrans %} |
61 |
| -Read the Docs is <b>community supported</b>. |
62 |
| -It depends on users like you to contribute to development, |
63 |
| -support, |
64 |
| -and operations. |
65 |
| -You can learn more about how to <a href="https://docs.readthedocs.io/en/latest/contribute.html">contribute</a> in our docs. |
66 |
| -Thanks so much to our wonderful <a href="https://docs.readthedocs.io/en/latest/team.html">community team</a> who helps us run the site. |
67 |
| -Read the Docs wouldn't be possible without them. |
68 |
| -Please consider joining today, |
69 |
| -as we always need more contributors to the project. |
70 |
| -{% endblocktrans %} |
71 |
| - </p> |
72 |
| - </div> |
73 |
| - |
74 |
| - </div> |
75 |
| - </div> |
76 |
| - |
77 |
| - {% include "core/widesearchbar.html" %} |
78 |
| - |
79 |
| - {% if featured_list %} |
80 |
| - <!-- BEGIN projects list --> |
81 |
| - <div class="module"> |
82 |
| - <div class="module-wrapper"> |
83 |
| - |
84 |
| - <div class="module-header"> |
85 |
| - <h3>{% trans "Featured Projects" %}</h3> |
86 |
| - </div> |
87 |
| - |
88 |
| - <div class="module-list"> |
89 |
| - <div class="module-list-wrapper"> |
90 |
| - <ul> |
91 |
| - {% include "core/project_list_featured.html" %} |
92 |
| - </ul> |
93 |
| - </div> |
94 |
| - </div> |
95 |
| - |
96 |
| - </div> |
97 |
| - </div> |
98 |
| - <!-- END projects list --> |
99 |
| - {% endif %} |
100 |
| - |
101 |
| - <!-- BEGIN projects list --> |
102 |
| - <div class="module"> |
103 |
| - <div class="module-wrapper"> |
104 |
| - |
105 |
| - <div class="module-header"> |
106 |
| - <h3>{% trans "Recently updated projects" %}</h3> |
107 |
| - </div> |
108 |
| - |
109 |
| - <div class="module-list"> |
110 |
| - <div class="module-list-wrapper"> |
111 |
| - <ul> |
112 |
| - {% include "core/project_list_detailed.html" %} |
113 |
| - </ul> |
114 |
| - </div> |
115 |
| - </div> |
116 |
| - |
117 |
| - </div> |
118 |
| - </div> |
119 |
| - <!-- END projects list --> |
120 |
| - |
121 |
| - <div> |
122 |
| - <h3>{% trans "Read the Docs is funded by the community" %}</h3> |
123 |
| - <p> |
124 |
| - {% url "advertising" as advertising_url %} |
125 |
| - {% url "donate" as sponsors_url %} |
126 |
| - {% url "gold_detail" as gold_detail %} |
127 |
| - |
128 |
| - Read the Docs is a huge resource that millions of developers rely on |
129 |
| - for software documentation. It would not be possible without the |
130 |
| - support of our |
131 |
| - <a href="{{ sponsors_url | default:'https://readthedocs.org/sustainability/' }}">sponsors</a>, |
132 |
| - <a href="{{ advertising_url | default:'https://readthedocs.org/sustainability/advertising/' }}">advertisers</a>, |
133 |
| - and <a href="{{ gold_detail }}">readers like you</a>. |
134 |
| - </p> |
135 |
| - <p> |
136 |
| - Hosting for the project is graciously provided by <a href="http://www.rackspace.com/cloud/">Rackspace</a>. |
137 |
| - </p> |
| 43 | + <!-- Lead --> |
| 44 | + <section> |
| 45 | + <h2>{% trans "Technical documentation lives here" %}</h2> |
| 46 | + <p class="lead"> |
| 47 | + {% blocktrans %} |
| 48 | + Read the Docs simplifies software documentation by automating building, |
| 49 | + versioning, and hosting of your docs for you. |
| 50 | + {% endblocktrans %} |
| 51 | + </p> |
| 52 | + </section> |
| 53 | + |
| 54 | + |
| 55 | + <section> |
| 56 | + <div class="feature"> |
| 57 | + <h3>Free docs hosting</h3> |
| 58 | + <p> |
| 59 | + {% with projects_count_intcomma=projects_count|intcomma %} |
| 60 | + {% blocktrans %} |
| 61 | + We will host your documentation for free forever. |
| 62 | + There are no tricks. We help {{ projects_count_intcomma }} open source projects |
| 63 | + share their docs. |
| 64 | + {% endblocktrans %} |
| 65 | + {% endwith %} |
| 66 | + </p> |
| 67 | + </div> |
| 68 | + <div class="feature"> |
| 69 | + <h3>Webhooks</h3> |
| 70 | + <p> |
| 71 | + {% blocktrans %} |
| 72 | + Whenever you push code to your favorite version control system, |
| 73 | + whether that is Git, Mercurial, Bazaar, or Subversion, we will |
| 74 | + automatically build your docs so your code and documentation are |
| 75 | + never out of sync. |
| 76 | + {% endblocktrans %} |
| 77 | + </p> |
138 | 78 | </div>
|
| 79 | + <div class="clearfix"></div> |
| 80 | + </section> |
| 81 | + |
| 82 | + <section> |
| 83 | + <div class="feature"> |
| 84 | + <h3>Multiple formats</h3> |
| 85 | + <p> |
| 86 | + {% blocktrans %} |
| 87 | + Of course we build and host your docs for the web, but they are |
| 88 | + also vieweable as PDFs, as single page HTML, and for eReaders. |
| 89 | + No additional configuration is required. |
| 90 | + {% endblocktrans %} |
| 91 | + </p> |
| 92 | + </div> |
| 93 | + <div class="feature"> |
| 94 | + <h3>Multiple versions</h3> |
| 95 | + <p> |
| 96 | + {% blocktrans %} |
| 97 | + We can host and build multiple versions of your docs so having a |
| 98 | + 1.0 version of your docs and a 2.0 version of your docs is as easy |
| 99 | + as having a separate branch or tag in your version control system. |
| 100 | + {% endblocktrans %} |
| 101 | + </p> |
| 102 | + </div> |
| 103 | + <div class="clearfix"></div> |
| 104 | + </section> |
| 105 | + |
| 106 | + <!-- Call to action --> |
| 107 | + <section> |
| 108 | + <p style="text-align: center"> |
| 109 | + <a href="https://docs.readthedocs.io/en/latest/getting_started.html" class="cta-btn">{% trans 'Getting started guide' %}</a> |
| 110 | + </p> |
| 111 | + </section> |
| 112 | + |
| 113 | + <!-- Search --> |
| 114 | + <section> |
| 115 | + {% include "core/widesearchbar.html" %} |
| 116 | + <section> |
| 117 | + |
| 118 | + {% if featured_list %} |
| 119 | + <!-- BEGIN projects list --> |
| 120 | + <section> |
| 121 | + <h3>{% trans "Featured Projects" %}</h3> |
| 122 | + <div class="module-list"> |
| 123 | + <div class="module-list-wrapper"> |
| 124 | + <ul style="margin-bottom: 0"> |
| 125 | + {% include "core/project_list_featured.html" %} |
| 126 | + </ul> |
| 127 | + </div> |
| 128 | + </div> |
| 129 | + </section> |
| 130 | + <!-- END projects list --> |
| 131 | + {% endif %} |
139 | 132 |
|
| 133 | + <!-- Funding and Contributing --> |
| 134 | + <section> |
| 135 | + <h2>{% trans "Read the Docs is funded by the community" %}</h2> |
| 136 | + <p> |
| 137 | + |
| 138 | + {% url "advertising" as advertising_url %} |
| 139 | + {% url "donate" as sponsors_url %} |
| 140 | + {% url "gold_detail" as gold_detail %} |
| 141 | + |
| 142 | + {% blocktrans %} |
| 143 | + Read the Docs is a huge resource that millions of developers rely on |
| 144 | + for software documentation. It would not be possible without the |
| 145 | + support of our |
| 146 | + <a href="{{ sponsors_url }}">sponsors</a>, |
| 147 | + <a href="{{ advertising_url }}">advertisers</a>, |
| 148 | + and <a href="{{ gold_detail }}">readers like you</a>. |
| 149 | + {% endblocktrans %} |
| 150 | + </p> |
| 151 | + |
| 152 | + <p> |
| 153 | + {% blocktrans %} |
| 154 | + Read the Docs is <strong>community supported</strong>. |
| 155 | + It depends on users like you to contribute to development, support, and operations. |
| 156 | + You can learn more about how to <a href="https://docs.readthedocs.io/en/latest/contribute.html">contribute</a> in our docs. |
| 157 | + Thanks so much to our wonderful <a href="https://docs.readthedocs.io/en/latest/team.html">community team</a> who helps us run the site. |
| 158 | + Read the Docs wouldn't be possible without them. |
| 159 | + {% endblocktrans %} |
| 160 | + </p> |
| 161 | + |
| 162 | + <p> |
| 163 | + {% blocktrans %} |
| 164 | + Hosting for the project is graciously provided by <a href="http://www.rackspace.com/cloud/">Rackspace</a>. |
| 165 | + {% endblocktrans %} |
| 166 | + </p> |
| 167 | + </section> |
140 | 168 | {% endblock %}
|
0 commit comments