-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
97 lines (84 loc) · 2.94 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
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
---
layout: default
---
<div class="header-container jumbotron">
<div class="container">
<h1>A retro-style MUD for the new age</h1>
<p class="desc">
Simple and engaging - monsters to kill, quests to complete. You don't even need a terminal to play.
<br>
<span class="factoid"></span>
</p>
<p>
<a class="btn btn-primary btn-lg" href="https://play.rair.land" role="button">
Begin your quest
</a>
</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="header-light regular-pad">What exactly is Land of the Rair?</h3>
<blockquote>
<p>The Land of the Rair is a game inspired by the MUDs of olde. You begin as an intrepid adventurer who joins a
vast new world.
You start your adventure with a tunic and a weapon. Kill monsters, solve puzzles,
and defeat those who oppose the ways of the realm. Stake your claim in the world and find your place amongst
the ranks of the greatest heroes to travel the land.</p>
</blockquote>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<h1 class="text-center">
<img src="{{ " /img/scroll.png" | prepend: site.baseurl }}" width="64" height="64" />
</h1>
<h3 class="text-center">Online or Desktop</h3>
<p>You can play in your web browser from anywhere. Works best in Chrome and Firefox. <a href="{{ " /download/" |
prepend: site.baseurl }}">Or, download and play on Windows</a>.
</p>
</div>
<div class="col-sm-4">
<h1 class="text-center">
<img src="{{ " /img/sword.png" | prepend: site.baseurl }}" width="64" height="64" />
</h1>
<h3 class="text-center">Play your way</h3>
<p>Hone your combat skills killing monsters or craft your way to the top of the marketboard.</p>
</div>
<div class="col-sm-4">
<h1 class="text-center">
<img src="{{ " /img/coin.png" | prepend: site.baseurl }}" width="64" height="64" />
</h1>
<h3 class="text-center">Cost-effective</h3>
<p>Free to play, but never pay to win. Subscribe or purchase individual boosts for your account for additional
perks.</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3 class="header-light regular-pad">Here's what players have to say!</h3>
</div>
</div>
<br>
<div class="row">
{% for page in site.data.testimonials %}
<div class="col-xs-12 col-sm-4">
<blockquote>
<p>{{ page.message }}</p>
<footer class="text-primary">Sage</footer>
</blockquote>
</div>
{% endfor %}
</div>
</div>
<script type="text/javascript">
const getFactoid = async () => {
const res = await fetch('https://global.server.rair.land/factoid');
const json = await res.json();
const factoid = json.factoid;
document.getElementsByClassName('factoid')[0].innerText = factoid;
};
getFactoid();
</script>