Getting-started.md
... ...
@@ -0,0 +1,7 @@
1
+# Getting started
2
+
3
+This is a **stub** — replace with your real onboarding (launcher, account, rules links).
4
+
5
+- Install the client from the official site.
6
+- Read server rules (link them here when you have a page).
7
+- Use the wiki search to find guides; create a new page from the Gollum UI when something is missing.
Home.md
... ...
@@ -0,0 +1,25 @@
1
+# Amascut Wiki
2
+
3
+Welcome to the **player-run knowledge base** for the server: mechanics, guides, and notes the client does not spell out.
4
+
5
+**Official site:** [amascut.com](https://amascut.com)
6
+
7
+## Start here
8
+
9
+- [Getting-started](Getting-started) — first steps (expand this page anytime).
10
+- Use the **search box** in the top bar (and **All pages** in the header menu) to find or start articles.
11
+
12
+## Editing
13
+
14
+- Click **Edit** on any page. Changes are real **git commits** in the wiki repository (stored on the server volume).
15
+- Markdown, links like `[Page-name](Page-name)`, and images are supported. See [GitHub Flavored Markdown](https://github.github.com/gfm/).
16
+
17
+## Suggested topics
18
+
19
+| Area | What to add |
20
+| --------------- | ------------------------------------------------ |
21
+| Skills & training | Rates, metas, tick tips |
22
+| Bosses & raids | Mechanics, gear tiers, drops |
23
+| Quests & areas | Requirements, rewards, walkthrough stubs |
24
+
25
+Pick one stub, write a short page, and link it from here — that is how wikis grow.
_Sidebar.md
... ...
@@ -0,0 +1,4 @@
1
+**Navigation**
2
+
3
+- [Home](Home)
4
+- [Getting-started](Getting-started)
custom.css
... ...
@@ -0,0 +1,104 @@
1
+/* Amascut dark wiki chrome — injected via `gollum --css` */
2
+:root {
3
+ color-scheme: dark;
4
+}
5
+
6
+body {
7
+ background: #0c0f14 !important;
8
+ color: #e8eaef !important;
9
+}
10
+
11
+a {
12
+ color: #7bc5ff !important;
13
+}
14
+
15
+a:visited {
16
+ color: #c9b4ff !important;
17
+}
18
+
19
+#wiki-wrapper,
20
+.wiki-page,
21
+#wiki-body,
22
+.minibrowser,
23
+#gollum-loading-message {
24
+ background: #0c0f14 !important;
25
+ color: #e8eaef !important;
26
+}
27
+
28
+.has-sidebar #wiki-sidebar {
29
+ background: #141922 !important;
30
+ border-right: 1px solid #2a3546 !important;
31
+ color: #e8eaef !important;
32
+}
33
+
34
+#head,
35
+header.head,
36
+.wiki-header,
37
+#header {
38
+ background: linear-gradient(180deg, #1a2230 0%, #141922 100%) !important;
39
+ border-bottom: 2px solid #6b1e1e !important;
40
+}
41
+
42
+#head a,
43
+header.head a,
44
+.wiki-header a {
45
+ color: #e8eaef !important;
46
+}
47
+
48
+#wiki-content,
49
+.wiki-page .markdown-body,
50
+#wiki-body .markdown-body {
51
+ background: #1a2230 !important;
52
+ color: #e8eaef !important;
53
+ border: 1px solid #2a3546 !important;
54
+ border-radius: 6px;
55
+ padding: 1.25rem 1.5rem !important;
56
+}
57
+
58
+.wiki-page .markdown-body h1,
59
+.wiki-page .markdown-body h2,
60
+.wiki-page .markdown-body h3 {
61
+ color: #e8eaef !important;
62
+ border-bottom: 1px solid rgba(204, 71, 87, 0.35);
63
+ padding-bottom: 0.2rem;
64
+}
65
+
66
+.wiki-page .markdown-body code,
67
+.wiki-page .markdown-body pre {
68
+ background: #0c0f14 !important;
69
+ border: 1px solid #3d4b63 !important;
70
+ color: #d1dae8 !important;
71
+}
72
+
73
+.wiki-page .markdown-body table th,
74
+.wiki-page .markdown-body table td {
75
+ border-color: #3d4b63 !important;
76
+}
77
+
78
+.wiki-page .markdown-body table tr:nth-child(2n) {
79
+ background: rgba(37, 47, 63, 0.45) !important;
80
+}
81
+
82
+input[type="text"],
83
+input[type="search"],
84
+textarea,
85
+select {
86
+ background: #252f3f !important;
87
+ border: 1px solid #3d4b63 !important;
88
+ color: #e8eaef !important;
89
+}
90
+
91
+button,
92
+.btn,
93
+.actions a.button {
94
+ background: linear-gradient(180deg, #cc4757 0%, #6b1e1e 100%) !important;
95
+ border: 1px solid #4a1414 !important;
96
+ color: #fff !important;
97
+}
98
+
99
+button.secondary,
100
+a.cancel {
101
+ background: #252f3f !important;
102
+ color: #e8eaef !important;
103
+ border-color: #3d4b63 !important;
104
+}