-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
79 lines (65 loc) · 4.66 KB
/
about.html
File metadata and controls
79 lines (65 loc) · 4.66 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>ModBlock - About</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
</head>
<body>
<header class="headerimage">
<div class="text">
<img class="logo" src="images/modblock-logo.png">
</div>
</header>
<main class="container" style="margin-top:15px;">
<a class="noexternal" href="https://www.curseforge.com/minecraft/modpacks/modblock-2" target="_blank"><btn class="btn btn-primary btn-lg curseforge">CurseForge</btn></a>
<h1 id="heading">ModBlock</h1>
<div class="modblock-nav">
<a href="/modblock" class="modblock-navlink">Home</a>
<a href="/modblock/about.html" class="modblock-navlink"><b>About</b></a>
<a href="/modblock/changelog.html" class="modblock-navlink">Changelogs</a>
<a title="Modpack Issue tracker" href="https://github.com/TechnicProblem/modblock/issues" class="modblock-navlink">Issues</a>
<a href="https://minecraft.curseforge.com/projects/modblock-2/relations/dependencies" class="modblock-navlink">Modlist</a>
</div>
<p>A custom lightweight kitchen-sink Minecraft modpack for 1.12.2.</p>
<hr>
<h3>History</h3>
<p>ModBlock 1 was a modpack I made in July 2017. It was from the beginning going to be a SkyBlock pack. I made it in MultiMC with 1.10.2 and without a good way to keep track of the versions, it was full of bugs and incompatible mods. I forgot some important mods and it was suddenly impossible to get iron. So I wanted to have a normal pack, and removed a bunch of mods which made the void world, and there I had it. It was bad, full of bugs and texture glitches, but I could play it. I played it for a bit, but got bored and started playing vanilla and other modpacks.
<br><br>
A year and a half goes by and I sat and wanted to play some modded Minecraft. I started the Twitch app and saw the first part of when I had tried to remake ModBlock in Twitch. Then I got interested. I opened MultiMC, looked at the old mod list and started to install all of the mods that were in the old pack on 1.12.2. Then I added some more mods and looked through config files. And there it was. So I submitted it for approval, and then it was approved. End of story.
</p>
<h3>About</h3>
<p>ModBlock 2 is a modpack mostly consisting of tech mods. It is aimed at people who likes to make tech things, automate everything and build some nice things.</p>
<h3>Contact me</h3>
<p>You can contact me by <a href="mailto:technicproblem@outlook.com">email</a> or by <a href="https://minecraft.curseforge.com/private-messages/send?recipient=technicproblem2" target="_blank">sending me a CurseForge message</a>. Report issues with the modpack <a href="https://github.com/TechnicProblem/modblock/issues" target="_blank">here</a>.</p>
<h4>License</h4>
<p>The Modpack (ModBlock 2) is licensed under the <a href="https://technicproblem.github.io/modblock/pack-license.md">MIT License</a>.<br>The logo belongs to TechnicProblem and is not allowed to be used without permission.</p>
</main>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<div style="background-color:#eeeeee; position:relative; bottom:0; padding:5px;" class="footer">© ModBlock<small>/TechnicProblem</small> 2018-2021. <a style="float:right;" href="https://technicproblem.github.io" target="_blank">technicproblem.github.io</a></div>
<!--<script>
function randomImage(){
var images = [
'bg.png',
'bg2.png',
'bg3.png'];
var size = images.length;
var x = Math.floor(size * Math.random());
console.log(x);
var element = document.getElementsByClassName('headerimage');
console.log(element);
element[0].style["background-image"] = "url("+ images[x] + ")";
}
document.addEventListener("DOMContentLoaded", randomImage);
</script>-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script> $(function () {
$('[data-toggle="tooltip"]').tooltip()
})
</script>
</body>
</html>