-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.njk
67 lines (66 loc) · 2.42 KB
/
index.njk
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: base.njk
title: Immerse
stylesheetPath: "/style/indexStyle.css"
---
{% set latestEvent = collections.events | latestDateTime %}
{% set latestNews = collections.news | latestDate %}
<div id="applyNow">
<h3>Want to join a growing community of game developers in Trondheim?</h3>
<form action="/apply/">
<button class="button">Apply now!</button>
</form>
</div>
<div id="eventAndNews">
<section class="event" id="event">
<a href="/events/">
<h2>Upcoming Event</h2>
<div id="event-div">
<img src="/img/Immerse/{{ latestEvent.data.image }}" alt="{{ latestEvent.data.title }}">
<h3>{{ latestEvent.data.title }}</h3>
<h4>
{{ latestEvent.data.datetime | fromDateTime }}
</h4>
<p>{{ latestEvent.data.description }}</p>
</div>
</a>
</section>
<section class="event" id="news">
<a href="/news/">
<h2>Recent News</h2>
<div id="news-div">
<img src="/img/Immerse/{{ latestNews.data.image }}" alt="{{ latestNews.data.title }}">
<h3>{{ latestNews.data.title }}</h3>
<h4>{{ latestNews.data.date | fromDate }}</h4>
<p>{{ latestNews.data.description }}</p>
</div>
</a>
</section>
</div>
<h3 style="font-style: italic; font-weight: 300; width: 60%; margin: auto; margin-bottom: 60px;">
"We want to prepare you for your professional life as a software developer"
</h3>
<section>
<h2>We don't create games</h2>
<h3>We create developers</h3>
<p>
Immerse’s goal is to create a community where everyone can learn from each other and get together to
create something they want to make. We want to become an organization known for its talented members.
</p>
</section>
<section>
<h2>How does Immerse work?</h2>
<p>In your first semester you will acquire the skills to start making games. You will learn about the
Unity game engine, the C# programming language, and how to work as a team using Github. You will also
create some smaller games.
</p>
<hr>
<p>
Starting your second semester you become a junior developer and will work on a larger game with some
supervision. You will also help members in their first semester.
</p>
<hr>
<p>
When you no longer need supervision you will become a senior, aka someone who supervises junior developers.
</p>
</section>