-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocs.html
More file actions
62 lines (48 loc) · 3.21 KB
/
docs.html
File metadata and controls
62 lines (48 loc) · 3.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OpenModHub - Docs</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2H7MWQL7FF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2H7MWQL7FF');
</script>
<link rel="icon" href="favicon.png" type="image/x-icon">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a href="index.html" class="navbar-brand"><img src="images/logo_openmodhub.png" class="img-fluid" style="max-height: 30px;" alt="OpenModHub logo"></a>
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="navbar-nav fw-light">
<a href="news.html" class="nav-item nav-link text-uppercase">News</a>
<a href="docs.html" class="nav-item nav-link text-uppercase text-uppercase bg-white bg-opacity-50 rounded-1 text-white">Docs</a>
<a href="contact.html" class="nav-item nav-link text-uppercase">Contact</a>
</div>
<div class="navbar-nav ms-auto">
<a href="https://github.com/openmodhub/" class="nav-item nav-link"><img src="images/logo_github-mark-white.png" class="img-fluid" style="max-height: 30px;" alt="GitHub logo"></a>
</div>
</div>
</div>
</nav>
<div class="container mt-4">
<div class="my-5">
<p class="lead">If you want to contribute, here you will find how.</p>
<p>All the <strong>mods</strong> are stored in GitHub repositories and this site is just a fancy link collection of those. <strong>Mod</strong> repositories are nested under the OpenModHub Github organization. This allows version control and well structured storage with free access to all.</p>
<p>If you would like to contribute to an exsisting <strong>mod</strong>, fork the corresponding GitHub repository and make a pull request. You will find documentation on how to do these on the GitHub website or all around the internet.</p>
<p>If you have an entirely new <strong>mod</strong> that you would like to add to this site, you can do so through GitHub pull requests to the <a href="https://github.com/openmodhub/openmodhub.github.io">openmodhub.github.io</a> repository that contains these pages. We will only accept GitHub repositories that contain detailed descriptions on how to make the <strong>mod</strong>.</p>
<p>If you would like to become a memeber of the <a href="https://github.com/openmodhub/">OpenModHub</a> Github organization, please don't hesitate to reach out either through out contact form or directly through GitHub.</p>
</div>
</div>
</body>
</html>