forked from pdp-archive/pdp-archive.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.35 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
---
title: Αρχείο Πανελλήνιου Διαγωνισμού Πληροφορικής
---
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/css/main.css">
{% include scripts.html %}
<title>{{ page.title }}</title>
</head>
<body class="main-content">
{% include header.html %}
{% include announce_everywhere.html %}
{% include announce_main.html %}
{% assign sortedCollections = site.collections %}
{% for collection in site.collections reversed %}
{% if collection.label != "posts" %}
{% for post in site[collection.label] %}
{% if post.layout == "summary" %}
<article>
<h4 class="title">
<a href="{{ post.url }}">{{ post.contest_no }}ος Πανελλήνιος Διαγωνισμός Πληροφορικής (ΠΔΠ)</a>
</h4>
</article>
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
<article>
<h4 class="title">
<a href="/all">Όλοι οι διαγωνισμοί</a>
</h4>
</article>
<article>
<h4 class="title">
<a href="/categorised">Όλα τα προβλήματα σε κατηγορίες</a>
</h4>
</article>
<div id="footer_space"></div>
{% include contributors_footer.html %}
<div style="padding-top:20px"> </div>
</body>
</html>