-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (53 loc) · 1.77 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[% META title = 'Act - A Conference Toolkit';
WRAPPER ui;
PROCESS html_stuff %]
<h1>[% template.title %]</h1>
<p>
Act (A Conference Toolkit) is a multilingual, template-driven, multi-conference
web site that can manage the users, talks, schedule and payment for your
conference.
</p>
<p>Here you can find more information about:</p>
<ul>
<li><a href="/conferences.html">Act conferences</a></li>
<li><a href="/fund.html">Act development fund</a></li>
<li><a href="/history.html">Act history</a></li>
<li><a href="/news.html">Act news</a></li>
</ul>
<p />
[% WRAPPER box %]
<h2>Documentation</h2>
<p>
You can have a look at the available <a href="doc/Manual.html">Act documentation</a>
(useful for conference organizers using Act).</p>
[% END %]
[% WRAPPER box %]
<h2>Mailing-lists</h2>
<p>
There are two mailing-lists for Act, for:
<ul>
<li><a href="http://listes.mongueurs.net/mailman/listinfo/act">Act users</a>
(this is the place where you can send bug reports, complaints,
praise for the software, requests for help setting up your Act system
or for getting your conference hosted by <tt>mongueurs.net</tt>),</li>
<li><a href="http://listes.mongueurs.net/mailman/listinfo/act-dev">Act developers</a> (this is where developers hang out, talking about developers' stuff),</li>
</ul>
</p>
[% END %]
[% WRAPPER box %]
<h2>Repository</h2>
<p>The repository is available at:
<tt><a href="https://github.com/book/Act">https://github.com/book/Act</a></tt>.</p>
[% END %]
[% WRAPPER box %]
<h2>Miscellaneous information</h2>
<p>Latest news:</p>
<ul>
[% PROCESS news_items %]
[% USE date %]
[% FOREACH item = news.list.splice(0,3) %]
<li>[% date.format(item.date, format = '%B %e, %Y', locale='C' ) %]:<br />
<a href="news.html#[% item.anchor %]">[% item.title %]</a></li>
[% END %]
</ul>
[% END; END %]