| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!doctype html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- {% if page and page.startswith('admin') %}
- <title>{{ title or "源代码分享管理系统" }}</title>
- {% else %}
- <title>SourceShare源码分享{% if title %} - {{ title }}{% endif %}</title>
- {% endif %}
- <link rel="preload" as="font" type="font/woff2" href="{{ url_for('static', filename='lib/remixicon/remixicon.woff2') }}" crossorigin />
- <link rel="stylesheet" href="{{ url_for('static', filename='lib/remixicon/remixicon.css') }}" />
- <link rel="stylesheet" href="{{ url_for('static', filename='lib/sweetalert2/sweetalert2.min.css') }}" />
- <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}" />
- {% block head_extra %}{% endblock %}
- </head>
- <body data-page="{{ page or '' }}">
- <header class="topbar">
- <div class="container topbar-inner">
- <a class="brand" href="{{ url_for('page_index') }}">
- <div style="width: 32px; height: 32px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%); border-radius: 8px; display: grid; place-items: center; color: white; margin-right: 8px; box-shadow: var(--shadow);">
- <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
- <path d="M8 17L3 12l5-5"></path>
- <path d="M16 7l5 5-5 5"></path>
- <path d="M14 5l-4 14"></path>
- </svg>
- </div>
- <span style="font-weight: 700; letter-spacing: -0.5px;">SourceShare</span>
- </a>
- <nav class="nav" id="topNav">
- <div class="nav-group nav-left">
- <a href="{{ url_for('page_resources') }}" class="{{ 'active' if page=='resources' else '' }}"><i class="ri-apps-2-line" style="margin-right:4px;"></i>资源</a>
- <a href="{{ url_for('page_vip') }}" class="{{ 'active' if page=='vip' else '' }}"><i class="ri-vip-crown-line" style="margin-right:4px;"></i>会员</a>
- <a href="{{ url_for('page_me') }}" class="{{ 'active' if page=='me' else '' }}"><i class="ri-user-line" style="margin-right:4px;"></i>我的</a>
- </div>
- <div class="nav-group nav-right">
- <div id="navAuth" class="nav-auth">
- <a id="navLogin" href="{{ url_for('page_login') }}" class="btn btn-ghost {{ 'active' if page=='login' else '' }}" style="padding: 6px 12px; height: auto;"><i class="ri-login-box-line" style="margin-right:4px;"></i>登录</a>
- <a id="navRegister" href="{{ url_for('page_register') }}" class="btn btn-primary {{ 'active' if page=='register' else '' }}" style="padding: 6px 16px; height: auto; border-radius: 20px;"><i class="ri-user-add-line" style="margin-right:4px;"></i>注册</a>
- </div>
- </div>
- </nav>
- </div>
- </header>
- <main class="container">
- {% block content %}{% endblock %}
- </main>
- <footer class="footer" style="background: var(--bg); border-top: 1px solid var(--border); padding: 40px 0 20px; margin-top: 60px;">
- <div class="container">
- <div style="display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 24px;">
- <div style="display: flex; align-items: center; gap: 8px;">
- <div style="width: 24px; height: 24px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%); border-radius: 6px; display: grid; place-items: center; color: white;">
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
- <path d="M8 17L3 12l5-5"></path>
- <path d="M16 7l5 5-5 5"></path>
- <path d="M14 5l-4 14"></path>
- </svg>
- </div>
- <span style="font-weight: 600; font-size: 1.1rem;">SourceShare</span>
- </div>
- </div>
- <div style="border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.9rem;">
- <div class="muted">© 2026 SourceShare 源代码分享管理系统. 保留所有权利.</div>
- </div>
- </div>
- </footer>
- <script src="{{ url_for('static', filename='lib/sweetalert2/sweetalert2.min.js') }}"></script>
- {% block scripts %}
- <script src="{{ url_for('static', filename='app_common.js') }}"></script>
- <script src="{{ url_for('static', filename='app_user.js') }}"></script>
- {% endblock %}
- </body>
- </html>
|