]> jfr.im git - irc/anope/website.git/blob - index.html
Convert from XHTML strict to HTML.
[irc/anope/website.git] / index.html
1 ---
2 layout: default
3 redirect_from:
4 - /ilm.php/
5 - /index.php/
6 - /modspec.php/
7 - /qa-todo.php/
8 ---
9 <div class="block">
10 <h3>Anope IRC Services</h3>
11 <p>Anope is a set of IRC Services designed for flexibility and ease of use.</p>
12 <p>Anope is available in two flavors: Stable and Development. The stable version has been tested for months and is as stable as a rock, while the development version gets new features added constantly and allows you to enjoy the future of services today. </p>
13 <br>
14 <ul>
15 {% assign type = "Development" %}
16 {% assign release = site.releases.devel %}
17 {% include release.html %}
18
19 {% assign type = "Stable" %}
20 {% assign release = site.releases.stable %}
21 {% include release.html %}
22
23 <br>
24 <li>
25 <span>Old releases available <a href="https://github.com/anope/anope/releases">here</a>.</span>
26 </li>
27 </ul>
28 <br>
29 </div>
30 <div class="block">
31 {% assign latest = site.posts[0] %}
32 <h3>Latest News - <a href="{{ latest.url }}">{{ latest.title }}</a></h3>
33 {{ latest.content }}
34 <h4>Posted on {{ latest.date | date_to_string }} by {{ latest.author }}</h4>
35 </div>
36 <div class="block">
37 <h3>Other News</h3>
38 <ul id="lastnews">
39 {% for post in site.posts offset:1 limit:5 %}
40 <li><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.date | date_to_string }})
41 {% endfor %}
42 </ul>
43 </div>