forked from MovingBlocks/legacy-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (112 loc) · 6.14 KB
/
index.html
File metadata and controls
117 lines (112 loc) · 6.14 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
---
<html>
<head>
<meta charset="utf-8">
<meta name="google-site-verification" content="1Zo5ff2j0ysKtpdf-TvSQW6y2-hoD3ASV1CiR9Bq6-0" />
<meta name="keywords" content="Terasology, Minecraft, Open, Source, Free, Mahmood, Dhia, Dwarf, Fortress, Dungeon, Keeper, Voxel, Creature, Creatures, Empire, Civilization, Portal, Moving, Blocks">
<meta name="description" content="{{ site.description }}">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "VideoGame",
"applicationCategory": "Video game",
"name": "Terasology",
"url": "http://terasology.org/",
"image": "http://terasology.org/img/mascot.png",
"description": "Terasology is a game that pays ample tribute to Minecraft in initial look and origin, but stakes out its own niche by adopting the NPC-helper and caretaker feel from such games as Dwarf Fortress and Dungeon Keeper.",
"author":{
"@type":"Organization",
"name":"MovingBlocks",
"url":"https://github.com/MovingBlocks/"
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.google.com/#q=site:terasology.org+{search_term_string}",
"query-input": "required name=search_term_string"
},
"genre":["Sandbox", "Voxel"],
"operatingSystem":["Microsoft Windows", "Mac","Linux"]
}</script>
<title>Terasology Project | Home</title>
{% include imports.html %}
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
{% include nav.html %}
<main>
{% include social.html %}
<div class="parallax-container">
<div class="parallax"><img src="{{ site.github.url }}/img/ss_6.jpg"></div>
</div>
<div class="section white">
<div class="container">
<div class="row">
<div class="col s3 mascot"><img src="{{ site.github.url }}/img/mascot.png"></div>
</div>
<div class="row">
<h1 class="header green-text text-darken-3">Welcome to Terasology</h1>
</div>
<div class="row">
<div class="col s12 m6">
<div class="video-container z-depth-3"><iframe src="https://www.youtube.com/embed/Wpa2aiadwE8" frameborder="0" allowfullscreen></iframe></div>
</div>
<div class="col s12 m6">
<h3><i>Like an open-source Minecraft</i></h3>
<p class="green-text">The Terasology project was born from a Minecraft-inspired tech demo and is becoming a stable platform for various types of gameplay settings in a voxel world. The creators and maintainers are a diverse mix of software developers, designers, game testers, graphic artists, and musicians. We encourage others to join!</p>
<a href="about.html" class="waves-effect waves btn light-green lighten-1 light-green-text text-darken-3" onclick="Materialize.toast('Redirecting...', 4000)"><i class="material-icons left">live_help</i>Learn more</a>
</div>
</div>
<br /><br />
<div class="divider"></div>
<br /><br />
<div class="row">
<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
<div class="col s12 m6">
<div class="card">
<div class="card-image waves-effect waves-block waves-light">
<img class="activator" src="{{ site.github.url }}{{ post.header-img }}">
</div>
<div class="card-content">
<span class="card-title activator grey-text text-darken-4">{{ post.title }}<i class="material-icons right">more_vert</i></span>
<p class="grey-text text-darken-2">By: {{ post.author }} on {{ post.date | date: '%B %d, %Y' }}</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text text-darken-4">{{ post.title }}<i class="material-icons right">close</i></span>
<p><a href="{{ site.github.url }}{{ post.url }}">See the full article here</a><p>
<p>{{ post.description }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
<!-- Pagination links -->
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ site.github.url }}{{ paginator.previous_page_path }}" class="waves-effect waves-light btn light-green lighten-1 light-green-text text-darken-3 previous" style="margin-right: 15px;"><i class="material-icons">keyboard_arrow_left</i></a>
{% else %}
<a class="waves-effect waves-light btn disabled previous" style="margin-right: 15px;"><i class="material-icons">keyboard_arrow_left</i></a>
{% endif %}
<span class="page_number ">{{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ site.github.url }}{{ paginator.next_page_path }}" class="waves-effect waves-light btn light-green lighten-1 light-green-text text-darken-3 next" style="margin-left: 15px;"><i class="material-icons">keyboard_arrow_right</i></a>
{% else %}
<a class="waves-effect waves-light disabled btn next" style="margin-left: 15px;"><i class="material-icons">keyboard_arrow_right</i></a>
{% endif %}
</div>
<br /><br />
</div>
</div>
<div class="section grey lighten-3">
<div class="container">
</div>
</div>
<div class="parallax-container">
<div class="parallax"><img src="{{ site.github.url }}/img/ss_2.jpg"></div>
</div>
</main>
{% include footer.html %}
</body>
</html>