-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathheader.php
90 lines (77 loc) · 2.9 KB
/
header.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
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
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
$DOMAIN = "https://distrinet.cs.kuleuven.be/software/sancus";
//ob_start();
$navbar_links = array(
"Home" => "index.php",
"Installation" => "install.php",
"Documentation" => "doc.php",
"Examples" => "examples.php",
"Tutorial" => "tutorial.php",
"Research" => "research.php"
);
include("tools.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- title>Sancus: Low-cost trustworthy extensible networked devices with a zero-software Trusted Computing Base</title-->
<!-- title>Sancus 2.0: A Low-Cost Security Architecture for IoT Devices</title -->
<title>Sancus: Lightweight and Open-Source Trusted Computing for the IoT</title>
<link href="sancus.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="include/run_prettify.js"></script>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php">Sancus</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<?php gen_navbar_entries() ?>
</ul>
</div>
</div>
</div>
<div class="container-fluid text-center full">
<div class="row content full">
<div class="col-sm-8 col-sm-offset-2 text-left main">
<!--
body data-spy="scroll" data-target=".side-nav-bar">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="index.php">Sancus</a>
<ul class="nav">
<?php gen_navbar_entries() ?>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<?php if (empty($sections)): ?>
<div class="span12">
<?php else: ?>
<div class="span3 side-nav-bar">
<ul class="nav nav-list side-nav-list span3" data-spy="affix">
<?php foreach ($sections as $id => $title): ?>
<li><a href="#<?php echo $id?>"><i class="icon-chevron-right"></i><?php echo $title?></a></li>
<?php endforeach ?>
</ul>
</div>
<div class="span9">
<?php endif ?>
-->