Some checks failed
CD Pipeline / deploy (push) Failing after 59s
- 建立 Gitea Actions CD pipeline (.gitea/workflows/cd.yaml) - 部署模式: rsync Python 檔案至 188 → docker restart (volume mount) - Dockerfile/requirements 變動時自動重建 Docker image - 部署通知: Telegram (開始/成功/失敗) - 健康檢查: https://mo.wooo.work/health (最多 5 次重試) - 同步最新 CLAUDE.md / ADR-008 / memory (2026-04-19) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
213 lines
6.3 KiB
HTML
213 lines
6.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-TW">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>{% block title %}WOOO TECH{% endblock %}</title>
|
|
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
|
|
|
<!-- 共用樣式 -->
|
|
<style>
|
|
:root {
|
|
--primary-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
|
|
--bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background: var(--bg-gradient);
|
|
min-height: 100vh;
|
|
padding-top: 70px;
|
|
}
|
|
|
|
/* 導航列樣式 */
|
|
.navbar {
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.navbar.bg-custom-dark {
|
|
background: var(--primary-gradient) !important;
|
|
}
|
|
|
|
.navbar-dark .navbar-brand {
|
|
color: #ffffff !important;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.navbar-dark .navbar-nav .nav-link {
|
|
color: rgba(255, 255, 255, 0.9) !important;
|
|
font-weight: 500;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.navbar-dark .navbar-nav .nav-link:hover {
|
|
color: #ffffff !important;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.navbar-dark .navbar-nav .nav-link.active {
|
|
color: #ffffff !important;
|
|
background: rgba(255, 255, 255, 0.15);
|
|
border-radius: 6px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.navbar-dark .navbar-text {
|
|
color: rgba(255, 255, 255, 0.8) !important;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
border: none;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.dropdown-item {
|
|
padding: 0.5rem 1rem;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.dropdown-item:hover {
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
/* 使用者下拉選單 */
|
|
.user-dropdown .dropdown-toggle::after {
|
|
display: none;
|
|
}
|
|
|
|
.user-avatar {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
background: rgba(255,255,255,0.2);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* 頁面標題區塊 */
|
|
.page-header {
|
|
background: white;
|
|
padding: 1.5rem 2rem;
|
|
border-radius: 16px;
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.page-header h1 {
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
color: #2c3e50;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.page-header p {
|
|
color: #6c757d;
|
|
font-size: 0.95rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* 卡片樣式 */
|
|
.card {
|
|
border: none;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
/* 按鈕樣式 */
|
|
.btn {
|
|
border-radius: 8px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Toast 通知 */
|
|
.toast-container {
|
|
z-index: 9999;
|
|
}
|
|
</style>
|
|
|
|
{% block extra_css %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<!-- 導航列 -->
|
|
{% include 'components/_navbar.html' %}
|
|
|
|
<!-- WOOO 載入動畫 (可選:透過 block 控制是否顯示) -->
|
|
{% block loading_overlay %}
|
|
{% include 'components/_loading.html' %}
|
|
{% endblock %}
|
|
|
|
<!-- 主要內容 -->
|
|
<main class="{% block main_class %}container-fluid{% endblock %}" style="padding: 1.5rem;">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<!-- 頁尾 (可選) -->
|
|
{% block footer %}{% endblock %}
|
|
|
|
<!-- Bootstrap JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<!-- 共用 JavaScript -->
|
|
<script>
|
|
// CSRF Token 設定 (供 AJAX 使用)
|
|
const csrfToken = document.querySelector('meta[name="csrf-token"]')?.getAttribute('content');
|
|
|
|
// 全域 fetch 設定
|
|
const fetchWithCSRF = (url, options = {}) => {
|
|
options.headers = {
|
|
...options.headers,
|
|
'X-CSRFToken': csrfToken
|
|
};
|
|
return fetch(url, options);
|
|
};
|
|
|
|
// Toast 通知函數
|
|
function showToast(message, type = 'info') {
|
|
const toastContainer = document.getElementById('toast-container') || createToastContainer();
|
|
const toastId = 'toast-' + Date.now();
|
|
const bgClass = {
|
|
'success': 'bg-success',
|
|
'error': 'bg-danger',
|
|
'warning': 'bg-warning',
|
|
'info': 'bg-primary'
|
|
}[type] || 'bg-primary';
|
|
|
|
const toastHtml = `
|
|
<div id="${toastId}" class="toast ${bgClass} text-white" role="alert">
|
|
<div class="toast-body d-flex align-items-center">
|
|
<span>${message}</span>
|
|
<button type="button" class="btn-close btn-close-white ms-auto" data-bs-dismiss="toast"></button>
|
|
</div>
|
|
</div>
|
|
`;
|
|
toastContainer.insertAdjacentHTML('beforeend', toastHtml);
|
|
|
|
const toastEl = document.getElementById(toastId);
|
|
const toast = new bootstrap.Toast(toastEl, { delay: 3000 });
|
|
toast.show();
|
|
toastEl.addEventListener('hidden.bs.toast', () => toastEl.remove());
|
|
}
|
|
|
|
function createToastContainer() {
|
|
const container = document.createElement('div');
|
|
container.id = 'toast-container';
|
|
container.className = 'toast-container position-fixed top-0 end-0 p-3';
|
|
document.body.appendChild(container);
|
|
return container;
|
|
}
|
|
</script>
|
|
|
|
{% block extra_js %}{% endblock %}
|
|
</body>
|
|
</html>
|