]> jfr.im git - irc/anope/website.git/blame - index.html
Convert from XHTML strict to HTML.
[irc/anope/website.git] / index.html
CommitLineData
35a2cd8a
SP
1---
2layout: default
3redirect_from:
089a5669 4- /ilm.php/
35a2cd8a 5- /index.php/
089a5669
SP
6- /modspec.php/
7- /qa-todo.php/
35a2cd8a
SP
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>
3426edd5 13 <br>
35a2cd8a
SP
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
3426edd5 23 <br>
35a2cd8a
SP
24 <li>
25 <span>Old releases available <a href="https://github.com/anope/anope/releases">here</a>.</span>
26 </li>
27 </ul>
3426edd5 28 <br>
35a2cd8a
SP
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>