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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
import { defineConfig } from "vitepress";
export default defineConfig({
title: "174th Battle Group Handbook",
description: "A guide for members of the 174th Battle Group community.",
srcDir: "docs",
themeConfig: {
outline: {
level: [2, 3],
label: "On this page",
},
search: {
provider: "local",
},
sidebar: [
{
text: "Introduction",
link: "/",
items: [
{ text: "Using This Handbook", link: "/#using-this-handbook" },
],
},
{ text: "Departments", link: "/departments" },
{
text: "Divisions",
link: "/divisions",
items: [
{ text: "Naval", link: "/divisions#naval-division" },
{ text: "Marine", link: "/divisions#marine-division" },
{ text: "Auxiliary", link: "/divisions#auxiliary-division" },
],
},
{
text: "Roles",
link: "/roles",
items: [
{ text: "Naval", link: "/roles#naval-roles" },
{ text: "Marine", link: "/roles#marine-roles" },
{ text: "Auxiliary", link: "/roles#auxiliary-roles" },
],
},
{ text: "Ranks", link: "/ranks" },
{
text: "Command Structure",
link: "/command-structure",
items: [
{
text: "Chain of Command",
link: "/command-structure#chain-of-command",
},
{
text: "Operational Authority",
link: "/command-structure#operational-authority",
},
{
text: "Decision-Making",
link: "/command-structure#decision-making",
},
],
},
{
text: "Joining Process",
link: "/joining-process",
items: [
{ text: "Prerequisites", link: "/joining-process#prerequisites" },
{ text: "Application", link: "/joining-process#application" },
{ text: "Onboarding", link: "/joining-process#onboarding" },
{
text: "Probation Period",
link: "/joining-process#probation-period",
},
{
text: "Advancing to Rank 1",
link: "/joining-process#advancing-to-rank-1",
},
],
},
{
text: "Rules of Engagement",
link: "/rules-of-engagement",
items: [
{
text: "Authorised Use of Force",
link: "/rules-of-engagement#authorised-use-of-force",
},
{
text: "Escalation and Warning",
link: "/rules-of-engagement#escalation-and-warning",
},
{
text: "Civilians and Neutrals",
link: "/rules-of-engagement#civilians-and-neutrals",
},
{
text: "Surrendered and Fleeing Enemies",
link: "/rules-of-engagement#surrendered-and-fleeing-enemies",
},
{
text: "Prohibited Actions",
link: "/rules-of-engagement#prohibited-actions",
},
{
text: "Friendly Fire",
link: "/rules-of-engagement#friendly-fire",
},
{
text: "Target Verification",
link: "/rules-of-engagement#target-verification",
},
],
},
{
text: "Code of Conduct",
link: "/code-of-conduct",
items: [
{
text: "Expected Behaviour",
link: "/code-of-conduct#expected-behaviour",
},
{
text: "Disciplinary Process",
link: "/code-of-conduct#disciplinary-process",
},
{
text: "Grounds for Immediate Removal",
link: "/code-of-conduct#grounds-for-immediate-removal",
},
{ text: "Appeals", link: "/code-of-conduct#appeals" },
],
},
{
text: "Leave of Absence",
link: "/leave-of-absence",
items: [
{
text: "Requesting Leave",
link: "/leave-of-absence#requesting-leave",
},
{ text: "Duration", link: "/leave-of-absence#duration" },
{
text: "Rank During Leave",
link: "/leave-of-absence#rank-during-leave",
},
{
text: "Returning from Leave",
link: "/leave-of-absence#returning-from-leave",
},
{
text: "Unannounced Absence",
link: "/leave-of-absence#unannounced-absence",
},
],
},
{
text: "Fleet Composition",
link: "/fleet-composition",
items: [
{
text: "Design Principles",
link: "/fleet-composition#fleet-design-principles",
},
{
text: "Standard Issue Ships",
link: "/fleet-composition#standard-issue-ships",
},
{
text: "Ship Loadouts",
link: "/fleet-composition#ship-loadouts",
},
],
},
{
text: "Gear Loadouts",
link: "/gear-loadouts",
items: [
{
text: "Marine Loadouts",
link: "/gear-loadouts#marine-loadouts",
},
{ text: "Navy Loadouts", link: "/gear-loadouts#navy-loadouts" },
{
text: "Auxiliary Loadouts",
link: "/gear-loadouts#auxiliary-loadouts",
},
],
},
],
},
});
|