-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsources.html
More file actions
86 lines (75 loc) · 4.61 KB
/
sources.html
File metadata and controls
86 lines (75 loc) · 4.61 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
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<meta name="theme-color" content="#3F51B5">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="src/styleSources.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js" integrity="sha384-a5N7Y/aK3qNeh15eJKGWxsqtnX/wWdSZSKp+81YjTmS15nvnvxKHuzaWwXHDli+4" crossorigin="anonymous"></script>
<script src="https://unpkg.com/scrollreveal/dist/scrollreveal.min.js"></script>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">halogenOS</a>
<a href="team.html">The Team</a>
<a href="download.html">Download</a>
<a href="sources.html">Sources</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</div>
<div id="fullpage">
<p class="title">Sources</p>
<div class="row">
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Oneplus 5</h5>
<p class="card-text">Official device // Mantainer: xdevs23.</p>
<a href="https://github.com/halogenOS/android_device_oneplus_cheeseburger" type="button" class="waves-effect waves-light btn" target="_blank" style="background-color:#607D8B">Github</a>
<a href="https://github.com/halogenOS/android_kernel_oneplus_msm8998" type="button" class="waves-effect waves-light btn" target="_blank" style="background-color:#F44336">Kernel</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Oneplus 3/3T</h5>
<p class="card-text">Official device // Mantainer: MSFJarvis.</p>
<a href="https://github.com/halogenOS/android_device_oneplus_oneplus3" type="button" class="btn btn-secondary" target="_blank" style="background-color:#607D8B">Github</a>
<a href="https://github.com/halogenOS/android_kernel_oneplus_msm8996" type="button" class="btn btn-danger" target="_blank" style="background-color:#F44336">Kernel</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Oneplus 2</h5>
<p class="card-text">Official device // Mantainer: xdevs23.</p>
<a href="https://github.com/halogenOS/android_device_oneplus_oneplus2" type="button" class="btn btn-secondary" target="_blank" style="background-color:#607D8B">Github</a>
<a href="https://github.com/halogenOS/android_kernel_oneplus_msm8994" type="button" class="btn btn-danger" target="_blank" style="background-color:#F44336">Kernel</a>
</div>
</div>
</div>
</div>
</div>
</body>
<script type="text/javascript">
/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</html>