-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
98 lines (81 loc) · 3.19 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Rust Blueprint Tracker</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="js/js.js"></script>
<!-- Angular -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script type="text/javascript" src="js/controller.js"></script>
</head>
<body>
<button id="reset">RESET</button>
<header>
<h1>Rust Blueprint Tracker</h1>
<p class="text">How it works: Click on the items you know how to craft.</p>
</header>
<div id="blueprint-wrapper" ng-app="bptrackerApp" ng-controller="bptrackerCtrl">
<div class="lists" id="workbench_level_1">
<div class="section-title">
<img class="fragimg" src="images/Blueprint_Fragment_icon.png" />
<h2>Workbench Level 1</h2>
<br />
<img class="fragthb" src="images/Blueprint_Fragment_icon.png" /><p class="text">x 75</p>
</div>
<ul>
<li class="list-item" ng-repeat="blueprint in workbench_level_1 track by $index">
<input class="checkb" type="checkbox" id="blueprint{{$index}}" />
<label class="checklabel" for="blueprint{{$index}}">
<img style="max-width: 100%;" ng-src="items/{{blueprint.shortname}}.png" />
<span>{{blueprint.displayName.english}}</span>
</label>
</li>
</ul>
</div>
<div class="lists" id="workbench_level_2">
<div class="section-title">
<img class="fragimg" src="images/Blueprint_Fragment_icon.png" />
<h2>Workbench Level 2</h2>
<br />
<img class="fragthb" src="images/Blueprint_Fragment_icon.png" /><p class="text">x ???</p>
</div>
<ul>
<li class="list-item" ng-repeat="blueprint in workbench_level_2 track by $index">
<input class="checkb" type="checkbox" id="blueprint{{$index}}" />
<label class="checklabel" for="blueprint{{$index}}">
<img style="max-width: 100%;" ng-src="items/{{blueprint.shortname}}.png" />
<span>{{blueprint.displayName.english}}</span>
</label>
</li>
</ul>
</div>
<div class="lists" id="workbench_level_3">
<div class="section-title">
<img class="fragimg" src="images/Blueprint_Fragment_icon.png" />
<h2>Workbench Level 3</h2>
<br />
<img class="fragthb" src="images/Blueprint_Fragment_icon.png" /><p class="text">x ???</p>
</div>
<ul>
<li class="list-item" ng-repeat="blueprint in workbench_level_3 track by $index">
<input class="checkb" type="checkbox" id="blueprint{{$index}}" />
<label class="checklabel" for="blueprint{{$index}}">
<img style="max-width: 100%;" ng-src="items/{{blueprint.shortname}}.png" />
<span>{{blueprint.displayName.english}}</span>
</label>
</li>
</ul>
</div>
</div>
</body>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-75302252-1', 'auto');
ga('send', 'pageview');
</script>
</html>