handbook.html 3.05 KB
Newer Older
2bllw8's avatar
2bllw8 committed
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
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap">
  <link rel="stylesheet"
        href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
  <style>
    body {
      background-color: #f0f0f0;
    }

    p {
      font-weight: 300;
    }

    a, a:hover {
      text-decoration: none !important;
      color: #626976;
    }

    .content {
      padding: 3rem 0;
    }

    .container {
      color: #626976;
      position: relative;
    }

    h2 {
      font-size: 20px;
    }

    h3 {
      font-size: 16px;
    }

    table {
      border-collapse: collapse;
      width: 70%;
      margin: 0 auto;
    }

    table thead tr {
      height: 60px;
      background: #626976;
    }

    table thead tr th {
      font-size: 18px;
      color: white;
    }

    table tbody tr {
      height: 50px;
      background-color: #f5f5f5;
    }

    tbody tr:nth-child(even) {
      background-color: #fdfdfd;
    }

    table th, table td {
      text-align: left;
      padding: 0 8px;
    }
  </style>
  <title>GM Handbook</title>
</head>
<body>
<div class="content">
  <div class="container">
    <h2 class="mb-5">{{TITLE}}</h2>

    <h3>{{TITLE_COMMANDS}}</h3>
    <hr/>
    <table>
      <thead>
      <tr>
        <th>{{HEADER_COMMAND}}</th>
        <th>{{HEADER_DESCRIPTION}}</th>
      </tr>
      </thead>
      {{COMMANDS_TABLE}}
    </table>

    <h3>{{TITLE_AVATARS}}</h3>
    <hr/>
    <table>
      <thead>
      <tr>
        <th>{{HEADER_ID}}</th>
        <th>{{HEADER_AVATAR}}</th>
      </tr>
      </thead>
      {{AVATARS_TABLE}}
    </table>

    <h3>{{TITLE_ITEMS}}</h3>
    <hr/>
    <table>
      <thead>
      <tr>
        <th>{{HEADER_ID}}</th>
        <th>{{HEADER_ITEM}}</th>
      </tr>
      </thead>
      {{ITEMS_TABLE}}
    </table>


    <h3>{{TITLE_SCENES}}</h3>
    <hr/>
    <table>
      <thead>
      <tr>
        <th>{{HEADER_ID}}</th>
        <th>{{HEADER_SCENE}}</th>
      </tr>
      </thead>
      {{SCENES_TABLE}}
    </table>

    <h3>{{TITLE_MONSTERS}}</h3>
    <hr/>
    <table>
      <thead>
      <tr>
        <th>{{HEADER_ID}}</th>
        <th>{{HEADER_MONSTER}}</th>
      </tr>
      </thead>
      {{MONSTERS_TABLE}}
    </table>
  </div>
</div>
<footer>
  <div class="copyright">
    <div class="container">
      <div class="row">
        <div class="col-md-6">
          <span>Template by BecodReyes. All rights reserved.</span>
        </div>
        <div class="col-md-6">
          <ul style="float:right">
            <li class="list-inline-item">
              <a href="https://github.com/Grasscutters/Grasscutter">Github</a>
            </li>
            <li class="list-inline-item">·</li>
            <li class="list-inline-item">
              <a href="https://github.com/Grasscutters/Grasscutter/blob/stable/LICENSE">License</a>
            </li>
          </ul>
        </div>
      </div>
    </div>
  </div>
</footer>
</body>
</html>