21 lines
728 B
HTML
21 lines
728 B
HTML
{{define "header"}}<!DOCTYPE html>
|
|||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<title>{{.Title}} · 采集采购管理端</title>
|
||
|
|
<link rel="stylesheet" href="/static/css/app.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<nav class="nav">
|
||
|
|
<span class="nav-brand">采集采购管理端</span>
|
||
|
|
<a href="/shopee" class="{{if eq .Active "shopee"}}active{{end}}">蝦皮数据</a>
|
||
|
|
<a href="/syb" class="{{if eq .Active "syb"}}active{{end}}">顺运宝数据</a>
|
||
|
|
<a href="/tasks" class="{{if eq .Active "tasks"}}active{{end}}">采购任务</a>
|
||
|
|
<a href="/clients" class="{{if eq .Active "clients"}}active{{end}}">客户端列表</a>
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
<main class="page">
|
||
|
|
{{end}}
|