-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathp.html
77 lines (75 loc) · 3.04 KB
/
p.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
---
title: ACR for AC Players
desc: why AssaultCube players should play and promote AssaultCube Reloaded!
sections:
- heading: Features for AC Players
content:
- name: Classic Mutator
text: ACR has a mutator to make gameplay similar to the original AC.
- name: AC 1.1 Map Support
text: ACR supports v8 maps from AC.
columns: 2
- heading: Improvements <small class="fs-3 text-muted">why ACR is better</small>
content:
- name: New, diverse game modes and mutators
text: Combining modes and mutators leads to many more possible game settings
class: col-sm-6 col-md-3
- name: Many new and different weapons
text: More ways to enjoy the game
class: col-sm-6 col-md-3
- name: More realistic gameplay
text: Damage fading over distance, bleeding, drowning
class: col-sm-6 col-md-3
- name: Less potential cheats
text: More server-sided code
class: col-sm-6 col-md-3
- name: Better voting system
text: Ignore neutral votes; veto admin votes after second press
class: col-sm-6 col-md-3
- name: Improved radar
text: showing explosions and shotlines
class: col-sm-6 col-md-3
- name: Killfeed
text: making it easy to see kills
class: col-sm-6 col-md-3
- name: Spawn enqueue/dequeue
text: unlike AC, no need to spam the spawn button
class: col-sm-6 col-md-3
- name: Chat improvements
text: separate chat and main consoles, unlike in AC, where many kill messages can hide the chat.
class: col-sm-6 col-md-3
columns: 3
- heading: Promotion Packages
content:
- name: Promotion Server
text: Run an AC server to promote ACR.
- name: Promotion Client
text: Play AC to promote ACR.
columns: 2
---
<div class="p-5 bg-body-secondary">
<h1 class="display-1 pb-3 mb-3 my-4 border-bottom">ACR <small class="text-muted">the replacement for AC</small></h1>
<div>
<p>AssaultCube Reloaded (ACR) is an improved version of AssaultCube (AC).</p>
<a href="." role="button" class="btn btn-primary">Get ACR now!</a>
<a href="https://github.com/acreloaded/promotion" role="button" class="btn btn-outline-primary">Promotion Server</a>
<a href="https://github.com/acreloaded/promotion_client" role="button" class="btn btn-outline-primary">Promotion Client</a>
</div>
</div>
{% for s in page.sections %}
<h1 class="display-3 pb-3 mb-3 my-4 border-bottom">{{ s.heading }}</h1>
<div class="row" data-masonry='{"percentPosition": true }'>
{% for c in s.content %}
<div class="col{% if s.columns %}-{{ 12 | divided_by: s.columns }}{% endif %}">
<div class="card mb-3">
<div class="card-header">{{ c.name }}</div>
<div class="card-body"> {{ c.text }}</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}
<script src="https://cdn.jsdelivr.net/npm/masonry-layout@4/dist/masonry.pkgd.min.js"
integrity="sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D"
crossorigin="anonymous"
async></script>