-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (78 loc) · 3.03 KB
/
index.html
File metadata and controls
86 lines (78 loc) · 3.03 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: home
title: Home
---
<div class="home-page">
<section id="intro">
<div class="container">
<h1>
Welcome to <strong>N3FS</strong>
</h1>
<p>
<a href="#servers" class="action"><em>Join our game servers</em></a>
</p>
</div>
</section>
<section id="servers">
<h2 class="container">Our servers</h2>
<div class="container server-list">
<a class="server-item" id="server-minecraft" href="/minecraft">
<h3>Minecraft</h3>
<p>A Minecraft server with a Survival PvE-focused world.</p>
</a>
<a class="server-item" id="server-discord" href="/discord">
<h3>Discord</h3>
<p>Join the Discord server, and chat with other players. Now with 200% more integration!</p>
</a>
</div>
</section>
<section id="news">
<div class="container">
<h2>News</h2>
</div>
<div class="news-container container">
<div class="news-posts">
{%- if site.posts.size > 0 -%}
{% assign post_count = 0 %}
<ul class="post-list">
{%- for post in site.posts -%}
{% assign post_count = post_count | plus: 1 %}
{% if post_count <= 3 %}
<li>
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
<h3>
<a class="post-link" href="{{ post.url | relative_url }}">
{{ post.title | escape }}
</a>
</h3>
<div class="post-details">
{{ post.excerpt | strip_html | truncatewords: 32}} <span class="post-date">({{ post.date | date: "%e %b %Y" | strip }})</span>
</div>
<div class="post-details"><a class="action" href="{{ post.url | relative_url }}">Read more</a></div>
</li>
{% endif %}
{%- endfor -%}
</ul>
<p><a href="/news" class="action">Older news</a></p>
{%- endif -%}
</div>
<div class="news-twitter">
<!-- Twitter embed -->
<a class="twitter-timeline" data-lang="en" data-height="512" data-width="320" data-dnt="true" data-theme="dark" data-link-color="#e03131" href="https://twitter.com/TeamN3FS">Tweets by TeamN3FS</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</section>
<section id="about">
<div class="container">
<h2>About</h2>
<p>
N3FS is a gaming community, initially started by players from the now-defunct NerdCubed Servers.
</p>
<p>
<a href="/about" class="action">More about N3FS</a>
</p>
</div>
</section>
</div>