-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.36 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
---
# You don't need to edit this file, it's empty on purpose.
# Edit theme's home layout instead if you wanna make some changes
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: page
---
<a class="discord" href="https://discord.gg/zqeHCEg">
Join the <i>GW2 Development Community</i> on discord!
</a>
<h2>Guides</h2>
<div class="card-wrapper">
{% assign guides = site.guides | slice:0,3 %}
{% for guide in guides %}
<div class="card">
<a href="{{ guide.url }}" title="{{ guide.title }}"></a>
<img src="{{ guide.image }}">
<div class="card__content">
<h3 class="card__title">{{ guide.title }}</h3>
<p class="card__text">{{ guide.summary }}</p>
</div>
</div>
{% endfor %}
</div>
<div class="card-wrapper">
<div class="card card--wide">
<a href="/forum-backup/"></a>
<img src="/assets/images/Forum.svg">
<div class="card__content">
<h2 class="card__title">Forum Backup</h2>
<p class="card__text">
Guild Wars 2 switched to a new forum software on September 12, 2017 and didn't migrate the old threads.
Since some of the discussions contained valuable information you can find a backup of the API Development forum here.
</p>
</div>
</div>
</div>