Skip to content

Commit 0082628

Browse files
pushing what I worked on so far
1 parent 9a03f76 commit 0082628

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ out/
1111
# BlueJ files
1212
*.ctxt
1313

14+
# VSCode Folder
15+
.vscode
16+
17+
#Prettier
18+
.prettierrc.json
19+
1420
# Mobile Tools for Java (J2ME)
1521
.mtj.tmp/
1622

docs/indexBeta.html

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Starbound Mod Manager</title>
6+
<link
7+
rel="stylesheet"
8+
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
9+
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
10+
crossorigin="anonymous"
11+
/>
12+
</head>
13+
<body class="bg-dark">
14+
<header>
15+
<div class="jumbotron jumbotron-fluid bg-primary text-white">
16+
<h2 class="display-5 text-center">A Mod Manager for Starbound!</h2>
17+
</div>
18+
</header>
19+
<main>
20+
<div class="container-fluid">
21+
<div class="row">
22+
<!-- Main Content -->
23+
<div class="col-md-8">
24+
<div class="card mx-3 mb-5 shadow-lg bg-dark">
25+
<div class="card-header bg-warning text-center">Do you want to buy the game?</div>
26+
<div class="card-body text-white">
27+
<p class="card-text text-center">
28+
If you want to support the devs of Starbound, you can buy it here! (Or just visit their
29+
<a href="https://playstarbound.com/" target="_blank">homepage</a>
30+
</p>
31+
<iframe
32+
frameborder="0"
33+
name="buy Starbound"
34+
src="https://store.steampowered.com/widget/211820/"
35+
width="100%"
36+
height="190"
37+
>buy Starbound
38+
</iframe>
39+
</div>
40+
</div>
41+
<p class="text-white text-center">
42+
The Starbound Mod Manager enables users to handle multiple mod lists easily. (works with Steam!). No
43+
experience needed!
44+
</p>
45+
<div class="card mx-5 shadow-sm" style="background-color: rgb(50,7,0); border: 2pt dashed rgb(114,23,0)">
46+
<p class="text-white text-center px-4 pt-3">
47+
This application is in no way associated with Starbound and their creators Chucklefish! It was created
48+
by me to simplify the tedious task of managing many different mods for the game.
49+
</p>
50+
</div>
51+
</div>
52+
<!-- Navigation and About -->
53+
<div class="col-md-4"></div>
54+
</div>
55+
</div>
56+
</main>
57+
</body>
58+
<script
59+
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
60+
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
61+
crossorigin="anonymous"
62+
></script>
63+
<script
64+
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
65+
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
66+
crossorigin="anonymous"
67+
></script>
68+
<script
69+
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
70+
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
71+
crossorigin="anonymous"
72+
></script>
73+
</html>

0 commit comments

Comments
 (0)