-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·102 lines (99 loc) · 5.64 KB
/
index.php
File metadata and controls
executable file
·102 lines (99 loc) · 5.64 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<html>
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css" media="screen,projection">
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<title>Downloads</title>
<meta property="og:title" content="Download" />
<meta property="og:image" content="https://intranetproject.net/logo.png" />
<meta property="og:url" content="https://download.intranetproject.net" />
<meta property="og:description" content="Intranetproject's download page" />
<meta property="og:site_name" content="Download" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<nav class="blue darken-2">
<div class="nav-wrapper">
<a class="brand-logo" style="margin-left: 20px;">Downloads</a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="http://intranetproject.net">Main Page</a></li>
<li><a href="laterversions.html">All downloads</a></li>
<li class="rightright"><a href="#">Login</a></li>
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="http://intranetproject.net">Main Page</a></li>
<li><a href="laterversions.html">All downloads</a></li>
<li class="rightright"><a href="#">Login</a></li>
</ul>
</div>
</nav>
</header>
<main>
<div class="container">
<div class="inner">
<div class="downloads">
<div class="collection with-header">
<h4 class="collection-header">Release</h4>
<a href="#" class="collection-item">v 1.0.0</a>
<a href="#" class="collection-item">v 2.0.0</a>
<a href="#" class="collection-item">v 3.0.0</a>
<a href="#" class="collection-item">v 4.0.0</a>
</div>
<p class="text"><a href="laterversions.html">Later versions...</a></p>
<hr>
<div class="collection with-header">
<h4 class="collection-header">Beta</h4>
<a href="#" class="collection-item">v 0.1.0</a>
<a href="#" class="collection-item">v 0.2.0</a>
<a href="#" class="collection-item">v 0.3.0</a>
<a href="#" class="collection-item">v 0.4.0</a>
</div>
<p class="text"><a href="laterversions.html">Later versions...</a></p>
</div>
</div>
</div>
</main>
<footer class="page-footer blue">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Links to all other pages:</h5>
<ul style="list-style-type: none">
<li><a href="http://intranetproject.net" class="white-text">Main Page</a></li>
<li><a href="http://download.intranetproject.net" class="white-text">Downloads</a></li>
<li><a href="http://status.intranetproject.net" class="white-text">Status</a></li>
<li><a href="http://shop.intranetproject.net" class="white-text">Shop</a></li>
<li><a href="http://account.intranetproject.net" class="white-text">Account</a></li>
<li><a href="http://packages.intranetproject.net" class="white-text">Packages</a></li>
<li><a href="http://blog.intranetproject.net" class="white-text">Blog</a></li>
<li><a href="http://docs.api.intranetproject.net" class="white-text">API-Docs</a></li>
</ul>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Links</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="https://twitter.com/Intranetprojec">Twitter</a></li>
<li><a class="grey-text text-lighten-3" href="https://github.com/IntranetProject">GitHub</a></li>
<li><a class="grey-text text-lighten-3" href="https://intranetproject.net/imprint.html">Imprint</a></li>
<li>
<p class="grey-text text-lighten-3" href="#!"><b><i class="material-icons">code</i>
</b> with <i style="color: red;">♥</i> by <a class="grey-text text-lighten-3" target="_blank" href="https://github.com/IntranetProject">Intranet</a> and help from <a target="_blank" class="grey-text text-lighten-3" href="http://materializecss.com/">Materialize</a>
</p>
</li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<i class="material-icons tiny">copyright</i> <?php echo "2017-" . date('Y'); ?> Intranet Project
</div>
</div>
</footer>
</body>
</html>