-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (46 loc) · 1.62 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
62
63
64
65
66
67
---
layout: default
title: GI InformatiCup
description: Der Studierendenwettbewerb der Gesellschaft für Informatik.
featured_image: /images/home.png
---
<section class="hero">
<div class="hero__image" style="background-image: url('/images/informaticup.jpg')">
<div class="hero__overlay"></div>
</div>
<div class="wrap">
<h1>GI InformatiCup</h1>
<p>Der Studierendenwettbewerb der <a href="https://gi.de/" style="color:#ffffff;">Gesellschaft für Informatik</a></p>
{% include socials.html %}
</div>
</section>
<section class="listing">
<div class="wrap">
{% for topic in site.competition reversed %}
<article class="post">
<div class="post__image-wrap">
<div class="post__image" style="background-image: url({{ topic.featured_image }})"></div>
</div>
<div class="post__content-wrap">
<div class="post__content">
<h2 class="post__title"><a href="{{ topic.url }}">{{ topic.title }}</a></h2>
<p class="post__subtitle">{{ topic.subtitle }}</p>
<p class="post__description">{{ topic.description }}</p>
</div>
</div>
</article>
{% endfor %}
<article class="post">
<div class="post__image-wrap">
<div class="post__image" style="background-image: url('/images/competition/twitter.png')"></div>
</div>
<div class="post__content-wrap">
<div class="post__content">
<h2 class="post__title"><a href="https://twitter.com/informatiCup">Twitter</a></h2>
<p class="post__subtitle">News</p>
<p class="post__description">Den InformatiCup gibt es auch auf <a href="https://twitter.com/informatiCup">Twitter</a>.</p>
</div>
</div>
</article>
</div>
</section>