-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
37 lines (30 loc) · 1.67 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>SPDX License Validation and Analysis</title>
<link href="_/libs/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="_/libs/kartik-v-bootstrap-fileinput/css/fileinput.min.css" rel="stylesheet">
<link href="_/libs/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="_/libs/sweetalert/lib/sweet-alert.css" rel="stylesheet">
<link href="_/css/default.css" rel="stylesheet">
<link href="_/css/index.css" rel="stylesheet">
<link rel="icon" type="image/ico" href="_/img/favicon.ico">
<link rel="apple-touch-icon" href="_/img/apple-icon-114x114-precomposed.png" />
</head>
<body>
<?php include 'components/navbar.php'; ?>
<?php include 'components/validate/jumbotron.php'; ?>
<?php include 'components/validate/featuretes.php'; ?>
<?php include 'components/validate/correct.php'; ?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="_/libs/bootstrap/js/bootstrap.min.js"></script>
<script src="_/libs/kartik-v-bootstrap-fileinput/js/fileinput.min.js"></script>
<script src="_/libs/sweetalert/lib/sweet-alert.min.js"></script>
<script src="_/js/index.js"></script>
</body>
</html>