-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.4 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
---
layout: default
---
<article>
<h1>The Multi-Agent Programming Contest</h1>
<h2>News</h2>
<ul class="news">
{% for post in site.posts limit:4 %}
{% if post.hidden == null %}
<li>
{% if post.read_more %}
<strong><a href="{{ post.url }}"><time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date: "%d.%m.%Y" }}:</time> {{ post.title }}:</a></strong>
{{ post.excerpt | strip_newlines }}
<a href="{{ post.url }}">Read more.</a>
{% else %}
<strong><time datetime="{{ post.date | date: "%Y-%m-%d" }}">{{ post.date | date: "%d.%m.%Y" }}:</time> {{ post.title }}:</strong>
{{ post.content }}
{% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
<div class="centered">
<a href="/feed.xml" class="rss">Subscribe via RSS</a>
</div>
<h2>2022: Agents Assemble III</h2>
<img src="/2019/contest.gif" width="809" height="931" alt="Agents Assemble">
<div class="actions">
<strong><a href="/2022/" title="16th edition">Agent Contest 2022</a></strong>
</div>
<h2 id="aims-and-scope">Aims and Scope</h2>
{% capture aims_and_scope %}{% include_relative _aims_and_scope.md %}{% endcapture %}
{{ aims_and_scope | markdownify }}
<h2 id="history">History</h2>
{% capture history %}{% include_relative _history.md %}{% endcapture %}
{{ history | markdownify }}
</article>