|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta content="IE=edge" http-equiv="X-UA-Compatible">
|
|
|
|
<title><%= title %> - <%= syzoj.config.title %></title>
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.6/semantic.min.css" />
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.6/components/dropdown.min.css" />
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/highlight.js/9.8.0/styles/tomorrow.min.css" />
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.6.0/katex.min.css" />
|
|
|
|
<link href="https://cdn.moefont.com/fonts/css?family=Raleway:300" rel="stylesheet">
|
|
|
|
<link href="/style.css" rel="stylesheet">
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="ui fixed borderless menu">
|
|
|
|
<div class="ui container">
|
|
|
|
<a class="header item" href="/"><span style="font-family: Raleway; font-size: 1.5em; font-weight: 500; "><%= syzoj.config.title %></span></a>
|
|
|
|
<a class="item<% if (active === '') { %> active<% } %>" href="/"><i class="home icon"></i> 首页</a>
|
|
|
|
<a class="item<% if (active === 'problem') { %> active<% } %>" href="/problem"><i class="list icon"></i> 题库</a>
|
|
|
|
<a class="item<% if (active.startsWith('judge')) { %> active<% } %>" href="/judge_state"><i class="tasks icon"></i> 评测</a>
|
|
|
|
<a class="item<% if (active === 'ranklist') { %> active<% } %>" href="/ranklist"><i class="signal icon"></i> 排名</a>
|
|
|
|
<a class="item<% if (active === 'discussion' || active === 'article') { %> active<% } %>" href="/discussion"><i class="comments icon"></i> 讨论</a>
|
|
|
|
<div class="right menu">
|
|
|
|
<% if (user) { %>
|
|
|
|
<div class="ui simple dropdown item">
|
|
|
|
<%= user.username %> <i class="dropdown icon"></i>
|
|
|
|
<div class="menu">
|
|
|
|
<a class="item" href="<%= syzoj.utils.makeUrl(['user', user.id]) %>"><i class="user icon"></i>个人资料</a>
|
|
|
|
<a class="item" href="<%= syzoj.utils.makeUrl(['user', user.id, 'edit']) %>"><i class="settings icon"></i>设置</a>
|
|
|
|
<a class="item" href="#" id="logout"><i class="power icon"></i>注销</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% } else { %>
|
|
|
|
<div class="item">
|
|
|
|
<div class="ui button" style="margin-right: 0.5em" onclick="window.location.href='/login'">
|
|
|
|
登录
|
|
|
|
</div>
|
|
|
|
<div class="ui primary button" onclick="window.location.href='/sign_up'">
|
|
|
|
注册
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% } %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ui main container">
|