forked from orvice/ss-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
31 lines (29 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title><?php echo $site_name; ?></title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="asset/materialize/css/materialize.min.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="asset/materialize/css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<nav class="light-blue lighten-1" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="/" class="brand-logo"><?php echo $site_name; ?></a>
<ul class="right hide-on-med-and-down">
<li><a href="index.php">首页</a></li>
<li><a href="http://shadowsocks.org/en/download/clients.html">客户端下载</a></li>
<li><a href="code.php">邀请码</a></li>
<li><a href="user">用户中心</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="index.php">首页</a></li>
<li><a href="http://shadowsocks.org/en/download/clients.html">客户端下载</a></li>
<li><a href="code.php">邀请码</a></li>
<li><a href="user">用户中心</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>