mirror of
https://github.com/haiwen/seahub.git
synced 2025-10-19 18:00:03 +00:00
76 lines
3.0 KiB
HTML
76 lines
3.0 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>SeaHub</title>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
|
<meta name="keywords" content="文件 共享" />
|
|
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/ui-lightness/jquery-ui-1.8.16.custom.css" />
|
|
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/seahub.css" />
|
|
<link rel="icon" type="image/png" href="{{ MEDIA_URL }}img/favicon.png" />
|
|
|
|
{% block extra_style %}{% endblock %}
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div id="wrapper">
|
|
<div id="top-bar">
|
|
<div class="top-bar">
|
|
<div class="top-bar-in">
|
|
{% if request.user.is_authenticated %}
|
|
欢迎, {{ request.user }}
|
|
<a href="{{ SITE_ROOT }}profile/">设置</a>
|
|
<!--
|
|
{% if request.user.is_staff %}
|
|
<a href="{{ SITE_ROOT }}admin/">管理</a>
|
|
{% endif %}
|
|
-->
|
|
<a href="{{ SITE_ROOT }}accounts/logout/">退出</a>
|
|
{% else %}
|
|
<a href="{{ SITE_ROOT }}accounts/login/">登录</a>
|
|
<a href="{{ SITE_ROOT }}accounts/register/">注册</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="header">
|
|
<div class="top-info ovhd">
|
|
<a href="{{ SITE_ROOT }}" class="fleft"><img src="{{ MEDIA_URL }}img/logo.png" title="Seafile" alt="Seafile logo" /></a>
|
|
<div id="other-info" class="fright">
|
|
<p class="wish">Hope our efforts will bring you benefits.</p>
|
|
<p class="version">服务器版本: {{ seafile_version }}</p>
|
|
</div>
|
|
</div>
|
|
{% block nav %}{% endblock %}
|
|
</div>
|
|
<div id="main">
|
|
<div id="left-panel">
|
|
{% block left_panel %}{% endblock %}
|
|
</div>
|
|
<div id="right-panel">
|
|
{% block right_panel %}{% endblock %}
|
|
</div>
|
|
<div id="main-panel" class="clear">
|
|
{% block main_panel %}{% endblock %}
|
|
</div>
|
|
<div id="dialog-delete-confirm" class="hide">
|
|
<p class="mgb5">确定要删除?</p>
|
|
<button id="yes-btn">确定</button>
|
|
<button class="simplemodal-close">取消</button>
|
|
</div>
|
|
</div>
|
|
<div id="footer" class="ovhd">
|
|
<p class="fleft">Copyright © 2012 海文互知. All rights reserved.</p>
|
|
<p class="fright">Contact | About</p>
|
|
</div>
|
|
|
|
</div><!-- wrapper -->
|
|
<script type="text/javascript" src="{{ MEDIA_URL }}js/jquery.min.js"></script>
|
|
<script type="text/javascript" src="{{ MEDIA_URL }}js/jquery.simplemodal.1.4.1.min.js"></script>
|
|
<script type="text/javascript" src="{{ MEDIA_URL }}js/jquery.cookie.js"></script>
|
|
<script type="text/javascript" src="{{ MEDIA_URL }}js/jquery-ui-1.8.16.custom.min.js"></script>
|
|
<script type="text/javascript" src="{{ MEDIA_URL }}js/utils.js"></script>
|
|
{% block extra_script %}{% endblock %}
|
|
</body>
|
|
</html>
|